From 4938ec1f44627815021bf38e04b0a8c30d8163bf Mon Sep 17 00:00:00 2001 From: dk Date: Tue, 30 Jun 2020 06:17:07 -0700 Subject: [PATCH] Resolved most lint errors in d2data and d2datadict (#499) * adding comments to d2interface for linter * moved d2render renderer interfaces and types into d2interface * fixed most lint errors for monstats loader * de-lint d2data wip * d2data: resolve linting errors --- d2common/d2data/animation_data.go | 6 +- d2common/d2data/d2compression/huffman.go | 193 +- d2common/d2data/d2compression/wav.go | 59 +- d2common/d2data/d2datadict/armor.go | 4 +- d2common/d2data/d2datadict/automap.go | 9 +- d2common/d2data/d2datadict/charstats.go | 47 +- d2common/d2data/d2datadict/cubemain.go | 20 +- .../d2data/d2datadict/difficultylevels.go | 2 +- d2common/d2data/d2datadict/experience.go | 34 +- d2common/d2data/d2datadict/gems.go | 12 +- d2common/d2data/d2datadict/hireling.go | 10 +- d2common/d2data/d2datadict/item_affix.go | 127 +- d2common/d2data/d2datadict/item_common.go | 481 +- d2common/d2data/d2datadict/itemstatcost.go | 238 +- d2common/d2data/d2datadict/level_maze.go | 5 +- d2common/d2data/d2datadict/level_presets.go | 19 +- d2common/d2data/d2datadict/level_sub.go | 6 + d2common/d2data/d2datadict/level_types.go | 10 +- d2common/d2data/d2datadict/level_warp.go | 4 +- d2common/d2data/d2datadict/levels.go | 350 +- d2common/d2data/d2datadict/map_helper.go | 18 +- d2common/d2data/d2datadict/misc.go | 6 +- d2common/d2data/d2datadict/missiles.go | 154 +- d2common/d2data/d2datadict/monpreset.go | 2 + d2common/d2data/d2datadict/monstats.go | 22 +- d2common/d2data/d2datadict/monstats2.go | 3 + d2common/d2data/d2datadict/object_lookup.go | 15786 ++++++++-------- d2common/d2data/d2datadict/object_query.go | 39 +- .../d2data/d2datadict/object_query_test.go | 38 +- d2common/d2data/d2datadict/object_types.go | 4 +- d2common/d2data/d2datadict/objects.go | 113 +- d2common/d2data/d2datadict/sounds.go | 2 + d2common/d2data/d2datadict/super_uniques.go | 8 +- d2common/d2data/d2datadict/unique_items.go | 5 + d2common/d2data/d2datadict/weapons.go | 2 +- d2common/d2data/object.go | 3 +- d2common/d2enum/encoding_type.go | 7 + d2common/d2enum/object_type.go | 9 + d2common/d2enum/operator_type.go | 76 + d2core/d2map/d2mapstamp/stamp.go | 4 +- main.go | 2 + 41 files changed, 8967 insertions(+), 8972 deletions(-) create mode 100644 d2common/d2enum/encoding_type.go create mode 100644 d2common/d2enum/object_type.go create mode 100644 d2common/d2enum/operator_type.go diff --git a/d2common/d2data/animation_data.go b/d2common/d2data/animation_data.go index 59fe3e5a..054a7b42 100644 --- a/d2common/d2data/animation_data.go +++ b/d2common/d2data/animation_data.go @@ -20,12 +20,13 @@ type AnimationDataRecord struct { } // AnimationData represents all of the animation data records, mapped by the COF index -var AnimationData map[string][]*AnimationDataRecord +var AnimationData map[string][]*AnimationDataRecord //nolint:gochecknoglobals // Currently global by design // LoadAnimationData loads the animation data table into the global AnimationData dictionary func LoadAnimationData(rawData []byte) { AnimationData = make(map[string][]*AnimationDataRecord) streamReader := d2common.CreateStreamReader(rawData) + for !streamReader.Eof() { dataCount := int(streamReader.GetInt32()) for i := 0; i < dataCount; i++ { @@ -37,11 +38,14 @@ func LoadAnimationData(rawData []byte) { } data.Flags = streamReader.ReadBytes(144) cofIndex := strings.ToLower(data.COFName) + if _, found := AnimationData[cofIndex]; !found { AnimationData[cofIndex] = make([]*AnimationDataRecord, 0) } + AnimationData[cofIndex] = append(AnimationData[cofIndex], data) } } + log.Printf("Loaded %d animation data records", len(AnimationData)) } diff --git a/d2common/d2data/d2compression/huffman.go b/d2common/d2data/d2compression/huffman.go index 28e5d421..46dec26f 100644 --- a/d2common/d2data/d2compression/huffman.go +++ b/d2common/d2data/d2compression/huffman.go @@ -1,5 +1,7 @@ -// -// MpqHuffman.go based on the origina CS file +// Package d2compression is used for decompressing WAV files. +package d2compression + +// MpqHuffman.go based on the original CS file // // Authors: // Foole (fooleau@gmail.com) @@ -27,7 +29,6 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // -package d2compression import ( "log" @@ -37,57 +38,60 @@ import ( // linkedNode is a node which is both hierachcical (parent/child) and doubly linked (next/prev) type linkedNode struct { - DecompressedValue int - Weight int - Parent *linkedNode - Child0 *linkedNode - Prev *linkedNode - Next *linkedNode + decompressedValue int + weight int + parent *linkedNode + child0 *linkedNode + prev *linkedNode + next *linkedNode } -func CreateLinkedNode(decompVal, weight int) *linkedNode { +// createLinkedNode creates a linked node +func createLinkedNode(decompVal, weight int) *linkedNode { result := &linkedNode{ - DecompressedValue: decompVal, - Weight: weight, + decompressedValue: decompVal, + weight: weight, } + return result } -func (v *linkedNode) GetChild1() *linkedNode { - return v.Child0.Prev +func (v *linkedNode) getChild1() *linkedNode { + return v.child0.prev } -func (v *linkedNode) Insert(other *linkedNode) *linkedNode { - // 'Next' should have a lower weight we should return the lower weight - if other.Weight <= v.Weight { +func (v *linkedNode) insert(other *linkedNode) *linkedNode { + // 'next' should have a lower weight we should return the lower weight + if other.weight <= v.weight { // insert before - if v.Next != nil { - v.Next.Prev = other - other.Next = v.Next + if v.next != nil { + v.next.prev = other + other.next = v.next } - v.Next = other + v.next = other - other.Prev = v + other.prev = v return other } - if v.Prev == nil { - // Insert after - other.Prev = nil - v.Prev = other - other.Next = v + if v.prev == nil { + // insert after + other.prev = nil + v.prev = other + other.next = v } else { - v.Prev.Insert(other) + v.prev.insert(other) } return v } +//nolint:funlen // Makes no sense to split func getPrimes() [][]byte { return [][]byte{ - { + { //nolint:dupl we're not interested in duplicates here // Compression type 0 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -106,7 +110,7 @@ func getPrimes() [][]byte { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, }, - { + { //nolint:dupl we're not interested in duplicates here // Compression type 1 0x54, 0x16, 0x16, 0x0D, 0x0C, 0x08, 0x06, 0x05, 0x06, 0x05, 0x06, 0x03, 0x04, 0x04, 0x03, 0x05, 0x0E, 0x0B, 0x14, 0x13, 0x13, 0x09, 0x0B, 0x06, 0x05, 0x04, 0x03, 0x02, 0x03, 0x02, 0x02, 0x02, @@ -125,7 +129,7 @@ func getPrimes() [][]byte { 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x06, 0x4B, }, { - // Compression type 2 + // Compression type 2 //nolint:dupl 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x27, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x06, 0x0E, 0x10, 0x04, @@ -134,8 +138,8 @@ func getPrimes() [][]byte { 0x03, 0x01, 0x03, 0x06, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x29, 0x07, 0x16, 0x12, 0x40, 0x0A, 0x0A, 0x11, 0x25, 0x01, 0x03, 0x17, 0x10, 0x26, 0x2A, 0x10, 0x01, 0x23, 0x23, 0x2F, 0x10, 0x06, 0x07, 0x02, 0x09, 0x01, 0x01, 0x01, 0x01, 0x01, - }, { - // Compression type 3 + }, { //nolint:dupl we're not interested in duplicates here + // Compression type 3 //nolint:dupl 0xFF, 0x0B, 0x07, 0x05, 0x0B, 0x02, 0x02, 0x02, 0x06, 0x02, 0x02, 0x01, 0x04, 0x02, 0x01, 0x03, 0x09, 0x01, 0x01, 0x01, 0x03, 0x04, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x05, 0x01, 0x01, 0x01, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, @@ -152,14 +156,15 @@ func getPrimes() [][]byte { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x07, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x11, - }, { // Compression type 4 + }, { // Compression type 4 //nolint:dupl 0xFF, 0xFB, 0x98, 0x9A, 0x84, 0x85, 0x63, 0x64, 0x3E, 0x3E, 0x22, 0x22, 0x13, 0x13, 0x18, 0x17, - }, { // Compression type 5 + }, { // Compression type 5 //nolint:dupl 0xFF, 0xF1, 0x9D, 0x9E, 0x9A, 0x9B, 0x9A, 0x97, 0x93, 0x93, 0x8C, 0x8E, 0x86, 0x88, 0x80, 0x82, 0x7C, 0x7C, 0x72, 0x73, 0x69, 0x6B, 0x5F, 0x60, 0x55, 0x56, 0x4A, 0x4B, 0x40, 0x41, 0x37, 0x37, 0x2F, 0x2F, 0x27, 0x27, 0x21, 0x21, 0x1B, 0x1C, 0x17, 0x17, 0x13, 0x13, 0x10, 0x10, 0x0D, 0x0D, 0x0B, 0x0B, 0x09, 0x09, 0x08, 0x08, 0x07, 0x07, 0x06, 0x05, 0x05, 0x04, 0x04, 0x04, 0x19, 0x18, - }, { // Compression type 6 + }, { //nolint:dupl we're not interested in duplicates here + // Compression type 6 0xC3, 0xCB, 0xF5, 0x41, 0xFF, 0x7B, 0xF7, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -169,7 +174,8 @@ func getPrimes() [][]byte { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7A, 0x46, - }, { // Compression type 7 + }, { //nolint:dupl we're not interested in duplicates here + // Compression type 7 0xC3, 0xD9, 0xEF, 0x3D, 0xF9, 0x7C, 0xE9, 0x1E, 0xFD, 0xAB, 0xF1, 0x2C, 0xFC, 0x5B, 0xFE, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -196,30 +202,36 @@ func getPrimes() [][]byte { func decode(input *d2common.BitStream, head *linkedNode) *linkedNode { node := head - for node.Child0 != nil { + for node.child0 != nil { bit := input.ReadBits(1) if bit == -1 { log.Fatal("unexpected end of file") } if bit == 0 { - node = node.Child0 + node = node.child0 continue } - node = node.GetChild1() + node = node.getChild1() } return node } +// TODO: these consts for buildList need better names +const ( + decompVal1 = 256 + decompVal2 = 257 +) + func buildList(primeData []byte) *linkedNode { - root := CreateLinkedNode(256, 1) - root = root.Insert(CreateLinkedNode(257, 1)) + root := createLinkedNode(decompVal1, 1) + root = root.insert(createLinkedNode(decompVal2, 1)) for i := 0; i < len(primeData); i++ { if primeData[i] != 0 { - root = root.Insert(CreateLinkedNode(i, int(primeData[i]))) + root = root.insert(createLinkedNode(i, int(primeData[i]))) } } @@ -228,20 +240,20 @@ func buildList(primeData []byte) *linkedNode { func insertNode(tail *linkedNode, decomp int) *linkedNode { parent := tail - result := tail.Prev // This will be the new tail after the tree is updated + result := tail.prev // This will be the new tail after the tree is updated - temp := CreateLinkedNode(parent.DecompressedValue, parent.Weight) - temp.Parent = parent + temp := createLinkedNode(parent.decompressedValue, parent.weight) + temp.parent = parent - newnode := CreateLinkedNode(decomp, 0) - newnode.Parent = parent + newnode := createLinkedNode(decomp, 0) + newnode.parent = parent - parent.Child0 = newnode + parent.child0 = newnode - tail.Next = temp - temp.Prev = tail - newnode.Prev = temp - temp.Next = newnode + tail.next = temp + temp.prev = tail + newnode.prev = temp + temp.next = newnode adjustTree(newnode) @@ -257,7 +269,7 @@ func adjustTree(newNode *linkedNode) { current := newNode for current != nil { - current.Weight++ + current.weight++ var insertpoint *linkedNode @@ -267,12 +279,12 @@ func adjustTree(newNode *linkedNode) { insertpoint = current for { - prev = insertpoint.Prev + prev = insertpoint.prev if prev == nil { break } - if prev.Weight >= current.Weight { + if prev.weight >= current.weight { break } @@ -281,60 +293,60 @@ func adjustTree(newNode *linkedNode) { // No insertion point found if insertpoint == current { - current = current.Parent + current = current.parent continue } // The following code basically swaps insertpoint with current // remove insert point - if insertpoint.Prev != nil { - insertpoint.Prev.Next = insertpoint.Next + if insertpoint.prev != nil { + insertpoint.prev.next = insertpoint.next } - insertpoint.Next.Prev = insertpoint.Prev + insertpoint.next.prev = insertpoint.prev - // Insert insertpoint after current - insertpoint.Next = current.Next - insertpoint.Prev = current + // insert insertpoint after current + insertpoint.next = current.next + insertpoint.prev = current - if current.Next != nil { - current.Next.Prev = insertpoint + if current.next != nil { + current.next.prev = insertpoint } - current.Next = insertpoint + current.next = insertpoint // remove current - current.Prev.Next = current.Next - current.Next.Prev = current.Prev + current.prev.next = current.next + current.next.prev = current.prev // insert current after prev if prev == nil { log.Fatal("previous frame not defined!") } - temp := prev.Next - current.Next = temp - current.Prev = prev - temp.Prev = current - prev.Next = current + temp := prev.next + current.next = temp + current.prev = prev + temp.prev = current + prev.next = current // Set up parent/child links - currentparent := current.Parent - insertparent := insertpoint.Parent + currentparent := current.parent + insertparent := insertpoint.parent - if currentparent.Child0 == current { - currentparent.Child0 = insertpoint + if currentparent.child0 == current { + currentparent.child0 = insertpoint } - if currentparent != insertparent && insertparent.Child0 == insertpoint { - insertparent.Child0 = current + if currentparent != insertparent && insertparent.child0 == insertpoint { + insertparent.child0 = current } - current.Parent = insertparent - insertpoint.Parent = currentparent + current.parent = insertparent + insertpoint.parent = currentparent - current = current.Parent + current = current.parent } } @@ -343,24 +355,25 @@ func buildTree(tail *linkedNode) *linkedNode { for current != nil { child0 := current - child1 := current.Prev + child1 := current.prev if child1 == nil { break } - parent := CreateLinkedNode(0, child0.Weight+child1.Weight) - parent.Child0 = child0 - child0.Parent = parent - child1.Parent = parent + parent := createLinkedNode(0, child0.weight+child1.weight) + parent.child0 = child0 + child0.parent = parent + child1.parent = parent - current.Insert(parent) - current = current.Prev.Prev + current.insert(parent) + current = current.prev.prev } return current } +// HuffmanDecompress decompresses huffman-compressed data func HuffmanDecompress(data []byte) []byte { comptype := data[0] primes := getPrimes() @@ -380,7 +393,7 @@ func HuffmanDecompress(data []byte) []byte { Loop: for { node := decode(bitstream, head) - decoded = node.DecompressedValue + decoded = node.decompressedValue switch decoded { case 256: break Loop diff --git a/d2common/d2data/d2compression/wav.go b/d2common/d2data/d2compression/wav.go index 8d21f8d8..64f12fc1 100644 --- a/d2common/d2data/d2compression/wav.go +++ b/d2common/d2data/d2compression/wav.go @@ -4,34 +4,36 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) -var sLookup = []int{ - 0x0007, 0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, - 0x0010, 0x0011, 0x0013, 0x0015, 0x0017, 0x0019, 0x001C, 0x001F, - 0x0022, 0x0025, 0x0029, 0x002D, 0x0032, 0x0037, 0x003C, 0x0042, - 0x0049, 0x0050, 0x0058, 0x0061, 0x006B, 0x0076, 0x0082, 0x008F, - 0x009D, 0x00AD, 0x00BE, 0x00D1, 0x00E6, 0x00FD, 0x0117, 0x0133, - 0x0151, 0x0173, 0x0198, 0x01C1, 0x01EE, 0x0220, 0x0256, 0x0292, - 0x02D4, 0x031C, 0x036C, 0x03C3, 0x0424, 0x048E, 0x0502, 0x0583, - 0x0610, 0x06AB, 0x0756, 0x0812, 0x08E0, 0x09C3, 0x0ABD, 0x0BD0, - 0x0CFF, 0x0E4C, 0x0FBA, 0x114C, 0x1307, 0x14EE, 0x1706, 0x1954, - 0x1BDC, 0x1EA5, 0x21B6, 0x2515, 0x28CA, 0x2CDF, 0x315B, 0x364B, - 0x3BB9, 0x41B2, 0x4844, 0x4F7E, 0x5771, 0x602F, 0x69CE, 0x7462, - 0x7FFF, -} - -var sLookup2 = []int{ - -1, 0, -1, 4, -1, 2, -1, 6, - -1, 1, -1, 5, -1, 3, -1, 7, - -1, 1, -1, 5, -1, 3, -1, 7, - -1, 2, -1, 4, -1, 6, -1, 8, -} - -func WavDecompress(data []byte, channelCount int) []byte { +// WavDecompress decompresses wav files +func WavDecompress(data []byte, channelCount int) []byte { //nolint:funlen doesn't make sense to split Array1 := []int{0x2c, 0x2c} Array2 := make([]int, channelCount) + var sLookup = []int{ + 0x0007, 0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, + 0x0010, 0x0011, 0x0013, 0x0015, 0x0017, 0x0019, 0x001C, 0x001F, + 0x0022, 0x0025, 0x0029, 0x002D, 0x0032, 0x0037, 0x003C, 0x0042, + 0x0049, 0x0050, 0x0058, 0x0061, 0x006B, 0x0076, 0x0082, 0x008F, + 0x009D, 0x00AD, 0x00BE, 0x00D1, 0x00E6, 0x00FD, 0x0117, 0x0133, + 0x0151, 0x0173, 0x0198, 0x01C1, 0x01EE, 0x0220, 0x0256, 0x0292, + 0x02D4, 0x031C, 0x036C, 0x03C3, 0x0424, 0x048E, 0x0502, 0x0583, + 0x0610, 0x06AB, 0x0756, 0x0812, 0x08E0, 0x09C3, 0x0ABD, 0x0BD0, + 0x0CFF, 0x0E4C, 0x0FBA, 0x114C, 0x1307, 0x14EE, 0x1706, 0x1954, + 0x1BDC, 0x1EA5, 0x21B6, 0x2515, 0x28CA, 0x2CDF, 0x315B, 0x364B, + 0x3BB9, 0x41B2, 0x4844, 0x4F7E, 0x5771, 0x602F, 0x69CE, 0x7462, + 0x7FFF, + } + + var sLookup2 = []int{ + -1, 0, -1, 4, -1, 2, -1, 6, + -1, 1, -1, 5, -1, 3, -1, 7, + -1, 1, -1, 5, -1, 3, -1, 7, + -1, 2, -1, 4, -1, 6, -1, 8, + } + input := d2common.CreateStreamReader(data) output := d2common.CreateStreamWriter() + input.GetByte() shift := input.GetByte() @@ -43,6 +45,7 @@ func WavDecompress(data []byte, channelCount int) []byte { } channel := channelCount - 1 + for input.GetPosition() < input.GetSize() { value := input.GetByte() @@ -56,12 +59,14 @@ func WavDecompress(data []byte, channelCount int) []byte { if Array1[channel] != 0 { Array1[channel]-- } + output.PushInt16(int16(Array2[channel])) case 1: Array1[channel] += 8 if Array1[channel] > 0x58 { Array1[channel] = 0x58 } + if channelCount == 2 { channel = 1 - channel } @@ -71,6 +76,7 @@ func WavDecompress(data []byte, channelCount int) []byte { if Array1[channel] < 0 { Array1[channel] = 0 } + if channelCount == 2 { channel = 1 - channel } @@ -116,12 +122,11 @@ func WavDecompress(data []byte, channelCount int) []byte { if Array1[channel] < 0 { Array1[channel] = 0 - } else { - if Array1[channel] > 0x58 { - Array1[channel] = 0x58 - } + } else if Array1[channel] > 0x58 { + Array1[channel] = 0x58 } } } + return output.GetBytes() } diff --git a/d2common/d2data/d2datadict/armor.go b/d2common/d2data/d2datadict/armor.go index 81790fbd..922e8dee 100644 --- a/d2common/d2data/d2datadict/armor.go +++ b/d2common/d2data/d2datadict/armor.go @@ -6,9 +6,11 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) +//nolint:gochecknoglobals // Currently global by design, only written once var Armors map[string]*ItemCommonRecord +// LoadArmors loads entries from armor.txt as ItemCommonRecords func LoadArmors(file []byte) { - Armors = *LoadCommonItems(file, d2enum.InventoryItemTypeArmor) + Armors = LoadCommonItems(file, d2enum.InventoryItemTypeArmor) log.Printf("Loaded %d armors", len(Armors)) } diff --git a/d2common/d2data/d2datadict/automap.go b/d2common/d2data/d2datadict/automap.go index 681b38a6..16955a2f 100644 --- a/d2common/d2data/d2datadict/automap.go +++ b/d2common/d2data/d2datadict/automap.go @@ -7,6 +7,11 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +const ( + expansion = "Expansion" // blizzard put this in the txt where expansion data starts +) + +//nolint:gochecknoglobals // Currently global by design, only written once var frameFields = []string{"Cel1", "Cel2", "Cel3", "Cel4"} // AutoMapRecord represents one row from d2data.mpq/AutoMap.txt. @@ -27,7 +32,6 @@ type AutoMapRecord struct { // StartSequence and EndSequence are sub indices the // same 2D array as Style. They describe a range of // tiles for which covered by this AutoMapRecord. - // // In some rows you can find a value of -1. This means // the game will only look at Style and TileName to // determine which tiles are addressed. @@ -50,7 +54,6 @@ type AutoMapRecord struct { // re-extract the chart with Dc6Table, you can specify // how many graphics a line can hold), line 1 includes // icons 0-19, line 2 from 20 to 39 etc. - // // Multiple values exist for Cel (and Type) to enable // variation. Presumably game chooses randomly between // any of the 4 values which are not set to -1. @@ -74,7 +77,7 @@ func LoadAutoMaps(file []byte) { AutoMaps = make([]*AutoMapRecord, len(d.Data)) for idx := range d.Data { - if d.GetString("LevelName", idx) == "Expansion" { + if d.GetString("LevelName", idx) == expansion { continue } diff --git a/d2common/d2data/d2datadict/charstats.go b/d2common/d2data/d2datadict/charstats.go index 7bad5e7d..8bfdfd92 100644 --- a/d2common/d2data/d2datadict/charstats.go +++ b/d2common/d2data/d2datadict/charstats.go @@ -7,60 +7,65 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) -// Charecter stats +// CharStatsRecord is a struct that represents a single row from charstats.txt type CharStatsRecord struct { Class d2enum.Hero // the initial stats at character level 1 - InitStr int - InitDex int - InitVit int - InitEne int - InitStamina int + InitStr int // initial strength + InitDex int // initial dexterity + InitVit int // initial vitality + InitEne int // initial energy + InitStamina int // initial stamina ManaRegen int // number of seconds to regen mana completely ToHitFactor int // added to basic AR of character class - VelocityWalk int - VelocityRun int + VelocityWalk int // velocity of the character while walking + VelocityRun int // velocity of the character while running StaminaRunDrain int // rate of stamina loss, lower is longer drain time // NOTE: Each point of Life/Mana/Stamina is divided by 256 for precision. - LifePerLevel int // value is in fourths, lowest possible is 64/256 - ManaPerLevel int - StaminaPerLevel int + // value is in fourths, lowest possible is 64/256 + LifePerLevel int // amount of life per character level + ManaPerLevel int // amount of mana per character level + StaminaPerLevel int // amount of stamina per character level LifePerVit int // life per point of vitality ManaPerEne int // mana per point of energy - StaminaPerVit int + StaminaPerVit int // stamina per point of vitality - StatPerLevel int // stat points per level + StatPerLevel int // amount of stat points per level BlockFactor int // added to base shield block% in armor.txt (display & calc) // appears on starting weapon - StartSkillBonus string + StartSkillBonus string // a key that points to a property // The skills the character class starts with (always available) - BaseSkill [10]string + BaseSkill [10]string // the base skill keys of the character, always available // string for bonus to class skills (ex: +1 to all Amazon skills). - SkillStrAll string + SkillStrAll string // string for bonus to all skills SkillStrTab [3]string // string for bonus per skill tabs SkillStrClassOnly string // string for class-exclusive skills BaseWeaponClass d2enum.WeaponClass // controls animation when unarmed - StartItem [10]string - StartItemLocation [10]string - StartItemCount [10]int + StartItem [10]string // tokens for the starting items + StartItemLocation [10]string // locations of the starting items + StartItemCount [10]int // amount of the starting items } +// CharStats holds all of the CharStatsRecords +//nolint:gochecknoglobals // Currently global by design, only written once var CharStats map[d2enum.Hero]*CharStatsRecord -var charStringMap map[string]d2enum.Hero -var weaponTokenMap map[string]d2enum.WeaponClass +var charStringMap map[string]d2enum.Hero //nolint:gochecknoglobals // Currently global by design +var weaponTokenMap map[string]d2enum.WeaponClass //nolint:gochecknoglobals // Currently global by design +// LoadCharStats loads charstats.txt file contents into map[d2enum.Hero]*CharStatsRecord //nolint:funlen // Makes no sense to split +// LoadCharStats loads charstats.txt file contents into map[d2enum.Hero]*CharStatsRecord func LoadCharStats(file []byte) { charStringMap = map[string]d2enum.Hero{ "Amazon": d2enum.HeroAmazon, diff --git a/d2common/d2data/d2datadict/cubemain.go b/d2common/d2data/d2datadict/cubemain.go index 8aaf74c2..9689e43c 100644 --- a/d2common/d2data/d2datadict/cubemain.go +++ b/d2common/d2data/d2datadict/cubemain.go @@ -140,22 +140,26 @@ type CubeRecipeItemProperty struct { } // CubeRecipes contains all rows in CubeMain.txt. +//nolint:gochecknoglobals // Currently global by design, only written once var CubeRecipes []*CubeRecipeRecord -// There are repeated fields and sections in this file, some -// of which have inconsistent naming conventions. These slices -// are a simple way to handle them. -var outputFields = []string{"output", "output b", "output c"} -var outputLabels = []string{"", "b ", "c "} -var propLabels = []string{"mod 1", "mod 2", "mod 3", "mod 4", "mod 5"} -var inputFields = []string{"input 1", "input 2", "input 3", "input 4", "input 5", "input 6", "input 7"} - // LoadCubeRecipes populates CubeRecipes with // the data from CubeMain.txt. func LoadCubeRecipes(file []byte) { // Load data d := d2common.LoadDataDictionary(string(file)) + // There are repeated fields and sections in this file, some + // of which have inconsistent naming conventions. These slices + // are a simple way to handle them. + var outputFields = []string{"output", "output b", "output c"} + + var outputLabels = []string{"", "b ", "c "} + + var propLabels = []string{"mod 1", "mod 2", "mod 3", "mod 4", "mod 5"} + + var inputFields = []string{"input 1", "input 2", "input 3", "input 4", "input 5", "input 6", "input 7"} + // Create records CubeRecipes = make([]*CubeRecipeRecord, len(d.Data)) for idx := range d.Data { diff --git a/d2common/d2data/d2datadict/difficultylevels.go b/d2common/d2data/d2datadict/difficultylevels.go index aa343d49..bf2c3f43 100644 --- a/d2common/d2data/d2datadict/difficultylevels.go +++ b/d2common/d2data/d2datadict/difficultylevels.go @@ -58,7 +58,7 @@ type DifficultyLevelRecord struct { ManaStealDivisor int // ManaStealDivisor // ----------------------------------------------------------------------- - // Gravestench: The rest of these are listed on PK page, but not present in + // The rest of these are listed on PK page, but not present in // my copy of the txt file (patch_d2/data/global/excel/difficultylevels.txt) // so I am going to leave these comments diff --git a/d2common/d2data/d2datadict/experience.go b/d2common/d2data/d2datadict/experience.go index 55bf9bf1..9930a612 100644 --- a/d2common/d2data/d2datadict/experience.go +++ b/d2common/d2data/d2datadict/experience.go @@ -31,49 +31,37 @@ import ( 10 */ +// ExperienceBreakpointsRecord describes the experience points required to +// gain a level for all character classes type ExperienceBreakpointsRecord struct { Level int HeroBreakpoints map[d2enum.Hero]int Ratio int } -var experienceStringMap map[string]d2enum.Hero -var experienceHeroMap map[d2enum.Hero]string - +// ExperienceBreakpoints describes the required experience +// for each level for each character class +//nolint:gochecknoglobals // Currently global by design, only written once var ExperienceBreakpoints []*ExperienceBreakpointsRecord + +//nolint:gochecknoglobals // Currently global by design var maxLevels map[d2enum.Hero]int +// GetMaxLevelByHero returns the highest level attainable for a hero type func GetMaxLevelByHero(heroType d2enum.Hero) int { return maxLevels[heroType] } +// GetExperienceBreakpoint given a hero type and a level, returns the experience required for the level func GetExperienceBreakpoint(heroType d2enum.Hero, level int) int { return ExperienceBreakpoints[level].HeroBreakpoints[heroType] } +// LoadExperienceBreakpoints loads experience.txt into a map +// ExperienceBreakpoints []*ExperienceBreakpointsRecord func LoadExperienceBreakpoints(file []byte) { d := d2common.LoadDataDictionary(string(file)) - experienceStringMap = map[string]d2enum.Hero{ - "Amazon": d2enum.HeroAmazon, - "Barbarian": d2enum.HeroBarbarian, - "Druid": d2enum.HeroDruid, - "Assassin": d2enum.HeroAssassin, - "Necromancer": d2enum.HeroNecromancer, - "Paladin": d2enum.HeroPaladin, - "Sorceress": d2enum.HeroSorceress, - } - - experienceHeroMap = map[d2enum.Hero]string{ - d2enum.HeroAmazon: "Amazon", - d2enum.HeroBarbarian: "Barbarian", - d2enum.HeroDruid: "Druid", - d2enum.HeroAssassin: "Assassin", - d2enum.HeroNecromancer: "Necromancer", - d2enum.HeroPaladin: "Paladin", - d2enum.HeroSorceress: "Sorceress", - } - // we skip the second row because that describes max level of char classes ExperienceBreakpoints = make([]*ExperienceBreakpointsRecord, len(d.Data)-1) diff --git a/d2common/d2data/d2datadict/gems.go b/d2common/d2data/d2datadict/gems.go index 6dae81d8..86f02fa7 100644 --- a/d2common/d2data/d2datadict/gems.go +++ b/d2common/d2data/d2datadict/gems.go @@ -6,6 +6,8 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// GemsRecord is a representation of a single row of gems.txt +// it describes the properties of socketable items type GemsRecord struct { Name string Letter string @@ -50,13 +52,17 @@ type GemsRecord struct { ShieldMod3Max int } +// Gems stores all of the GemsRecords +var Gems map[string]*GemsRecord //nolint:gochecknoglobals // Currently global by design, only written once + +// LoadGems loads gem records into a map[string]*GemsRecord func LoadGems(file []byte) { d := d2common.LoadDataDictionary(string(file)) - var Gems []*GemsRecord + Gems = make(map[string]*GemsRecord, len(d.Data)) for idx := range d.Data { - if d.GetString("name", idx) != "Expansion" { + if d.GetString("name", idx) != expansion { /* "Expansion" is the only field in line 36 of /data/global/excel/gems.txt and is only used to visually separate base-game gems and expansion runes. @@ -104,7 +110,7 @@ func LoadGems(file []byte) { ShieldMod3Min: d.GetNumber("shieldMod3Min", idx), ShieldMod3Max: d.GetNumber("shieldMod3Max", idx), } - Gems = append(Gems, gem) + Gems[gem.Name] = gem } } diff --git a/d2common/d2data/d2datadict/hireling.go b/d2common/d2data/d2datadict/hireling.go index a393cdcd..7fc0ce50 100644 --- a/d2common/d2data/d2datadict/hireling.go +++ b/d2common/d2data/d2datadict/hireling.go @@ -6,6 +6,8 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// HirelingRecord is a representation of rows in hireling.txt +// these records describe mercenaries type HirelingRecord struct { Hireling string SubType string @@ -81,9 +83,15 @@ type HirelingRecord struct { Shield int } +// Hirelings stores hireling (mercenary) records +//nolint:gochecknoglobals // Currently global by design, only written once +var Hirelings []*HirelingRecord + +// LoadHireling loads hireling data into []*HirelingRecord func LoadHireling(file []byte) { d := d2common.LoadDataDictionary(string(file)) - var Hirelings []*HirelingRecord + + Hirelings = make([]*HirelingRecord, len(d.Data)) for idx := range d.Data { hireling := &HirelingRecord{ diff --git a/d2common/d2data/d2datadict/item_affix.go b/d2common/d2data/d2datadict/item_affix.go index f6b48c7a..db32dbf4 100644 --- a/d2common/d2data/d2datadict/item_affix.go +++ b/d2common/d2data/d2datadict/item_affix.go @@ -8,13 +8,9 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) -var MagicPrefixDictionary *d2common.DataDictionary -var MagicSuffixDictionary *d2common.DataDictionary - -var MagicPrefixRecords []*ItemAffixCommonRecord -var MagicSuffixRecords []*ItemAffixCommonRecord - -var AffixMagicGroups []*ItemAffixCommonGroup +// MagicPrefix + MagicSuffix store item affix records +var MagicPrefix []*ItemAffixCommonRecord //nolint:gochecknoglobals // Currently global by design +var MagicSuffix []*ItemAffixCommonRecord //nolint:gochecknoglobals // Currently global by design // LoadMagicPrefix loads MagicPrefix.txt func LoadMagicPrefix(file []byte) { @@ -22,7 +18,7 @@ func LoadMagicPrefix(file []byte) { subType := d2enum.ItemAffixMagic - MagicPrefixDictionary, MagicPrefixRecords = loadDictionary(file, superType, subType) + MagicPrefix = loadDictionary(file, superType, subType) } // LoadMagicSuffix loads MagicSuffix.txt @@ -31,11 +27,11 @@ func LoadMagicSuffix(file []byte) { subType := d2enum.ItemAffixMagic - MagicSuffixDictionary, MagicSuffixRecords = loadDictionary(file, superType, subType) + MagicSuffix = loadDictionary(file, superType, subType) } func getAffixString(t1 d2enum.ItemAffixSuperType, t2 d2enum.ItemAffixSubType) string { - var name string = "" + var name = "" if t2 == d2enum.ItemAffixMagic { name = "Magic" @@ -55,58 +51,15 @@ func loadDictionary( file []byte, superType d2enum.ItemAffixSuperType, subType d2enum.ItemAffixSubType, -) (*d2common.DataDictionary, []*ItemAffixCommonRecord) { +) []*ItemAffixCommonRecord { dict := d2common.LoadDataDictionary(string(file)) records := createItemAffixRecords(dict, superType, subType) name := getAffixString(superType, subType) log.Printf("Loaded %d %s records", len(dict.Data), name) - return dict, records + return records } -// --- column names from d2exp.mpq:/data/globa/excel/MagicPrefix.txt -// Name -// version -// spawnable -// rare -// level -// maxlevel -// levelreq -// classspecific -// class -// classlevelreq -// frequency -// group -// mod1code -// mod1param -// mod1min -// mod1max -// mod2code -// mod2param -// mod2min -// mod2max -// mod3code -// mod3param -// mod3min -// mod3max -// transform -// transformcolor -// itype1 -// itype2 -// itype3 -// itype4 -// itype5 -// itype6 -// itype7 -// etype1 -// etype2 -// etype3 -// etype4 -// etype5 -// divide -// multiply -// add - func createItemAffixRecords( d *d2common.DataDictionary, superType d2enum.ItemAffixSuperType, @@ -177,7 +130,7 @@ func createItemAffixRecords( } group := ItemAffixGroups[affix.GroupID] - group.AddMember(affix) + group.addMember(affix) records = append(records, affix) } @@ -185,14 +138,16 @@ func createItemAffixRecords( return records } -var ItemAffixGroups map[int]*ItemAffixCommonGroup +// ItemAffixGroups are groups of MagicPrefix/Suffixes +var ItemAffixGroups map[int]*ItemAffixCommonGroup //nolint:gochecknoglobals // Currently global by design +// ItemAffixCommonGroup is a grouping that is common between prefix/suffix type ItemAffixCommonGroup struct { ID int Members map[string]*ItemAffixCommonRecord } -func (g *ItemAffixCommonGroup) AddMember(a *ItemAffixCommonRecord) { +func (g *ItemAffixCommonGroup) addMember(a *ItemAffixCommonRecord) { if g.Members == nil { g.Members = make(map[string]*ItemAffixCommonRecord) } @@ -200,7 +155,7 @@ func (g *ItemAffixCommonGroup) AddMember(a *ItemAffixCommonRecord) { g.Members[a.Name] = a } -func (g *ItemAffixCommonGroup) GetTotalFrequency() int { +func (g *ItemAffixCommonGroup) getTotalFrequency() int { total := 0 for _, affix := range g.Members { @@ -210,6 +165,9 @@ func (g *ItemAffixCommonGroup) GetTotalFrequency() int { return total } +// ItemAffixCommonModifier is the generic modifier form that prefix/suffix shares +// modifiers are like dynamic properties, they have a key that points to a property +// a parameter for the property, and a min/max value type ItemAffixCommonModifier struct { Code string Parameter int @@ -217,46 +175,49 @@ type ItemAffixCommonModifier struct { Max int } +// ItemAffixCommonRecord is a common definition that both prefix and suffix use type ItemAffixCommonRecord struct { - Name string + Group *ItemAffixCommonGroup + Modifiers []*ItemAffixCommonModifier + + ItemInclude []string + ItemExclude []string + + Name string + Class string + TransformColor string + Version int Type d2enum.ItemAffixSubType + Level int + MaxLevel int + + LevelReq int + ClassLevelReq int + + Frequency int + GroupID int + + PriceAdd int + PriceScale int + IsPrefix bool IsSuffix bool Spawnable bool Rare bool - - Level int - MaxLevel int - - LevelReq int - Class string - ClassLevelReq int - - Frequency int - GroupID int - Group *ItemAffixCommonGroup - - Modifiers []*ItemAffixCommonModifier - - Transform bool - TransformColor string - - ItemInclude []string - ItemExclude []string - - PriceAdd int - PriceScale int + Transform bool } +// ProbabilityToSpawn returns the chance of the affix spawning on an +// item with a given quality level func (a *ItemAffixCommonRecord) ProbabilityToSpawn(qlvl int) float64 { if (qlvl > a.MaxLevel) || (qlvl < a.Level) { return 0.0 } - p := float64(a.Frequency) / float64(a.Group.GetTotalFrequency()) + p := float64(a.Frequency) / float64(a.Group.getTotalFrequency()) return p } diff --git a/d2common/d2data/d2datadict/item_common.go b/d2common/d2data/d2datadict/item_common.go index ce3e3ac9..bc6ec34d 100644 --- a/d2common/d2data/d2datadict/item_common.go +++ b/d2common/d2data/d2datadict/item_common.go @@ -9,55 +9,66 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) +// ItemCommonRecord is a representation of entries from armor.txt, weapons.txt, and misc.txt type ItemCommonRecord struct { - Source d2enum.InventoryItemType - - Name string - - Version int // 0 = classic, 100 = expansion - CompactSave bool // if true, doesn't store any stats upon saving - Rarity int // higher, the rarer - Spawnable bool // if 0, cannot spawn in shops + UsageStats [3]ItemUsageStat // stat boosts applied upon usage + CureOverlayStates [2]string // name of the overlay states that are removed upon use of this item + OverlayState string // name of the overlay state to be applied upon use of this item + SpellDescriptionString string // points to a string containing the description + BetterGem string // 3 char code pointing to the gem this upgrades to (non if not applicable) + SpellDescriptionCalc d2common.CalcString // a calc string what value to display + WeaponClass string // what kind of attack does this weapon have (i.e. determines attack animations) + WeaponClass2Hand string // what kind of attack when wielded with two hands + HitClass string // determines sounds/graphic effects when attacking + SpecialFeature string // Just a comment + FlavorText string // unknown, probably just for reference + TransmogCode string // the 3 char code representing the item this becomes via transmog + NightmareUpgrade string // upgraded in higher difficulties + HellUpgrade string + SourceArt string // unused? + GameArt string // unused? + Vendors map[string]*ItemVendorParams // controls vendor settings + Type string // base type in ItemTypes.txt + Type2 string + DropSound string // sfx for dropping + UseSound string // sfx for using + FlippyFile string // DC6 file animation to play when item drops on the ground + InventoryFile string // DC6 file used in your inventory + UniqueInventoryFile string // DC6 file used by the unique version of this item + SetInventoryFile string // DC6 file used by the set version of this item + Code string // identifies the item + NameString string // seems to be identical to code? + AlternateGfx string // code of the DCC used when equipped + OpenBetaGfx string // unknown + NormalCode string + UberCode string + UltraCode string + Name string + Source d2enum.InventoryItemType + Version int // 0 = classic, 100 = expansion + Rarity int // higher, the rarer MinAC int MaxAC int Absorbs int // unused? Speed int // affects movement speed of wielder, >0 = you move slower, <0 = you move faster RequiredStrength int - Block int // chance to block, capped at 75% - Durability int // base durability 0-255 - NoDurability bool // if true, item has no durability - - Level int // base item level (controls monster drops, for instance a lv20 monster cannot drop a lv30 item) - RequiredLevel int // required level to wield - Cost int // base cost - GambleCost int // for reference only, not used - Code string // identifies the item - NameString string // seems to be identical to code? - MagicLevel int // additional magic level (for gambling?) - AutoPrefix int // prefix automatically assigned to this item on spawn, maps to group column of Automagic.txt - - AlternateGfx string // code of the DCC used when equipped - OpenBetaGfx string // unknown - NormalCode string - UberCode string - UltraCode string - - SpellOffset int // unknown - - Component int // corresponds to Composit.txt, player animation layer used by this - InventoryWidth int - InventoryHeight int - HasInventory bool // if true, item can store gems or runes - GemSockets int // number of gems to store - GemApplyType int // what kind of gem effect is applied + Block int // chance to block, capped at 75% + Durability int // base durability 0-255 + Level int // base item level (controls monster drops, for instance a lv20 monster cannot drop a lv30 item) + RequiredLevel int // required level to wield + Cost int // base cost + GambleCost int // for reference only, not used + MagicLevel int // additional magic level (for gambling?) + AutoPrefix int // prefix automatically assigned to this item on spawn, maps to group column of Automagic.txt + SpellOffset int // unknown + Component int // corresponds to Composit.txt, player animation layer used by this + InventoryWidth int + InventoryHeight int + GemSockets int // number of gems to store + GemApplyType int // what kind of gem effect is applied // 0 = weapon, 1= armor or helmet, 2 = shield - FlippyFile string // DC6 file animation to play when item drops on the ground - InventoryFile string // DC6 file used in your inventory - UniqueInventoryFile string // DC6 file used by the unique version of this item - SetInventoryFile string // DC6 file used by the set version of this item - // these represent how player animations and graphics change upon wearing this // these come from ArmType.txt AnimRightArm int @@ -67,112 +78,74 @@ type ItemCommonRecord struct { AnimRightShoulderPad int AnimLeftShoulderPad int - Useable bool // can be used via right click if true - // game knows what to do if used by item code - Throwable bool - Stackable bool // can be stacked in inventory - MinStack int // min size of stack when item is spawned, used if stackable - MaxStack int // max size of stack when item is spawned - - Type string // base type in ItemTypes.txt - Type2 string - - DropSound string // sfx for dropping - DropSfxFrame int // what frame of drop animation the sfx triggers on - UseSound string // sfx for using - - Unique bool // if true, only spawns as unique - Transparent bool // unused - TransTable int // unknown, related to blending mode? - Quivered bool // if true, requires ammo to use - LightRadius int // apparently unused - Belt bool // tells what kind of belt this item is - - Quest int // indicates that this item belongs to a given quest? - + MinStack int // min size of stack when item is spawned, used if stackable + MaxStack int // max size of stack when item is spawned + DropSfxFrame int // what frame of drop animation the sfx triggers on + TransTable int // unknown, related to blending mode? + LightRadius int // apparently unused + Quest int // indicates that this item belongs to a given quest? MissileType int // missile gfx for throwing DurabilityWarning int // controls what warning icon appears when durability is low QuantityWarning int // controls at what quantity the low quantity warning appears - - MinDamage int - MaxDamage int - StrengthBonus int - DexterityBonus int + MinDamage int + MaxDamage int + StrengthBonus int + DexterityBonus int // final mindam = min * str / strbonus + min * dex / dexbonus // same for maxdam - GemOffset int // unknown - BitField1 int // 1 = leather item, 3 = metal - - Vendors map[string]*ItemVendorParams // controls vendor settings - - SourceArt string // unused? - GameArt string // unused? - ColorTransform int // colormap to use for player's gfx - InventoryColorTransform int // colormap to use for inventory's gfx - - SkipName bool // if true, don't include the base name in the item description - NightmareUpgrade string // upgraded in higher difficulties - HellUpgrade string - - Nameable bool // if true, item can be personalized - - // weapon params - BarbOneOrTwoHanded bool // if true, barb can wield this in one or two hands - UsesTwoHands bool // if true, it's a 2handed weapon - Min2HandDamage int - Max2HandDamage int - MinMissileDamage int // ranged damage stats - MaxMissileDamage int - MissileSpeed int // unknown, affects movement speed of wielder during ranged attacks? - ExtraRange int // base range = 1, if this is non-zero add this to the range + GemOffset int // unknown + BitField1 int // 1 = leather item, 3 = metal + ColorTransform int // colormap to use for player's gfx + InventoryColorTransform int // colormap to use for inventory's gfx + Min2HandDamage int + Max2HandDamage int + MinMissileDamage int // ranged damage stats + MaxMissileDamage int + MissileSpeed int // unknown, affects movement speed of wielder during ranged attacks? + ExtraRange int // base range = 1, if this is non-zero add this to the range // final mindam = min * str / strbonus + min * dex / dexbonus // same for maxdam - RequiredDexterity int - - WeaponClass string // what kind of attack does this weapon have (i.e. determines attack animations) - WeaponClass2Hand string // what kind of attack when wielded with two hands - HitClass string // determines sounds/graphic effects when attacking - SpawnStack int // unknown, something to do with stack size when spawned (sold maybe?) - - SpecialFeature string // Just a comment - - QuestDifficultyCheck bool // if true, item only works in the difficulty it was found in - - PermStoreItem bool // if true, vendor will always sell this - - // misc params - FlavorText string // unknown, probably just for reference - - Transmogrify bool // if true, can be turned into another item via right click - TransmogCode string // the 3 char code representing the item this becomes via transmog - TransmogMin int // min amount of the transmog item to create - TransmogMax int // max '' - - AutoBelt bool // if true, item is put into your belt when picked up - - SpellIcon int // which icon to display when used? Is this always -1? - SpellType int // determines what kind of function is used when you use this item - OverlayState string // name of the overlay state to be applied upon use of this item - CureOverlayStates [2]string // name of the overlay states that are removed upon use of this item - EffectLength int // timer for timed usage effects - UsageStats [3]ItemUsageStat // stat boosts applied upon usage - + RequiredDexterity int + SpawnStack int // unknown, something to do with stack size when spawned (sold maybe?) + TransmogMin int // min amount of the transmog item to create + TransmogMax int // max '' + SpellIcon int // which icon to display when used? Is this always -1? + SpellType int // determines what kind of function is used when you use this item + EffectLength int // timer for timed usage effects SpellDescriptionType int // specifies how to format the usage description // 0 = none, 1 = use desc string, 2 = use desc string + calc value - SpellDescriptionString string // points to a string containing the description - SpellDescriptionCalc d2common.CalcString // a calc string what value to display - BetterGem string // 3 char code pointing to the gem this upgrades to (non if not applicable) - - Multibuy bool // if true, when you buy via right click + shift it will fill your belt automatically + AutoBelt bool // if true, item is put into your belt when picked up + HasInventory bool // if true, item can store gems or runes + CompactSave bool // if true, doesn't store any stats upon saving + Spawnable bool // if 0, cannot spawn in shops + NoDurability bool // if true, item has no durability + Useable bool // can be used via right click if true + // game knows what to do if used by item code + Throwable bool + Stackable bool // can be stacked in inventory + Unique bool // if true, only spawns as unique + Transparent bool // unused + Quivered bool // if true, requires ammo to use + Belt bool // tells what kind of belt this item is + SkipName bool // if true, don't include the base name in the item description + Nameable bool // if true, item can be personalized + BarbOneOrTwoHanded bool // if true, barb can wield this in one or two hands + UsesTwoHands bool // if true, it's a 2handed weapon + QuestDifficultyCheck bool // if true, item only works in the difficulty it was found in + PermStoreItem bool // if true, vendor will always sell this + Transmogrify bool // if true, can be turned into another item via right click + Multibuy bool // if true, when you buy via right click + shift it will fill your belt automatically } +// ItemUsageStat the stat that gets applied when the item is used type ItemUsageStat struct { Stat string // name of the stat to add to Calc d2common.CalcString // calc string representing the amount to add } +// ItemVendorParams are parameters that vendors use type ItemVendorParams struct { Min int // minimum of this item they can stock Max int // max they can stock @@ -181,16 +154,18 @@ type ItemVendorParams struct { MagicLevel uint8 } -var CommonItems map[string]*ItemCommonRecord +// CommonItems stores all ItemCommonRecords +var CommonItems map[string]*ItemCommonRecord //nolint:gochecknoglobals // Currently global by design -func LoadCommonItems(file []byte, source d2enum.InventoryItemType) *map[string]*ItemCommonRecord { +// LoadCommonItems loads armor/weapons/misc.txt ItemCommonRecords +func LoadCommonItems(file []byte, source d2enum.InventoryItemType) map[string]*ItemCommonRecord { if CommonItems == nil { CommonItems = make(map[string]*ItemCommonRecord) } items := make(map[string]*ItemCommonRecord) data := strings.Split(string(file), "\r\n") - mapping := MapHeaders(data[0]) + mapping := mapHeaders(data[0]) for lineno, line := range data { if lineno == 0 { @@ -201,178 +176,178 @@ func LoadCommonItems(file []byte, source d2enum.InventoryItemType) *map[string]* continue } - rec := createCommonItemRecord(line, &mapping, source) + rec := createCommonItemRecord(line, mapping, source) items[rec.Code] = &rec CommonItems[rec.Code] = &rec } - return &items + return items } //nolint:funlen // Makes no sens to split -func createCommonItemRecord(line string, mapping *map[string]int, source d2enum.InventoryItemType) ItemCommonRecord { +func createCommonItemRecord(line string, mapping map[string]int, source d2enum.InventoryItemType) ItemCommonRecord { r := strings.Split(line, "\t") result := ItemCommonRecord{ Source: source, - Name: MapLoadString(&r, mapping, "name"), + Name: mapLoadString(&r, mapping, "name"), - Version: MapLoadInt(&r, mapping, "version"), - CompactSave: MapLoadBool(&r, mapping, "compactsave"), - Rarity: MapLoadInt(&r, mapping, "rarity"), - Spawnable: MapLoadBool(&r, mapping, "spawnable"), + Version: mapLoadInt(&r, mapping, "version"), + CompactSave: mapLoadBool(&r, mapping, "compactsave"), + Rarity: mapLoadInt(&r, mapping, "rarity"), + Spawnable: mapLoadBool(&r, mapping, "spawnable"), - MinAC: MapLoadInt(&r, mapping, "minac"), - MaxAC: MapLoadInt(&r, mapping, "maxac"), - Absorbs: MapLoadInt(&r, mapping, "absorbs"), - Speed: MapLoadInt(&r, mapping, "speed"), - RequiredStrength: MapLoadInt(&r, mapping, "reqstr"), - Block: MapLoadInt(&r, mapping, "block"), - Durability: MapLoadInt(&r, mapping, "durability"), - NoDurability: MapLoadBool(&r, mapping, "nodurability"), + MinAC: mapLoadInt(&r, mapping, "minac"), + MaxAC: mapLoadInt(&r, mapping, "maxac"), + Absorbs: mapLoadInt(&r, mapping, "absorbs"), + Speed: mapLoadInt(&r, mapping, "speed"), + RequiredStrength: mapLoadInt(&r, mapping, "reqstr"), + Block: mapLoadInt(&r, mapping, "block"), + Durability: mapLoadInt(&r, mapping, "durability"), + NoDurability: mapLoadBool(&r, mapping, "nodurability"), - Level: MapLoadInt(&r, mapping, "level"), - RequiredLevel: MapLoadInt(&r, mapping, "levelreq"), - Cost: MapLoadInt(&r, mapping, "cost"), - GambleCost: MapLoadInt(&r, mapping, "gamble cost"), - Code: MapLoadString(&r, mapping, "code"), - NameString: MapLoadString(&r, mapping, "namestr"), - MagicLevel: MapLoadInt(&r, mapping, "magic lvl"), - AutoPrefix: MapLoadInt(&r, mapping, "auto prefix"), + Level: mapLoadInt(&r, mapping, "level"), + RequiredLevel: mapLoadInt(&r, mapping, "levelreq"), + Cost: mapLoadInt(&r, mapping, "cost"), + GambleCost: mapLoadInt(&r, mapping, "gamble cost"), + Code: mapLoadString(&r, mapping, "code"), + NameString: mapLoadString(&r, mapping, "namestr"), + MagicLevel: mapLoadInt(&r, mapping, "magic lvl"), + AutoPrefix: mapLoadInt(&r, mapping, "auto prefix"), - AlternateGfx: MapLoadString(&r, mapping, "alternategfx"), - OpenBetaGfx: MapLoadString(&r, mapping, "OpenBetaGfx"), - NormalCode: MapLoadString(&r, mapping, "normcode"), - UberCode: MapLoadString(&r, mapping, "ubercode"), - UltraCode: MapLoadString(&r, mapping, "ultracode"), + AlternateGfx: mapLoadString(&r, mapping, "alternategfx"), + OpenBetaGfx: mapLoadString(&r, mapping, "OpenBetaGfx"), + NormalCode: mapLoadString(&r, mapping, "normcode"), + UberCode: mapLoadString(&r, mapping, "ubercode"), + UltraCode: mapLoadString(&r, mapping, "ultracode"), - SpellOffset: MapLoadInt(&r, mapping, "spelloffset"), + SpellOffset: mapLoadInt(&r, mapping, "spelloffset"), - Component: MapLoadInt(&r, mapping, "component"), - InventoryWidth: MapLoadInt(&r, mapping, "invwidth"), - InventoryHeight: MapLoadInt(&r, mapping, "invheight"), - HasInventory: MapLoadBool(&r, mapping, "hasinv"), - GemSockets: MapLoadInt(&r, mapping, "gemsockets"), - GemApplyType: MapLoadInt(&r, mapping, "gemapplytype"), + Component: mapLoadInt(&r, mapping, "component"), + InventoryWidth: mapLoadInt(&r, mapping, "invwidth"), + InventoryHeight: mapLoadInt(&r, mapping, "invheight"), + HasInventory: mapLoadBool(&r, mapping, "hasinv"), + GemSockets: mapLoadInt(&r, mapping, "gemsockets"), + GemApplyType: mapLoadInt(&r, mapping, "gemapplytype"), - FlippyFile: MapLoadString(&r, mapping, "flippyfile"), - InventoryFile: MapLoadString(&r, mapping, "invfile"), - UniqueInventoryFile: MapLoadString(&r, mapping, "uniqueinvfile"), - SetInventoryFile: MapLoadString(&r, mapping, "setinvfile"), + FlippyFile: mapLoadString(&r, mapping, "flippyfile"), + InventoryFile: mapLoadString(&r, mapping, "invfile"), + UniqueInventoryFile: mapLoadString(&r, mapping, "uniqueinvfile"), + SetInventoryFile: mapLoadString(&r, mapping, "setinvfile"), - AnimRightArm: MapLoadInt(&r, mapping, "rArm"), - AnimLeftArm: MapLoadInt(&r, mapping, "lArm"), - AnimTorso: MapLoadInt(&r, mapping, "Torso"), - AnimLegs: MapLoadInt(&r, mapping, "Legs"), - AnimRightShoulderPad: MapLoadInt(&r, mapping, "rSPad"), - AnimLeftShoulderPad: MapLoadInt(&r, mapping, "lSPad"), + AnimRightArm: mapLoadInt(&r, mapping, "rArm"), + AnimLeftArm: mapLoadInt(&r, mapping, "lArm"), + AnimTorso: mapLoadInt(&r, mapping, "Torso"), + AnimLegs: mapLoadInt(&r, mapping, "Legs"), + AnimRightShoulderPad: mapLoadInt(&r, mapping, "rSPad"), + AnimLeftShoulderPad: mapLoadInt(&r, mapping, "lSPad"), - Useable: MapLoadBool(&r, mapping, "useable"), + Useable: mapLoadBool(&r, mapping, "useable"), - Throwable: MapLoadBool(&r, mapping, "throwable"), - Stackable: MapLoadBool(&r, mapping, "stackable"), - MinStack: MapLoadInt(&r, mapping, "minstack"), - MaxStack: MapLoadInt(&r, mapping, "maxstack"), + Throwable: mapLoadBool(&r, mapping, "throwable"), + Stackable: mapLoadBool(&r, mapping, "stackable"), + MinStack: mapLoadInt(&r, mapping, "minstack"), + MaxStack: mapLoadInt(&r, mapping, "maxstack"), - Type: MapLoadString(&r, mapping, "type"), - Type2: MapLoadString(&r, mapping, "type2"), + Type: mapLoadString(&r, mapping, "type"), + Type2: mapLoadString(&r, mapping, "type2"), - DropSound: MapLoadString(&r, mapping, "dropsound"), - DropSfxFrame: MapLoadInt(&r, mapping, "dropsfxframe"), - UseSound: MapLoadString(&r, mapping, "usesound"), + DropSound: mapLoadString(&r, mapping, "dropsound"), + DropSfxFrame: mapLoadInt(&r, mapping, "dropsfxframe"), + UseSound: mapLoadString(&r, mapping, "usesound"), - Unique: MapLoadBool(&r, mapping, "unique"), - Transparent: MapLoadBool(&r, mapping, "transparent"), - TransTable: MapLoadInt(&r, mapping, "transtbl"), - Quivered: MapLoadBool(&r, mapping, "quivered"), - LightRadius: MapLoadInt(&r, mapping, "lightradius"), - Belt: MapLoadBool(&r, mapping, "belt"), + Unique: mapLoadBool(&r, mapping, "unique"), + Transparent: mapLoadBool(&r, mapping, "transparent"), + TransTable: mapLoadInt(&r, mapping, "transtbl"), + Quivered: mapLoadBool(&r, mapping, "quivered"), + LightRadius: mapLoadInt(&r, mapping, "lightradius"), + Belt: mapLoadBool(&r, mapping, "belt"), - Quest: MapLoadInt(&r, mapping, "quest"), + Quest: mapLoadInt(&r, mapping, "quest"), - MissileType: MapLoadInt(&r, mapping, "missiletype"), - DurabilityWarning: MapLoadInt(&r, mapping, "durwarning"), - QuantityWarning: MapLoadInt(&r, mapping, "qntwarning"), + MissileType: mapLoadInt(&r, mapping, "missiletype"), + DurabilityWarning: mapLoadInt(&r, mapping, "durwarning"), + QuantityWarning: mapLoadInt(&r, mapping, "qntwarning"), - MinDamage: MapLoadInt(&r, mapping, "mindam"), - MaxDamage: MapLoadInt(&r, mapping, "maxdam"), - StrengthBonus: MapLoadInt(&r, mapping, "StrBonus"), - DexterityBonus: MapLoadInt(&r, mapping, "DexBonus"), + MinDamage: mapLoadInt(&r, mapping, "mindam"), + MaxDamage: mapLoadInt(&r, mapping, "maxdam"), + StrengthBonus: mapLoadInt(&r, mapping, "StrBonus"), + DexterityBonus: mapLoadInt(&r, mapping, "DexBonus"), - GemOffset: MapLoadInt(&r, mapping, "gemoffset"), - BitField1: MapLoadInt(&r, mapping, "bitfield1"), + GemOffset: mapLoadInt(&r, mapping, "gemoffset"), + BitField1: mapLoadInt(&r, mapping, "bitfield1"), Vendors: createItemVendorParams(&r, mapping), - SourceArt: MapLoadString(&r, mapping, "Source Art"), - GameArt: MapLoadString(&r, mapping, "Game Art"), - ColorTransform: MapLoadInt(&r, mapping, "Transform"), - InventoryColorTransform: MapLoadInt(&r, mapping, "InvTrans"), + SourceArt: mapLoadString(&r, mapping, "Source Art"), + GameArt: mapLoadString(&r, mapping, "Game Art"), + ColorTransform: mapLoadInt(&r, mapping, "Transform"), + InventoryColorTransform: mapLoadInt(&r, mapping, "InvTrans"), - SkipName: MapLoadBool(&r, mapping, "SkipName"), - NightmareUpgrade: MapLoadString(&r, mapping, "NightmareUpgrade"), - HellUpgrade: MapLoadString(&r, mapping, "HellUpgrade"), + SkipName: mapLoadBool(&r, mapping, "SkipName"), + NightmareUpgrade: mapLoadString(&r, mapping, "NightmareUpgrade"), + HellUpgrade: mapLoadString(&r, mapping, "HellUpgrade"), - Nameable: MapLoadBool(&r, mapping, "Nameable"), + Nameable: mapLoadBool(&r, mapping, "Nameable"), // weapon params - BarbOneOrTwoHanded: MapLoadBool(&r, mapping, "1or2handed"), - UsesTwoHands: MapLoadBool(&r, mapping, "2handed"), - Min2HandDamage: MapLoadInt(&r, mapping, "2handmindam"), - Max2HandDamage: MapLoadInt(&r, mapping, "2handmaxdam"), - MinMissileDamage: MapLoadInt(&r, mapping, "minmisdam"), - MaxMissileDamage: MapLoadInt(&r, mapping, "maxmisdam"), - MissileSpeed: MapLoadInt(&r, mapping, "misspeed"), - ExtraRange: MapLoadInt(&r, mapping, "rangeadder"), + BarbOneOrTwoHanded: mapLoadBool(&r, mapping, "1or2handed"), + UsesTwoHands: mapLoadBool(&r, mapping, "2handed"), + Min2HandDamage: mapLoadInt(&r, mapping, "2handmindam"), + Max2HandDamage: mapLoadInt(&r, mapping, "2handmaxdam"), + MinMissileDamage: mapLoadInt(&r, mapping, "minmisdam"), + MaxMissileDamage: mapLoadInt(&r, mapping, "maxmisdam"), + MissileSpeed: mapLoadInt(&r, mapping, "misspeed"), + ExtraRange: mapLoadInt(&r, mapping, "rangeadder"), - RequiredDexterity: MapLoadInt(&r, mapping, "reqdex"), + RequiredDexterity: mapLoadInt(&r, mapping, "reqdex"), - WeaponClass: MapLoadString(&r, mapping, "wclass"), - WeaponClass2Hand: MapLoadString(&r, mapping, "2handedwclass"), + WeaponClass: mapLoadString(&r, mapping, "wclass"), + WeaponClass2Hand: mapLoadString(&r, mapping, "2handedwclass"), - HitClass: MapLoadString(&r, mapping, "hit class"), - SpawnStack: MapLoadInt(&r, mapping, "spawnstack"), + HitClass: mapLoadString(&r, mapping, "hit class"), + SpawnStack: mapLoadInt(&r, mapping, "spawnstack"), - SpecialFeature: MapLoadString(&r, mapping, "special"), + SpecialFeature: mapLoadString(&r, mapping, "special"), - QuestDifficultyCheck: MapLoadBool(&r, mapping, "questdiffcheck"), + QuestDifficultyCheck: mapLoadBool(&r, mapping, "questdiffcheck"), - PermStoreItem: MapLoadBool(&r, mapping, "PermStoreItem"), + PermStoreItem: mapLoadBool(&r, mapping, "PermStoreItem"), // misc params - FlavorText: MapLoadString(&r, mapping, "szFlavorText"), + FlavorText: mapLoadString(&r, mapping, "szFlavorText"), - Transmogrify: MapLoadBool(&r, mapping, "Transmogrify"), - TransmogCode: MapLoadString(&r, mapping, "TMogType"), - TransmogMin: MapLoadInt(&r, mapping, "TMogMin"), - TransmogMax: MapLoadInt(&r, mapping, "TMogMax"), + Transmogrify: mapLoadBool(&r, mapping, "Transmogrify"), + TransmogCode: mapLoadString(&r, mapping, "TMogType"), + TransmogMin: mapLoadInt(&r, mapping, "TMogMin"), + TransmogMax: mapLoadInt(&r, mapping, "TMogMax"), - AutoBelt: MapLoadBool(&r, mapping, "autobelt"), + AutoBelt: mapLoadBool(&r, mapping, "autobelt"), - SpellIcon: MapLoadInt(&r, mapping, "spellicon"), - SpellType: MapLoadInt(&r, mapping, "pSpell"), - OverlayState: MapLoadString(&r, mapping, "state"), + SpellIcon: mapLoadInt(&r, mapping, "spellicon"), + SpellType: mapLoadInt(&r, mapping, "pSpell"), + OverlayState: mapLoadString(&r, mapping, "state"), CureOverlayStates: [2]string{ - MapLoadString(&r, mapping, "cstate1"), - MapLoadString(&r, mapping, "cstate2"), + mapLoadString(&r, mapping, "cstate1"), + mapLoadString(&r, mapping, "cstate2"), }, - EffectLength: MapLoadInt(&r, mapping, "len"), + EffectLength: mapLoadInt(&r, mapping, "len"), UsageStats: createItemUsageStats(&r, mapping), - SpellDescriptionType: MapLoadInt(&r, mapping, "spelldesc"), + SpellDescriptionType: mapLoadInt(&r, mapping, "spelldesc"), // 0 = none, 1 = use desc string, 2 = use desc string + calc value - SpellDescriptionString: MapLoadString(&r, mapping, "spelldescstr"), - SpellDescriptionCalc: d2common.CalcString(MapLoadString(&r, mapping, "spelldesccalc")), + SpellDescriptionString: mapLoadString(&r, mapping, "spelldescstr"), + SpellDescriptionCalc: d2common.CalcString(mapLoadString(&r, mapping, "spelldesccalc")), - BetterGem: MapLoadString(&r, mapping, "BetterGem"), + BetterGem: mapLoadString(&r, mapping, "BetterGem"), - Multibuy: MapLoadBool(&r, mapping, "multibuy"), + Multibuy: mapLoadBool(&r, mapping, "multibuy"), } return result } -func createItemVendorParams(r *[]string, mapping *map[string]int) map[string]*ItemVendorParams { +func createItemVendorParams(r *[]string, mapping map[string]int) map[string]*ItemVendorParams { vs := make([]string, 17) vs[0] = "Charsi" vs[1] = "Gheed" @@ -396,11 +371,11 @@ func createItemVendorParams(r *[]string, mapping *map[string]int) map[string]*It for _, name := range vs { wvp := ItemVendorParams{ - Min: MapLoadInt(r, mapping, name+"Min"), - Max: MapLoadInt(r, mapping, name+"Max"), - MagicMin: MapLoadInt(r, mapping, name+"MagicMin"), - MagicMax: MapLoadInt(r, mapping, name+"MagicMax"), - MagicLevel: MapLoadUint8(r, mapping, name+"MagicLvl"), + Min: mapLoadInt(r, mapping, name+"Min"), + Max: mapLoadInt(r, mapping, name+"Max"), + MagicMin: mapLoadInt(r, mapping, name+"MagicMin"), + MagicMax: mapLoadInt(r, mapping, name+"MagicMax"), + MagicLevel: mapLoadUint8(r, mapping, name+"MagicLvl"), } result[name] = &wvp } @@ -408,11 +383,11 @@ func createItemVendorParams(r *[]string, mapping *map[string]int) map[string]*It return result } -func createItemUsageStats(r *[]string, mapping *map[string]int) [3]ItemUsageStat { +func createItemUsageStats(r *[]string, mapping map[string]int) [3]ItemUsageStat { result := [3]ItemUsageStat{} for i := 0; i < 3; i++ { - result[i].Stat = MapLoadString(r, mapping, "stat"+strconv.Itoa(i)) - result[i].Calc = d2common.CalcString(MapLoadString(r, mapping, "calc"+strconv.Itoa(i))) + result[i].Stat = mapLoadString(r, mapping, "stat"+strconv.Itoa(i)) + result[i].Calc = d2common.CalcString(mapLoadString(r, mapping, "calc"+strconv.Itoa(i))) } return result diff --git a/d2common/d2data/d2datadict/itemstatcost.go b/d2common/d2data/d2datadict/itemstatcost.go index 4724619b..1f8a9a39 100644 --- a/d2common/d2data/d2datadict/itemstatcost.go +++ b/d2common/d2data/d2datadict/itemstatcost.go @@ -7,35 +7,53 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) +// ItemStatCostRecord represents a row from itemstatcost.txt +// these records describe the stat values and costs (in shops) of items // refer to https://d2mods.info/forum/kb/viewarticle?a=448 type ItemStatCostRecord struct { - Name string - Index int + Name string + OpBase string + OpStat1 string + OpStat2 string + OpStat3 string - Signed bool // whether the stat is signed - KeepZero bool // prevent from going negative (assume only client side) + MaxStat string // if Direct true, will not exceed val of MaxStat + DescStrPos string // string used when val is positive + DescStrNeg string + DescStr2 string // additional string used by some string funcs + DescGroupStrPos string // string used when val is positive + DescGroupStrNeg string + DescGroupStr2 string // additional string used by some string funcs + + // Stuff + // Stay far away from this column unless you really know what you're + // doing and / or work for Blizzard, this column is used during bin-file + // creation to generate a cache regulating the op-stat stuff and other + // things, changing it can be futile, it works like the constants column + // in MonUMod.txt and has no other relation to ItemStatCost.txt, the first + // stat in the file simply must have this set or else you may break the + // entire op stuff. + Stuff string + + DescFn interface{} // the sprintf func + DescGroupFn interface{} // group sprintf func + + Index int // path_d2.mpq version doesnt have Ranged columne, excluding for now // Ranged bool // game attempts to keep stat in a range, like strength >-1 MinAccr int // minimum ranged value - UpdateAnimRate bool // when altered, forces speed handler to adjust speed + SendBits int // #bits to send in stat update + SendParam int // #bits to send in stat update - SendOther bool // whether to send to other clients - SendBits int // #bits to send in stat update - SendParam int // #bits to send in stat update - - Saved bool // whether this stat is saved in .d2s files - SavedSigned bool // whether the stat is saved as signed/unsigned - SavedBits int // #bits allocated to the value in .d2s file + SavedBits int // #bits allocated to the value in .d2s file SaveBits int // #bits saved to .d2s files, max == 2^SaveBits-1 SaveAdd int // how large the negative range is (lowers max, as well) SaveParamBits int // #param bits are saved (safe value is 17) - Encode EncodingType // how the stat is encoded in .d2s files - - CallbackEnabled bool // whether callback fn is called if value changes + Encode d2enum.EncodingType // how the stat is encoded in .d2s files // these two fields control additional cost on items // cost * (1 + value * multiply / 1024)) + add (...) @@ -48,20 +66,8 @@ type ItemStatCostRecord struct { ValShift int // controls how stat is stored in .d2s // so that you can save `+1` instead of `+256` - OperatorType OperatorType + OperatorType d2enum.OperatorType OpParam int - OpBase string - OpStat1 string - OpStat2 string - OpStat3 string - - Direct bool // whether is temporary or permanent - MaxStat string // if Direct true, will not exceed val of MaxStat - - ItemSpecific bool // prevents stacking with an existing stat on item - // like when socketing a jewel - - DamageRelated bool // prevents stacking of stats while dual wielding EventID1 d2enum.ItemEventType EventID2 d2enum.ItemEventType @@ -70,175 +76,35 @@ type ItemStatCostRecord struct { DescPriority int // determines order when displayed DescFnID d2enum.DescFuncID - DescFn interface{} // the sprintf func // Controls whenever and if so in what way the stat value is shown // 0 = doesn't show the value of the stat // 1 = shows the value of the stat infront of the description // 2 = shows the value of the stat after the description. - DescVal int - DescStrPos string // string used when val is positive - DescStrNeg string - DescStr2 string // additional string used by some string funcs + DescVal int // when stats in the same group have the same value they use the // group func for desc (they need to be in the same affix) DescGroup int - DescGroupFuncID d2enum.DescFuncID - DescGroupFn interface{} // group sprintf func DescGroupVal int - DescGroupStrPos string // string used when val is positive - DescGroupStrNeg string - DescGroupStr2 string // additional string used by some string funcs + DescGroupFuncID d2enum.DescFuncID - // Stay far away from this column unless you really know what you're - // doing and / or work for Blizzard, this column is used during bin-file - // creation to generate a cache regulating the op-stat stuff and other - // things, changing it can be futile, it works like the constants column - // in MonUMod.txt and has no other relation to ItemStatCost.txt, the first - // stat in the file simply must have this set or else you may break the - // entire op stuff. - Stuff string // ? TODO ? + CallbackEnabled bool // whether callback fn is called if value changes + Signed bool // whether the stat is signed + KeepZero bool // prevent from going negative (assume only client side) + UpdateAnimRate bool // when altered, forces speed handler to adjust speed + SendOther bool // whether to send to other clients + Saved bool // whether this stat is saved in .d2s files + SavedSigned bool // whether the stat is saved as signed/unsigned + Direct bool // whether is temporary or permanent + ItemSpecific bool // prevents stacking with an existing stat on item + // like when socketing a jewel + + DamageRelated bool // prevents stacking of stats while dual wielding } -type EncodingType int - -const ( - // TODO: determine other encoding types. - // didn't see anything about how this stuff is encoded, or the types... - EncodeDefault = EncodingType(iota) -) - -type OperatorType int // for dynamic properties - -const ( - // just adds the stat to the unit directly - OpDefault = OperatorType(iota) - - // Op1 adds opstat.base * statvalue / 100 to the opstat. - Op1 - - // Op2 adds (statvalue * basevalue) / (2 ^ param) to the opstat - // this does not work properly with any stat other then level because of the - // way this is updated, it is only refreshed when you re-equip the item, - // your character is saved or you level up, similar to passive skills, just - // because it looks like it works in the item description - // does not mean it does, the game just recalculates the information in the - // description every frame, while the values remain unchanged serverside. - Op2 - - // Op3 is a percentage based version of op #2 - // look at op #2 for information about the formula behind it, just - // remember the stat is increased by a percentage rather then by adding - // an integer. - Op3 - - // Op4 works the same way op #2 works, however the stat bonus is - // added to the item and not to the player (so that +defense per level - // properly adds the defense to the armor and not to the character - // directly!) - Op4 - - // Op5 works like op #4 but is percentage based, it is used for percentage - // based increase of stats that are found on the item itself, and not stats - // that are found on the character. - Op5 - - // Op6 works like for op #7, however this adds a plain bonus to the stat, and just - // like #7 it also doesn't work so I won't bother to explain the arithmetic - // behind it either. - Op6 - - // Op7 is used to increase a stat based on the current daytime of the game - // world by a percentage, there is no need to explain the arithmetics - // behind it because frankly enough it just doesn't work serverside, it - // only updates clientside so this op is essentially useless. - Op7 - - // Op8 hardcoded to work only with maxmana, this will apply the proper amount - // of mana to your character based on CharStats.txt for the amount of energy - // the stat added (doesn't work for non characters) - Op8 - - // Op9 hardcoded to work only with maxhp and maxstamina, this will apply the - // proper amount of maxhp and maxstamina to your character based on - // CharStats.txt for the amount of vitality the stat added (doesn't work - // for non characters) - Op9 - - // Op10 doesn't do anything, this has no switch case in the op function. - Op10 - - // Op11 adds opstat.base * statvalue / 100 similar to 1 and 13, the code just - // does a few more checks - Op11 - - // Op12 doesn't do anything, this has no switch case in the op function. - Op12 - - // Op13 adds opstat.base * statvalue / 100 to the value of opstat, this is - // useable only on items it will not apply the bonus to other unit types - // (this is why it is used for +% durability, +% level requirement, - // +% damage, +% defense ). - Op13 -) - -/* column names from path_d2.mpq/data/global/excel/ItemStatCost.txt -Stat -ID -Send Other -Signed -Send Bits -Send Param Bits -UpdateAnimRate -Saved -CSvSigned -CSvBits -CSvParam -fCallback -fMin -MinAccr -Encode -Add -Multiply -Divide -ValShift -1.09-Save Bits -1.09-Save Add -Save Bits -Save Add -Save Param Bits -keepzero -op -op param -op base -op stat1 -op stat2 -op stat3 -direct -maxstat -itemspecific -damagerelated -itemevent1 -itemeventfunc1 -itemevent2 -itemeventfunc2 -descpriority -descfunc -descval -descstrpos -descstrneg -descstr2 -dgrp -dgrpfunc -dgrpval -dgrpstrpos -dgrpstrneg -dgrpstr2 -stuff -*eol -*/ - +// ItemStatCosts stores all of the ItemStatCostRecords +//nolint:gochecknoglobals // Currently global by design var ItemStatCosts map[string]*ItemStatCostRecord // LoadItemStatCosts loads ItemStatCostRecord's from text @@ -271,7 +137,7 @@ func LoadItemStatCosts(file []byte) { SaveAdd: d.GetNumber("Save Add", idx), SaveParamBits: d.GetNumber("Save Param Bits", idx), - Encode: EncodingType(d.GetNumber("Encode", idx)), + Encode: d2enum.EncodingType(d.GetNumber("Encode", idx)), CallbackEnabled: d.GetNumber("fCallback", idx) > 0, @@ -279,7 +145,7 @@ func LoadItemStatCosts(file []byte) { CostMultiply: d.GetNumber("Multiply", idx), ValShift: d.GetNumber("ValShift", idx), - OperatorType: OperatorType(d.GetNumber("op", idx)), + OperatorType: d2enum.OperatorType(d.GetNumber("op", idx)), OpParam: d.GetNumber("op param", idx), OpBase: d.GetString("op base", idx), OpStat1: d.GetString("op stat1", idx), diff --git a/d2common/d2data/d2datadict/level_maze.go b/d2common/d2data/d2datadict/level_maze.go index 5d6d7677..411728cc 100644 --- a/d2common/d2data/d2datadict/level_maze.go +++ b/d2common/d2data/d2datadict/level_maze.go @@ -6,6 +6,8 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// LevelMazeDetailsRecord is a representation of a row from lvlmaze.txt +// these records define the parameters passed to the maze level generator type LevelMazeDetailsRecord struct { // descriptive, not loaded in game. Corresponds with Name field in // Levels.txt @@ -34,7 +36,8 @@ type LevelMazeDetailsRecord struct { // Beta } -var LevelMazeDetails map[int]*LevelMazeDetailsRecord +// LevelMazeDetails stores all of the LevelMazeDetailsRecords +var LevelMazeDetails map[int]*LevelMazeDetailsRecord //nolint:gochecknoglobals // Currently global by design // LoadLevelMazeDetails loads LevelMazeDetailsRecords from text file func LoadLevelMazeDetails(file []byte) { diff --git a/d2common/d2data/d2datadict/level_presets.go b/d2common/d2data/d2datadict/level_presets.go index 776c1260..46eb79d1 100644 --- a/d2common/d2data/d2datadict/level_presets.go +++ b/d2common/d2data/d2datadict/level_presets.go @@ -7,25 +7,27 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// LevelPresetRecord is a representation of a row from lvlprest.txt +// these records define parameters for the preset level map generator type LevelPresetRecord struct { + Files [6]string Name string DefinitionID int LevelID int + SizeX int + SizeY int + Pops int + PopPad int + FileCount int + Dt1Mask uint Populate bool Logicals bool Outdoors bool Animate bool KillEdge bool FillBlanks bool - SizeX int - SizeY int AutoMap bool Scan bool - Pops int - PopPad int - FileCount int - Files [6]string - Dt1Mask uint Beta bool Expansion bool } @@ -70,7 +72,8 @@ func createLevelPresetRecord(props []string) LevelPresetRecord { return result } -var LevelPresets map[int]LevelPresetRecord +// LevelPresets stores all of the LevelPresetRecords +var LevelPresets map[int]LevelPresetRecord //nolint:gochecknoglobals // Currently global by design // LoadLevelPresets loads level presets from text file func LoadLevelPresets(file []byte) { diff --git a/d2common/d2data/d2datadict/level_sub.go b/d2common/d2data/d2datadict/level_sub.go index 5b9ecb28..1e28c942 100644 --- a/d2common/d2data/d2datadict/level_sub.go +++ b/d2common/d2data/d2datadict/level_sub.go @@ -6,9 +6,12 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// LevelSubstitutionRecord is a representation of a row from lvlsub.txt +// these records are parameters for levels and describe substitution rules type LevelSubstitutionRecord struct { // Description, reference only. Name string // Name + // This value is used in Levels.txt, in the column 'SubType'. You'll notice // that in LvlSub.txt some rows use the same value, we can say they forms // groups. If you count each row of a group starting from 0, then you'll @@ -61,8 +64,11 @@ type LevelSubstitutionRecord struct { // Beta } +// LevelSubstitutions stores all of the LevelSubstitutionRecords +//nolint:gochecknoglobals // Currently global by design var LevelSubstitutions map[int]*LevelSubstitutionRecord +// LoadLevelSubstitutions loads lvlsub.txt and parses into records func LoadLevelSubstitutions(file []byte) { dict := d2common.LoadDataDictionary(string(file)) numRecords := len(dict.Data) diff --git a/d2common/d2data/d2datadict/level_types.go b/d2common/d2data/d2datadict/level_types.go index 96175b75..da36df85 100644 --- a/d2common/d2data/d2datadict/level_types.go +++ b/d2common/d2data/d2datadict/level_types.go @@ -7,17 +7,21 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// LevelTypeRecord is a representation of a row from lvltype.txt +// the fields describe what ds1 files a level uses type LevelTypeRecord struct { + Files [32]string Name string ID int - Files [32]string - Beta bool Act int + Beta bool Expansion bool } -var LevelTypes []LevelTypeRecord +// LevelTypes stores all of the LevelTypeRecords +var LevelTypes []LevelTypeRecord //nolint:gochecknoglobals // Currently global by design, +// LoadLevelTypes loads the LevelTypeRecords func LoadLevelTypes(file []byte) { data := strings.Split(string(file), "\r\n")[1:] LevelTypes = make([]LevelTypeRecord, len(data)) diff --git a/d2common/d2data/d2datadict/level_warp.go b/d2common/d2data/d2datadict/level_warp.go index 3732ef50..12ae32c9 100644 --- a/d2common/d2data/d2datadict/level_warp.go +++ b/d2common/d2data/d2datadict/level_warp.go @@ -6,6 +6,8 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// LevelWarpRecord is a representation of a row from lvlwarp.txt +// it describes the warp graphics offsets and dimensions for levels type LevelWarpRecord struct { ID int32 SelectX int32 @@ -21,8 +23,8 @@ type LevelWarpRecord struct { Direction string } -//nolint:gochecknoglobals // Currently global by design, only written once // LevelWarps loaded from txt records +//nolint:gochecknoglobals // Currently global by design, only written once var LevelWarps map[int]*LevelWarpRecord // LoadLevelWarps loads LevelWarpRecord's from text file data diff --git a/d2common/d2data/d2datadict/levels.go b/d2common/d2data/d2datadict/levels.go index 6141ad85..068e3cd4 100644 --- a/d2common/d2data/d2datadict/levels.go +++ b/d2common/d2data/d2datadict/levels.go @@ -7,21 +7,103 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) +// LevelDetailsRecord is a representation of a row from levels.txt +// it describes lots of things about the levels, like where they are connected, +// what kinds of monsters spawn, the level generator type, and lots of other stuff. type LevelDetailsRecord struct { + // Name // This column has no function, it only serves as a comment field to make it // easier to identify the Level name Name string // Name <-- the corresponding column name in the txt - // Level ID (used in columns like VIS0-7) - Id int // Id + // mon1-mon25 work in Normal difficulty, while nmon1-nmon25 in Nightmare and + // Hell. They tell the game which monster ID taken from MonStats.txt. + // NOTE: you need to manually add from mon11 to mon25 and from nmon11 to + // nmon25 ! + MonsterID1Normal string // mon1 + MonsterID2Normal string // mon2 + MonsterID3Normal string // mon3 + MonsterID4Normal string // mon4 + MonsterID5Normal string // mon5 + MonsterID6Normal string // mon6 + MonsterID7Normal string // mon7 + MonsterID8Normal string // mon8 + MonsterID9Normal string // mon9 + MonsterID10Normal string // mon10 - // Act Palette . Reference only + MonsterID1Nightmare string // nmon1 + MonsterID2Nightmare string // nmon2 + MonsterID3Nightmare string // nmon3 + MonsterID4Nightmare string // nmon4 + MonsterID5Nightmare string // nmon5 + MonsterID6Nightmare string // nmon6 + MonsterID7Nightmare string // nmon7 + MonsterID8Nightmare string // nmon8 + MonsterID9Nightmare string // nmon9 + MonsterID10Nightmare string // nmon10 + + // Gravestench - adding additional fields for Hell, original txt combined + // the nighmare and hell ID's stringo the same field + MonsterID1Hell string // nmon1 + MonsterID2Hell string // nmon2 + MonsterID3Hell string // nmon3 + MonsterID4Hell string // nmon4 + MonsterID5Hell string // nmon5 + MonsterID6Hell string // nmon6 + MonsterID7Hell string // nmon7 + MonsterID8Hell string // nmon8 + MonsterID9Hell string // nmon9 + MonsterID10Hell string // nmon10 + + // Works only in normal and it tells which ID will be used for Champion and + // Random Uniques. The ID is taken from MonStats.txtOnly the first ten + // columns appear in the unmodded file. In 1.10 final, beta 1.10s and + // v1.11+ you can add the missing umon11-umon25 columns. + // NOTE: you can allow umon1-25 to also work in Nightmare and Hell by + // following this simple ASM edit + // (https://d2mods.info/forum/viewtopic.php?f=8&t=53969&p=425179&hilit=umon#p425179) + MonsterUniqueID1 string // umon1 + MonsterUniqueID2 string // umon2 + MonsterUniqueID3 string // umon3 + MonsterUniqueID4 string // umon4 + MonsterUniqueID5 string // umon5 + MonsterUniqueID6 string // umon6 + MonsterUniqueID7 string // umon7 + MonsterUniqueID8 string // umon8 + MonsterUniqueID9 string // umon9 + MonsterUniqueID10 string // umon10 + + // Critter Species 1-4. Uses the Id from monstats2.txt and only monsters + // with critter column set to 1 can spawn here. critter column is also found + // in monstats2.txt. Critters are in reality only present clientside. + MonsterCritterID1 string // cmon1 + MonsterCritterID2 string // cmon2 + MonsterCritterID3 string // cmon3 + MonsterCritterID4 string // cmon4 + + // String Code for the Display name of the Level + LevelDisplayName string // LevelName + + LevelWarpName string // LevelWarp + + // Which *.DC6 Title Image is loaded when you enter this area. this file + // MUST exist, otherwise you will crash with an exception when you enter the + // level (for all levels below the expansion row, the files must be + // present in the expension folders) + TitleImageName string // EntryFile + + // Id + // Level ID (used in columns like VIS0-7) + Id int //nolint:golint Id is the right key + + // Palette is the Act Palette . Reference only Palette int // Pal - // The Act the Level is located in (internal enumeration ranges from 0 to 4) + // Act that the Level is located in (internal enumeration ranges from 0 to 4) Act int // Act + // QuestFlag, QuestExpansionFlag // Used the first one in Classic games and the latter in Expansion games , // they set a questflag. If this flag is set, a character must have // completed the quest associated with the flag to take a town portal to @@ -37,17 +119,15 @@ type LevelDetailsRecord struct { // additional layers. AutomapIndex int // Layer - // sizeX - SizeY in each difficulty. If this is a preset area this sets the + // SizeXNormal -- SizeYHell If this is a preset area this sets the // X size for the area. Othervise use the same value here that are used in // lvlprest.txt to set the size for the .ds1 file. - SizeXNormal int // SizeX - SizeYNormal int // SizeY - + SizeXNormal int // SizeX + SizeYNormal int // SizeY SizeXNightmare int // SizeX(N) SizeYNightmare int // SizeY(N) - - SizeXHell int // SizeX(H) - SizeYHell int // SizeY(H) + SizeXHell int // SizeX(H) + SizeYHell int // SizeY(H) // They set the X\Y position in the world space WorldOffsetX int // OffsetX @@ -58,6 +138,9 @@ type LevelDetailsRecord struct { // location. DependantLevelID int // Depend + // The type of the Level (Id from lvltypes.txt) + LevelType int // LevelType + // Controls if teleport is allowed in that level. // 0 = Teleport not allowed // 1 = Teleport allowed @@ -65,55 +148,12 @@ type LevelDetailsRecord struct { // (maybe for objects this is controlled by IsDoor column in objects.txt) TeleportFlag d2enum.TeleportFlag // Teleport - // It sets whether rain or snow (in act 5 only) can fall . Set it to 1 in - // order to enable it, 0 to disable it. - EnableRain bool // Rain - - // Unused setting (In pre beta D2 Blizzard planned Rain to generate Mud - // which would have slowed your character's speed down, but this never made - // it into the final game). the field is read by the code but the return - // value is never utilized. - EnableMud bool // Mud - - // Setting for 3D Enhanced D2 that disables Perspective Mode for a specific - // level. A value of 1 enables the users to choose between normal and - // Perspective view, while 0 disables that choice. - EnablePerspective bool // NoPer - - // Allows you to look through objects and walls even if they are not in a - // wilderness level. 1 enables it, 0 disables it. - EnableLineOfSightDraw bool // LOSDraw - - // Unknown. Probably has to do with Tiles and their Placement. - // 1 enables it, 0 disables it. - EnableFloorFliter bool // FloorFilter - - // Unknown. Probably has to do with tiles and their placement. - // 1 enables it, 0 disables it. - // TODO: needs a better name - EnableBlankScreen bool // BlankScreen - - // for levels bordered with mountains or walls, like the act 1 wildernesses. - // 1 enables it, 0 disables it. - EnableDrawEdges bool // DrawEdges - - // Setting it to 1 makes the level to be treated as an indoor area, while - // 0 makes this level an outdoor. Indoor areas are not affected by day-night - // cycles, because they always use the light values specified in Intensity, - // Red, Green, Blue. this field also controls whenever sounds will echo if - // you're running the game with a sound card capable of it and have - // environment sound effects set to true. - IsInside bool // IsInside - // Setting for Level Generation: You have 3 possibilities here: // 1 Random Maze // 2 Preset Area // 3 Wilderness level LevelGenerationType d2enum.LevelGenerationType // DrlgType - // The type of the Level (Id from lvltypes.txt) - LevelType int // LevelType - // NOTE // IDs from LvlSub.txt, which is used to randomize outdoor areas, such as // spawning ponds in the blood moor and more stones in the Stoney Field. @@ -123,7 +163,6 @@ type LevelDetailsRecord struct { // Example: 6=wilderness, 9=desert etc, -1=no subtype. SubType int // SubType - // TODO this may need an enumeration.. ? // Tells which subtheme a wilderness area should use. // Themes ranges from -1 (no subtheme) to 4. SubTheme int // SubTheme @@ -170,29 +209,6 @@ type LevelDetailsRecord struct { Green int // Green Blue int // Blue - // This field is required for some levels, entering those levels when portal - // field isn't set will often crash the game. This also applies to - // duplicates of those levels created with both of the extended level - // plugins. - PortalEnable bool // Portal - // TODO: this field needs a better name - - // This controls if you can re-position a portal in a level or not. If it's - // set to 1 you will be able to reposition the portal by using either map - // entry#76 Tp Location #79. If both tiles are in the level it will use Tp - // Location #79. If set to 0 the map won't allow repositioning. - PortalRepositionEnable bool // Position - - // Setting this field to 1 will make the monsters status saved in the map. - // Setting it to 0 will allow some useful things like NPC refreshing their - // stores. - // WARNING: Do not set this to 1 for non-town areas, or the monsters you'll - // flee from will simply vanish and never reappear. They won't even be - // replaced by new ones - // Gravestench - this funcionality should not be in one field - SaveMonsterStates bool // SaveMonsters - SaveMerchantStates bool // SaveMonsters - // What quest is this level related to. This is the quest id (as example the // first quest Den of Evil are set to 1, since its the first quest). QuestID int // Quest @@ -227,14 +243,6 @@ type LevelDetailsRecord struct { MonsterUniqueMaxNightmare int // MonUMax(N) MonsterUniqueMaxHell int // MonUMax(H) - // No info on the PK page, but I'm guessing it's for monster wandering - MonsterWanderEnable bool // MonWndr - - // This setting is hardcoded to certain level Ids, like the River Of Flame, - // enabling it in other places can glitch up the game, so leave it alone. - // It is not known what exactly it does however. - MonsterSpecialWalk bool // MonSpcWalk - // Number of different Monster Types that will be present in this area, the // maximum is 13. You can have up to 13 different monster types at a time in // Nightmare and Hell difficulties, selected randomly from nmon1-nmon25. In @@ -243,92 +251,12 @@ type LevelDetailsRecord struct { // types selected randomly from umon1-umon25. NumMonsterTypes int // NumMon - // mon1-mon25 work in Normal difficulty, while nmon1-nmon25 in Nightmare and - // Hell. They tell the game which monster ID taken from MonStats.txt. - // NOTE: you need to manually add from mon11 to mon25 and from nmon11 to - // nmon25 ! - MonsterID1Normal string // mon1 - MonsterID2Normal string // mon2 - MonsterID3Normal string // mon3 - MonsterID4Normal string // mon4 - MonsterID5Normal string // mon5 - MonsterID6Normal string // mon6 - MonsterID7Normal string // mon7 - MonsterID8Normal string // mon8 - MonsterID9Normal string // mon9 - MonsterID10Normal string // mon10 - - MonsterID1Nightmare string // nmon1 - MonsterID2Nightmare string // nmon2 - MonsterID3Nightmare string // nmon3 - MonsterID4Nightmare string // nmon4 - MonsterID5Nightmare string // nmon5 - MonsterID6Nightmare string // nmon6 - MonsterID7Nightmare string // nmon7 - MonsterID8Nightmare string // nmon8 - MonsterID9Nightmare string // nmon9 - MonsterID10Nightmare string // nmon10 - - // Gravestench - adding additional fields for Hell, original txt combined - // the nighmare and hell ID's stringo the same field - MonsterID1Hell string // nmon1 - MonsterID2Hell string // nmon2 - MonsterID3Hell string // nmon3 - MonsterID4Hell string // nmon4 - MonsterID5Hell string // nmon5 - MonsterID6Hell string // nmon6 - MonsterID7Hell string // nmon7 - MonsterID8Hell string // nmon8 - MonsterID9Hell string // nmon9 - MonsterID10Hell string // nmon10 - - // Give preference to monsters set to ranged=1 in MonStats.txt on Nightmare - // and Hell difficulties when picking something to spawn. - MonsterPreferRanged bool // rangedspawn - - // Works only in normal and it tells which ID will be used for Champion and - // Random Uniques. The ID is taken from MonStats.txtOnly the first ten - // columns appear in the unmodded file. In 1.10 final, beta 1.10s and - // v1.11+ you can add the missing umon11-umon25 columns. - // NOTE: you can allow umon1-25 to also work in Nightmare and Hell by - // following this simple ASM edit - // (https://d2mods.info/forum/viewtopic.php?f=8&t=53969&p=425179&hilit=umon#p425179) - MonsterUniqueID1 string // umon1 - MonsterUniqueID2 string // umon2 - MonsterUniqueID3 string // umon3 - MonsterUniqueID4 string // umon4 - MonsterUniqueID5 string // umon5 - MonsterUniqueID6 string // umon6 - MonsterUniqueID7 string // umon7 - MonsterUniqueID8 string // umon8 - MonsterUniqueID9 string // umon9 - MonsterUniqueID10 string // umon10 - - // Critter Species 1-4. Uses the Id from monstats2.txt and only monsters - // with critter column set to 1 can spawn here. critter column is also found - // in monstats2.txt. Critters are in reality only present clientside. - MonsterCritterID1 string // cmon1 - MonsterCritterID2 string // cmon2 - MonsterCritterID3 string // cmon3 - MonsterCritterID4 string // cmon4 - // Controls the chance for a critter to spawn. MonsterCritter1SpawnChance int // cpct1 MonsterCritter2SpawnChance int // cpct2 MonsterCritter3SpawnChance int // cpct3 MonsterCritter4SpawnChance int // cpct4 - // Unknown. These columns are bugged, as the game overrides the contents of - // columns 3-4 with the value from column 1 when it compiles the bin files. - // camt1 - // camt2 - // camt3 - // camt4 - - // Unknown. It states which theme is used by the area and this field is - // accessed by the code but it is not exactly known what it does. - // Themes - // Referes to a entry in SoundEnviron.txt (for the Levels Music) SoundEnvironmentID int // SoundEnv @@ -338,17 +266,6 @@ type LevelDetailsRecord struct { // between acts however so don't even bother to try. WaypointID int // Waypoint - // String Code for the Display name of the Level - LevelDisplayName string // LevelName - - LevelWarpName string // LevelWarp - - // Which *.DC6 Title Image is loaded when you enter this area. this file - // MUST exist, otherwise you will crash with an exception when you enter the - // level (for all levels below the expansion row, the files must be - // present in the expension folders) - TitleImageName string // EntryFile - // this field uses the ID of the ObjectGroup you want to Spawn in this Area, // taken from Objgroup.txt. ObjectGroupID0 int // ObjGrp0 @@ -371,12 +288,86 @@ type LevelDetailsRecord struct { ObjectGroupSpawnChance6 int // ObjPrb6 ObjectGroupSpawnChance7 int // ObjPrb7 - // Reference Only (can be used for comments) - // Beta + // It sets whether rain or snow (in act 5 only) can fall . Set it to 1 in + // order to enable it, 0 to disable it. + EnableRain bool // Rain + + // Unused setting (In pre beta D2 Blizzard planned Rain to generate Mud + // which would have slowed your character's speed down, but this never made + // it into the final game). the field is read by the code but the return + // value is never utilized. + EnableMud bool // Mud + + // Setting for 3D Enhanced D2 that disables Perspective Mode for a specific + // level. A value of 1 enables the users to choose between normal and + // Perspective view, while 0 disables that choice. + EnablePerspective bool // NoPer + + // Allows you to look through objects and walls even if they are not in a + // wilderness level. 1 enables it, 0 disables it. + EnableLineOfSightDraw bool // LOSDraw + + // Unknown. Probably has to do with Tiles and their Placement. + // 1 enables it, 0 disables it. + EnableFloorFliter bool // FloorFilter + + // Unknown. Probably has to do with tiles and their placement. + // 1 enables it, 0 disables it. + EnableBlankScreen bool // BlankScreen + + // for levels bordered with mountains or walls, like the act 1 wildernesses. + // 1 enables it, 0 disables it. + EnableDrawEdges bool // DrawEdges + + // Setting it to 1 makes the level to be treated as an indoor area, while + // 0 makes this level an outdoor. Indoor areas are not affected by day-night + // cycles, because they always use the light values specified in Intensity, + // Red, Green, Blue. this field also controls whenever sounds will echo if + // you're running the game with a sound card capable of it and have + // environment sound effects set to true. + IsInside bool // IsInside + + // This field is required for some levels, entering those levels when portal + // field isn't set will often crash the game. This also applies to + // duplicates of those levels created with both of the extended level + // plugins. + PortalEnable bool // Portal + + // This controls if you can re-position a portal in a level or not. If it's + // set to 1 you will be able to reposition the portal by using either map + // entry#76 Tp Location #79. If both tiles are in the level it will use Tp + // Location #79. If set to 0 the map won't allow repositioning. + PortalRepositionEnable bool // Position + + // Setting this field to 1 will make the monsters status saved in the map. + // Setting it to 0 will allow some useful things like NPC refreshing their + // stores. + // WARNING: Do not set this to 1 for non-town areas, or the monsters you'll + // flee from will simply vanish and never reappear. They won't even be + // replaced by new ones + // Gravestench - this funcionality should not be in one field + SaveMonsterStates bool // SaveMonsters + SaveMerchantStates bool // SaveMonsters + + // No info on the PK page, but I'm guessing it's for monster wandering + MonsterWanderEnable bool // MonWndr + + // This setting is hardcoded to certain level Ids, like the River Of Flame, + // enabling it in other places can glitch up the game, so leave it alone. + // It is not known what exactly it does however. + MonsterSpecialWalk bool // MonSpcWalk + + // Give preference to monsters set to ranged=1 in MonStats.txt on Nightmare + // and Hell difficulties when picking something to spawn. + MonsterPreferRanged bool // rangedspawn + } +// LevelDetails has all of the LevelDetailsRecords +//nolint:gochecknoglobals // Currently global by design, only written once var LevelDetails map[int]*LevelDetailsRecord +// GetLevelDetails gets a LevelDetailsRecord by the record Id func GetLevelDetails(id int) *LevelDetailsRecord { for i := 0; i < len(LevelDetails); i++ { if LevelDetails[i].Id == id { @@ -387,6 +378,7 @@ func GetLevelDetails(id int) *LevelDetailsRecord { return nil } +// LoadLevelDetails loads level details records from levels.txt //nolint:funlen // Txt loader, makes no sense to split func LoadLevelDetails(file []byte) { dict := d2common.LoadDataDictionary(string(file)) diff --git a/d2common/d2data/d2datadict/map_helper.go b/d2common/d2data/d2datadict/map_helper.go index 3278dda4..c2018f5f 100644 --- a/d2common/d2data/d2datadict/map_helper.go +++ b/d2common/d2data/d2datadict/map_helper.go @@ -6,7 +6,7 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) -func MapHeaders(line string) map[string]int { +func mapHeaders(line string) map[string]int { m := make(map[string]int) r := strings.Split(line, "\t") @@ -17,8 +17,8 @@ func MapHeaders(line string) map[string]int { return m } -func MapLoadInt(r *[]string, mapping *map[string]int, field string) int { - index, ok := (*mapping)[field] +func mapLoadInt(r *[]string, mapping map[string]int, field string) int { + index, ok := (mapping)[field] if ok { return d2common.StringToInt(d2common.EmptyToZero(d2common.AsterToEmpty((*r)[index]))) } @@ -26,8 +26,8 @@ func MapLoadInt(r *[]string, mapping *map[string]int, field string) int { return 0 } -func MapLoadString(r *[]string, mapping *map[string]int, field string) string { - index, ok := (*mapping)[field] +func mapLoadString(r *[]string, mapping map[string]int, field string) string { + index, ok := (mapping)[field] if ok { return d2common.AsterToEmpty((*r)[index]) } @@ -35,12 +35,12 @@ func MapLoadString(r *[]string, mapping *map[string]int, field string) string { return "" } -func MapLoadBool(r *[]string, mapping *map[string]int, field string) bool { - return MapLoadInt(r, mapping, field) == 1 +func mapLoadBool(r *[]string, mapping map[string]int, field string) bool { + return mapLoadInt(r, mapping, field) == 1 } -func MapLoadUint8(r *[]string, mapping *map[string]int, field string) uint8 { - index, ok := (*mapping)[field] +func mapLoadUint8(r *[]string, mapping map[string]int, field string) uint8 { + index, ok := (mapping)[field] if ok { return d2common.StringToUint8(d2common.EmptyToZero(d2common.AsterToEmpty((*r)[index]))) } diff --git a/d2common/d2data/d2datadict/misc.go b/d2common/d2data/d2datadict/misc.go index fc4ff3e0..30339ba3 100644 --- a/d2common/d2data/d2datadict/misc.go +++ b/d2common/d2data/d2datadict/misc.go @@ -6,9 +6,11 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) -var MiscItems map[string]*ItemCommonRecord +// MiscItems stores all of the ItemCommonRecords for misc.txt +var MiscItems map[string]*ItemCommonRecord //nolint:gochecknoglobals // Currently global by design +// LoadMiscItems loads ItemCommonRecords from misc.txt func LoadMiscItems(file []byte) { - MiscItems = *LoadCommonItems(file, d2enum.InventoryItemTypeItem) + MiscItems = LoadCommonItems(file, d2enum.InventoryItemTypeItem) log.Printf("Loaded %d misc items", len(MiscItems)) } diff --git a/d2common/d2data/d2datadict/missiles.go b/d2common/d2data/d2datadict/missiles.go index 94bc76f4..90b2e6e6 100644 --- a/d2common/d2data/d2datadict/missiles.go +++ b/d2common/d2data/d2datadict/missiles.go @@ -7,17 +7,20 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// MissileCalcParam is a calculation parameter for a missile type MissileCalcParam struct { Param int Desc string } +// MissileCalc is a calculation for a missile type MissileCalc struct { Calc d2common.CalcString Desc string Params []MissileCalcParam } +// MissileLight has the parameters for missile lighting type MissileLight struct { Diameter int Flicker int @@ -26,24 +29,27 @@ type MissileLight struct { Blue uint8 } +// MissileAnimation stores parameters for a missile animation type MissileAnimation struct { + CelFileName string StepsBeforeVisible int StepsBeforeActive int - LoopAnimation bool - CelFileName string AnimationRate int // seems to do nothing AnimationLength int AnimationSpeed int - StartingFrame int // called "RandFrame" - HasSubLoop bool // runs after first animation ends + StartingFrame int // called "RandFrame" SubStartingFrame int SubEndingFrame int + LoopAnimation bool + HasSubLoop bool // runs after first animation ends } +// MissileCollision parameters for missile collision type MissileCollision struct { CollisionType int // controls the kind of collision // 0 = none, 1 = units only, 3 = normal (units, walls), // 6 = walls only, 8 = walls, units, and floors + TimerFrames int // how many frames to persist DestroyedUponCollision bool FriendlyFire bool LastCollide bool // unknown @@ -51,9 +57,9 @@ type MissileCollision struct { ClientCollision bool // unknown ClientSend bool // unclear UseCollisionTimer bool // after hit, use timer before dying - TimerFrames int // how many frames to persist } +// MissileDamage parameters for calculating missile physical damage type MissileDamage struct { MinDamage int MaxDamage int @@ -63,6 +69,7 @@ type MissileDamage struct { DamageSynergyPerCalc d2common.CalcString // works like synergy in skills.txt, not clear } +// MissileElementalDamage parameters for calculating missile elemental damage type MissileElementalDamage struct { Damage MissileDamage ElementType string @@ -70,20 +77,46 @@ type MissileElementalDamage struct { LevelDuration [3]int // 0,1,2, unknown level intervals, bonus duration per level } +// MissileRecord is a representation of a row from missiles.txt type MissileRecord struct { - Name string - Id int + ServerMovementCalc MissileCalc + ClientMovementCalc MissileCalc + ServerCollisionCalc MissileCalc + ClientCollisionCalc MissileCalc + ServerDamageCalc MissileCalc + Light MissileLight + Animation MissileAnimation + Collision MissileCollision + Damage MissileDamage + ElementalDamage MissileElementalDamage + SubMissile [3]string // 0,1,2 name of missiles spawned by movement function + HitSubMissile [4]string // 0,1,2 name of missiles spawned by collision function + ClientSubMissile [3]string // see above, but for client only + ClientHitSubMissile [4]string // see above, but for client only + Name string + + SkillName string // if not empty, the missile will refer to this skill instead of its own data for the following: + // "ResultFlags, HitFlags, HitShift, HitClass, SrcDamage (SrcDam in skills.txt!), + // MinDam, MinLevDam1-5, MaxDam, MaxLevDam1-5, DmgSymPerCalc, EType, EMin, EMinLev1-5, + // EMax, EMaxLev1-5, EDmgSymPerCalc, ELen, ELenLev1-3, ELenSymPerCalc" + + TravelSound string // name of sound to play during lifetime + // whether or not it loops depends on the specific sound's settings? + // if it doesn't loop, it's just a on-spawn sound effect + HitSound string // sound plays upon collision + ProgSound string // plays at "special events", like a mariachi band + + ProgOverlay string // name of an overlay from overlays.txt to use at special events + ExplosionMissile string // name of a missile from missiles.txt that is created upon collision + // or anytime it is destroyed if AlwaysExplode is true + + Id int //nolint:golint Id is the correct key ClientMovementFunc int ClientCollisionFunc int ServerMovementFunc int ServerCollisionFunc int ServerDamageFunc int - ServerMovementCalc MissileCalc - ClientMovementCalc MissileCalc - ServerCollisionCalc MissileCalc - ClientCollisionCalc MissileCalc - ServerDamageCalc MissileCalc Velocity int MaxVelocity int @@ -92,20 +125,46 @@ type MissileRecord struct { Range int LevelRangeBonus int - Light MissileLight - - Animation MissileAnimation - - Collision MissileCollision - XOffset int YOffset int ZOffset int Size int // diameter - DestroyedByTP bool // if true, destroyed when source player teleports to town - DestroyedByTPFrame int // see above, for client side, (this is a guess) which frame it vanishes on - CanDestroy bool // unknown + DestroyedByTPFrame int // see above, for client side, (this is a guess) which frame it vanishes on + + HolyFilterType int // specifies what this missile can hit + KnockbackPercent int // chance of knocking the target back, 0-100 + + TransparencyMode int // controls rendering + // 0 = normal, 1 = alpha blending (darker = more transparent) + // 2 = special (black and white?) + + ResultFlags int // unknown + // 4 = normal missiles, 5 = explosions, 8 = non-damaging missiles + HitFlags int // unknown + // 2 = explosions, 5 = freezing arrow + + HitShift int // damage is measured in 256s + // the actual damage is [damage] * 2 ^ [hitshift] + // e.g. 100 damage, 8 hitshift = 100 * 2 ^ 8 = 100 * 256 = 25600 + // (visually, the damage is this result / 256) + + SourceDamage int // 0-128, 128 is 100% + SourceMissDamage int // 0-128, 128 is 100% + // unknown, only used for poison clouds. + + HitClass int // controls clientside aesthetic effects for collisions + // particularly sound effects that are played on a hit + NumDirections int // count of dirs in the DCC loaded by CelFile + // apparently this value is no longer needed in D2 + LocalBlood int // blood effects? + // 0 = no blood, 1 = blood, 2 = blood and affected by open wounds + DamageReductionRate int // how many frames between applications of the + // magic_damage_reduced stat, so for instance on a 0 this stat applies every frame + // on a 3, only every 4th frame has damage reduced + + DestroyedByTP bool // if true, destroyed when source player teleports to town + CanDestroy bool // unknown UseAttackRating bool // if true, uses 'attack rating' to determine if it hits or misses // if false, has a 95% chance to hit. @@ -120,74 +179,25 @@ type MissileRecord struct { // if false, vanishes when spawned in town IgnoreBossModifiers bool // if true, doesn't get bonuses from boss mods IgnoreMultishot bool // if true, can't gain the mulitshot modifier - HolyFilterType int // specifies what this missile can hit // 0 = all units, 1 = undead only, 2 = demons only, 3 = all units (again?) CanBeSlowed bool // if true, is affected by skill_handofathena TriggersHitEvents bool // if true, triggers events that happen "upon getting hit" on targets TriggersGetHit bool // if true, can cause target to enter hit recovery mode SoftHit bool // unknown - KnockbackPercent int // chance of knocking the target back, 0-100 - - TransparencyMode int // controls rendering - // 0 = normal, 1 = alpha blending (darker = more transparent) - // 2 = special (black and white?) UseQuantity bool // if true, uses quantity // not clear what this means. Also apparently requires a special starting function in skills.txt AffectedByPierce bool // if true, affected by the pierce modifier and the Pierce skill SpecialSetup bool // unknown, only true for potions - MissileSkill bool // if true, applies elemental damage from items to the splash radius instead of normal damage modifiers - SkillName string // if not empty, the missile will refer to this skill instead of its own data for the following: - // "ResultFlags, HitFlags, HitShift, HitClass, SrcDamage (SrcDam in skills.txt!), - // MinDam, MinLevDam1-5, MaxDam, MaxLevDam1-5, DmgSymPerCalc, EType, EMin, EMinLev1-5, - // EMax, EMaxLev1-5, EDmgSymPerCalc, ELen, ELenLev1-3, ELenSymPerCalc" + MissileSkill bool // if true, applies elemental damage from items to the splash radius instead of normal damage modifiers - ResultFlags int // unknown - // 4 = normal missiles, 5 = explosions, 8 = non-damaging missiles - HitFlags int // unknown - // 2 = explosions, 5 = freezing arrow - - HitShift int // damage is measured in 256s - // the actual damage is [damage] * 2 ^ [hitshift] - // e.g. 100 damage, 8 hitshift = 100 * 2 ^ 8 = 100 * 256 = 25600 - // (visually, the damage is this result / 256) ApplyMastery bool // unknown - SourceDamage int // 0-128, 128 is 100% // percentage of source units attack properties to apply to the missile? // not only affects damage but also other modifiers like lifesteal and manasteal (need a complete list) // setting this to -1 "gets rid of SrcDmg from skills.txt", not clear what that means HalfDamageForTwoHander bool // if true, damage is halved when a two-handed weapon is used - SourceMissDamage int // 0-128, 128 is 100% - // unknown, only used for poison clouds. - Damage MissileDamage - ElementalDamage MissileElementalDamage - - HitClass int // controls clientside aesthetic effects for collisions - // particularly sound effects that are played on a hit - NumDirections int // count of dirs in the DCC loaded by CelFile - // apparently this value is no longer needed in D2 - LocalBlood int // blood effects? - // 0 = no blood, 1 = blood, 2 = blood and affected by open wounds - DamageReductionRate int // how many frames between applications of the - // magic_damage_reduced stat, so for instance on a 0 this stat applies every frame - // on a 3, only every 4th frame has damage reduced - - TravelSound string // name of sound to play during lifetime - // whether or not it loops depends on the specific sound's settings? - // if it doesn't loop, it's just a on-spawn sound effect - HitSound string // sound plays upon collision - ProgSound string // plays at "special events", like a mariachi band - - ProgOverlay string // name of an overlay from overlays.txt to use at special events - ExplosionMissile string // name of a missile from missiles.txt that is created upon collision - // or anytime it is destroyed if AlwaysExplode is true - - SubMissile [3]string // 0,1,2 name of missiles spawned by movement function - HitSubMissile [4]string // 0,1,2 name of missiles spawned by collision function - ClientSubMissile [3]string // see above, but for client only - ClientHitSubMissile [4]string // see above, but for client only } func createMissileRecord(line string) MissileRecord { @@ -292,9 +302,11 @@ func createMissileRecord(line string) MissileRecord { return result } +// Missiles stores all of the MissileRecords //nolint:gochecknoglobals // Currently global by design, only written once var Missiles map[int]*MissileRecord +// LoadMissiles loads MissileRecords from missiles.txt func LoadMissiles(file []byte) { Missiles = make(map[int]*MissileRecord) data := strings.Split(string(file), "\r\n")[1:] diff --git a/d2common/d2data/d2datadict/monpreset.go b/d2common/d2data/d2datadict/monpreset.go index 6ba04089..535032e5 100644 --- a/d2common/d2data/d2datadict/monpreset.go +++ b/d2common/d2data/d2datadict/monpreset.go @@ -6,9 +6,11 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// MonPresets stores monster presets //nolint:gochecknoglobals // Currently global by design, only written once var MonPresets [][]string +// LoadMonPresets loads monster presets from monpresets.txt func LoadMonPresets(file []byte) { dict := d2common.LoadDataDictionary(string(file)) numRecords := len(dict.Data) diff --git a/d2common/d2data/d2datadict/monstats.go b/d2common/d2data/d2datadict/monstats.go index 13ea7ece..2df33236 100644 --- a/d2common/d2data/d2datadict/monstats.go +++ b/d2common/d2data/d2datadict/monstats.go @@ -1,4 +1,3 @@ -// d2datadict contains loaders for the txt file data package d2datadict import ( @@ -29,7 +28,7 @@ type ( // column also links other hardcoded effects to the units, such as the // transparency on necro summons and the name-color change on unique boss // units (thanks to Kingpin for the info) - Id string // called `hcIdx` in monstats.txt + Id string // called `hcIdx` in monstats.txt //nolint:golint Id is the right key // BaseKey is an ID pointer of the “base” unit for this specific // monster type (ex. There are five types of “Fallen”; all of them have @@ -82,9 +81,11 @@ type ( SpawnAnimationKey string // called `spawnmode` in monstats.txt // MinionId1 is an Id of a minion that spawns when this monster is created + //nolint:golint Id is the right key MinionId1 string // called `minion1` in monstats.txt // MinionId2 is an Id of a minion that spawns when this monster is created + //nolint:golint Id is the right key MinionId2 string // called `minion2` in monstats.txt // SoundKeyNormal, SoundKeySpecial @@ -114,14 +115,14 @@ type ( // the ID Pointer to the skill (from Skills.txt) the monster will cast when // this specific slot is accessed by the AI. Which slots are used is // determined by the units AI. - SkillId1 string // called `Skill1` in monstats.txt - SkillId2 string // called `Skill2` in monstats.txt - SkillId3 string // called `Skill3` in monstats.txt - SkillId4 string // called `Skill4` in monstats.txt - SkillId5 string // called `Skill5` in monstats.txt - SkillId6 string // called `Skill6` in monstats.txt - SkillId7 string // called `Skill7` in monstats.txt - SkillId8 string // called `Skill8` in monstats.txt + SkillId1 string // called `Skill1` in monstats.txt //nolint:golint Id is the right key + SkillId2 string // called `Skill2` in monstats.txt //nolint:golint Id is the right key + SkillId3 string // called `Skill3` in monstats.txt //nolint:golint Id is the right key + SkillId4 string // called `Skill4` in monstats.txt //nolint:golint Id is the right key + SkillId5 string // called `Skill5` in monstats.txt //nolint:golint Id is the right key + SkillId6 string // called `Skill6` in monstats.txt //nolint:golint Id is the right key + SkillId7 string // called `Skill7` in monstats.txt //nolint:golint Id is the right key + SkillId8 string // called `Skill8` in monstats.txt //nolint:golint Id is the right key // SkillAnimation1 -- SkillAnimation8 // the graphical MODE (or SEQUENCE) this unit uses when it uses this skill. @@ -138,6 +139,7 @@ type ( // ID Pointer to the skill that controls this units damage. This is used for // the druids summons. IE their damage is specified solely by Skills.txt and // not by MonStats.txt. + //nolint:golint Id is the right key DamageSkillId string // called `SkillDamage` in monstats.txt // ElementAttackMode1 -- ElementAttackMode3 diff --git a/d2common/d2data/d2datadict/monstats2.go b/d2common/d2data/d2datadict/monstats2.go index 4c815b63..0912339a 100644 --- a/d2common/d2data/d2datadict/monstats2.go +++ b/d2common/d2data/d2datadict/monstats2.go @@ -7,6 +7,7 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) +// MonStats2Record is a representation of a row from monstats2.txt type MonStats2Record struct { // Key, the object ID MonStatEx feild from MonStat Key string @@ -225,9 +226,11 @@ type MonStats2Record struct { ResurrectSkill string } +// MonStats2 stores all of the MonStats2Records //nolint:gochecknoglobals // Current design issue var MonStats2 map[string]*MonStats2Record +// LoadMonStats2 loads MonStats2Records from monstats2.txt //nolint:funlen //just a big data loader func LoadMonStats2(file []byte) { dict := d2common.LoadDataDictionary(string(file)) diff --git a/d2common/d2data/d2datadict/object_lookup.go b/d2common/d2data/d2datadict/object_lookup.go index fcc5e82c..a7aba9cb 100644 --- a/d2common/d2data/d2datadict/object_lookup.go +++ b/d2common/d2data/d2datadict/object_lookup.go @@ -1,7896 +1,7900 @@ package d2datadict +import ( + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" +) + //nolint // This is a data dump file. var objectLookups = []ObjectLookupRecord{ - {Act: 1, Type: ObjectTypeCharacter, Id: 0, Description: "gheed-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 1, Description: "cain1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 2, Description: "akara-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 3, Description: "chicken-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 4, Description: "rogue1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 5, Description: "kashya-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 6, Description: "cow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 7, Description: "warriv1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 8, Description: "charsi-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 9, Description: "andariel-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 10, Description: "place_fallen-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 11, Description: "place_fallenshaman-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 12, Description: "place_bloodraven-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 13, Description: "cow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 14, Description: "camel-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 15, Description: "place_unique_pack-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 16, Description: "place_npc_pack-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 17, Description: "place_nothing-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 18, Description: "place_nothing-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 19, Description: "place_champion-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 20, Description: "navi-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 21, Description: "rogue1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 22, Description: "rogue3-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 23, Description: "gargoyletrap-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 24, Description: "place_fallennest-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 25, Description: "place_talkingrogue-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 26, Description: "place_fallen-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "BUC", S1: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 27, Description: "place_fallenshaman-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 28, Description: "trap-horzmissile-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 29, Description: "trap-vertmissile-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 30, Description: "place_group25-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 31, Description: "place_group50-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 32, Description: "place_group75-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 33, Description: "place_group100-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 34, Description: "Bishibosh-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 35, Description: "Bonebreak-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "SCM", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 36, Description: "Coldcrow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "LIT", LH: "LBB", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 37, Description: "Rakanishu-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 38, Description: "Treehead WoodFist-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 39, Description: "Griswold-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 40, Description: "The Countess-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 41, Description: "Pitspawn Fouldog-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 42, Description: "Flamespike the Crawler-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 43, Description: "Boneash-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "DES", RA: "LIT", LA: "LIT", S1: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 44, Description: "The Smith-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 45, Description: "The Cow King-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 46, Description: "Corpsefire-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 47, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 48, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 49, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 50, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 51, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 52, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 53, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 54, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 55, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 56, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 57, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 58, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 59, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 60, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 61, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 62, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 63, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 64, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 65, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 66, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 67, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 68, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 69, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 70, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 71, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 72, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 73, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 74, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 75, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 76, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 77, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 78, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 79, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 80, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 81, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 82, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 83, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 84, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 85, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 86, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 87, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 88, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 89, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 90, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 91, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 92, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 93, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 94, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 95, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 96, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 97, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 98, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 99, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 100, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 101, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 102, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 103, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 104, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 105, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 106, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 107, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 108, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 109, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 110, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 111, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 112, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 113, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 114, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 115, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 116, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 117, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 118, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 119, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 120, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 121, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 122, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 123, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 124, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 125, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 126, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 127, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 128, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 129, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 130, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 131, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 132, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 133, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 134, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 135, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 136, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 137, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 138, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 139, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 140, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 141, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 142, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 143, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 144, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 145, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 146, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 147, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 148, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 149, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 150, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 151, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 152, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 153, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 154, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 155, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 156, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 157, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 158, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 159, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 160, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 161, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 162, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 163, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 164, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 165, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 166, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 167, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 168, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 169, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 170, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 171, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 172, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 173, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 174, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 175, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 176, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 177, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 178, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 179, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 180, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 181, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 182, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 183, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 184, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 185, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 186, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 187, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 188, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 189, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 190, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 191, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 192, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 193, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 194, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 195, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 196, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 197, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 198, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 199, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 200, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 201, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 202, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 203, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 204, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 205, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 206, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 207, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 208, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 209, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 210, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 211, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 212, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 213, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 214, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 215, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 216, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 217, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 218, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 219, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 220, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 221, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 222, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 223, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 224, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 225, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 226, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 227, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 228, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 229, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 230, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 231, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 232, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 233, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 234, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 235, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 236, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 237, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 238, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 239, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 240, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 241, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 242, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 243, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 244, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 245, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 246, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 247, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 248, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 249, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 250, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 251, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 252, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 253, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 254, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 255, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 256, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 257, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 258, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 259, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 260, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 261, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 262, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 263, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 264, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 265, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 266, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 267, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 268, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 269, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 270, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 271, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 272, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 273, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 274, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 275, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 276, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 277, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 278, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 279, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 280, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 281, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 282, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 283, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 284, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 285, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 286, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 287, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 288, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 289, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 290, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 291, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 292, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 293, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 294, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 295, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 296, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 297, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 298, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 299, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 300, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 301, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 302, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 303, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 304, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 305, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 306, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 307, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 308, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 309, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 310, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 311, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 312, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 313, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 314, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 315, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 316, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 317, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 318, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 319, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 320, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 321, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 322, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 323, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 324, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 325, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 326, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 327, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 328, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 329, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 330, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 331, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 332, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 333, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 334, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 335, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 336, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 337, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 338, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 339, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 340, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 341, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 342, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 343, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 344, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 345, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 346, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 347, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 348, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 349, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 350, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 351, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 352, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 353, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 354, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 355, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 356, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 357, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 358, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 359, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 360, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 361, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 362, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 363, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 364, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 365, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 366, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 367, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 368, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 369, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 370, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 371, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 372, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 373, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 374, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 375, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 376, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 377, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 378, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 379, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 380, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 381, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 382, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 383, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 384, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 385, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 386, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 387, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 388, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 389, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 390, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 391, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 392, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 393, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 394, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 395, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 396, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 397, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 398, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 399, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 400, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 401, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 402, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 403, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 404, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 405, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 406, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 407, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 408, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 409, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 410, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 411, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 412, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 413, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 414, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 415, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 416, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 417, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 418, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 419, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 420, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 421, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 422, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 423, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 424, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 425, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 426, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 427, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 428, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 429, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 430, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 431, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 432, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 433, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 434, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 435, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 436, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 437, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 438, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 439, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 440, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 441, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 442, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 443, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 444, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 445, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 446, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 447, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 448, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 449, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 450, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 451, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 452, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 453, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 454, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 455, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 456, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 457, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 458, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 459, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 460, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 461, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 462, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 463, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 464, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 465, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 466, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 467, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 468, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 469, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 470, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 471, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 472, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 473, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 474, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 475, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 476, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 477, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 478, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 479, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 480, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 481, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 482, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 483, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 484, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 485, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 486, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 487, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 488, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 489, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 490, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 491, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 492, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 493, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 494, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 495, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 496, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 497, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 498, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 499, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 500, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 501, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 502, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 503, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 504, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 505, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 506, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 507, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 508, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 509, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 510, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 511, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 512, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 513, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 514, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 515, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 516, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 517, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 518, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 519, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 520, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 521, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 522, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 523, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 524, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 525, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 526, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 527, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 528, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 529, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 530, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 531, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 532, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 533, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 534, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 535, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 536, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 537, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 538, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 539, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 540, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 541, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 542, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 543, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 544, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 545, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 546, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 547, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 548, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 549, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 550, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 551, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 552, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 553, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 554, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 555, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 556, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 557, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 558, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 559, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 560, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 561, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 562, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 563, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 564, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 565, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 566, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 567, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 568, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 569, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 570, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 571, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 572, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 573, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 574, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 575, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 576, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 577, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 578, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 579, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 580, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 581, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 582, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 583, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 584, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 585, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 586, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 587, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 588, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 589, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 590, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 591, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 592, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 593, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 594, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 595, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 596, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 597, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 598, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 599, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 600, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 601, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 602, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 603, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 604, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 605, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 606, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 607, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 608, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 609, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 610, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 611, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 612, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 613, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 614, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 615, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 616, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 617, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 618, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 619, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 620, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 621, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 622, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 623, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 624, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 625, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 626, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 627, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 628, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 629, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 630, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 631, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 632, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 633, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 634, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 635, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 636, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 637, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 638, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 639, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 640, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 641, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 642, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 643, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 644, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 645, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 646, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 647, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 648, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 649, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 650, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 651, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 652, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 653, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 654, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 655, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 656, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 657, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 658, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 659, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 660, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 661, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 662, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 663, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 664, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 665, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 666, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 667, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 668, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 669, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 670, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 671, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 672, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 673, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 674, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 675, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 676, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 677, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 678, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 679, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 680, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 681, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 682, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 683, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 684, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 685, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 686, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 687, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 688, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 689, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 690, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 691, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 692, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 693, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 694, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 695, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 696, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 697, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 698, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 699, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 700, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 701, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 702, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 703, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 704, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 705, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 706, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 707, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 708, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 709, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 710, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 711, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 712, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 713, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 714, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 715, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 716, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 717, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 718, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 719, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 720, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 721, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 722, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 723, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 724, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 725, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 726, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 727, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 728, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 729, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 730, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 731, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 732, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 733, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 734, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 735, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 736, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 737, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 738, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 739, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 740, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 741, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 742, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 743, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 744, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 745, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 746, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 747, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 748, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 749, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 750, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 751, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 752, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 753, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 754, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 755, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 756, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 757, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 758, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 759, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 760, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 761, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 762, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 763, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 764, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 765, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 766, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 767, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 768, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 769, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 770, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 771, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 772, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 773, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 774, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 775, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 776, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 777, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 778, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 779, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 780, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 781, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 782, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 783, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 784, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 785, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 786, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 787, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 788, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 789, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 790, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 791, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 792, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 793, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 794, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 795, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 796, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 797, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 798, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 799, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 800, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 801, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 802, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 803, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 804, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 805, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 806, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 807, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 808, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 809, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 810, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 811, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 812, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 813, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 814, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 815, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 816, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 817, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 818, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 819, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 820, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 821, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 822, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 823, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 824, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 825, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 826, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 827, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 828, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 829, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 830, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 831, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 832, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 833, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 834, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 835, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 836, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 837, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 838, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 839, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 840, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 841, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 842, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 843, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 844, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 845, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 1, Type: ObjectTypeCharacter, Id: 846, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 0, Description: "rogue fountain (12)", ObjectsTxtId: 12, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 1, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 2, Description: "Fire, rogue camp (39)", ObjectsTxtId: 39, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 3, Description: "flag 1 (35)", ObjectsTxtId: 35, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 4, Description: "flag 2 (36)", ObjectsTxtId: 36, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 5, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 6, Description: "Cairn Stone, Alpha (17)", ObjectsTxtId: 17, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 7, Description: "Cairn Stone, Beta (18)", ObjectsTxtId: 18, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 8, Description: "Cairn Stone, Gamma (19)", ObjectsTxtId: 19, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 9, Description: "Cairn Stone, Delta (20)", ObjectsTxtId: 20, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 10, Description: "Cairn Stone, Lambda (21)", ObjectsTxtId: 21, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 11, Description: "Cairn Stone, Theta (inactive) (22)", ObjectsTxtId: 22, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 12, Description: "Tree of Inifuss (30)", ObjectsTxtId: 30, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 13, Description: "water effect 2 (70)", ObjectsTxtId: 70, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 14, Description: "water effect 2 (70)", ObjectsTxtId: 70, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 15, Description: "water effect 1 (69)", ObjectsTxtId: 69, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 16, Description: "water effect 1 (69)", ObjectsTxtId: 69, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 17, Description: "brazier (29)", ObjectsTxtId: 29, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 18, Description: "bloody fountain (31)", ObjectsTxtId: 31, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 19, Description: "candles 1 (33)", ObjectsTxtId: 33, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 20, Description: "candles 2 (34)", ObjectsTxtId: 34, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 21, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 22, Description: "Invisible object (61)", ObjectsTxtId: 61, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 23, Description: "Invisible river sound 1 (65)", ObjectsTxtId: 65, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 24, Description: "Invisible river sound 2 (66)", ObjectsTxtId: 66, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 25, Description: "The Moldy Tome (8)", ObjectsTxtId: 8, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 26, Description: "Cain's Gibbet (26)", ObjectsTxtId: 26, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 27, Description: "Undefiled Grave (28)", ObjectsTxtId: 28, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 28, Description: "bubbling pool of blood (82)", ObjectsTxtId: 82, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 29, Description: "Shrine (2)", ObjectsTxtId: 2, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 30, Description: "Shrine, forest altar (81)", ObjectsTxtId: 81, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 31, Description: "Shrine, healing well (84)", ObjectsTxtId: 84, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 32, Description: "Shrine, horn (83)", ObjectsTxtId: 83, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 33, Description: "invisible town sound (78)", ObjectsTxtId: 78, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 34, Description: "invisible object (61)", ObjectsTxtId: 61, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 35, Description: "flies (103)", ObjectsTxtId: 103, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 36, Description: "Horadric Malus (108)", ObjectsTxtId: 108, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 37, Description: "Waypoint (119)", ObjectsTxtId: 119, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WP", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 38, Description: "error ? (-580)", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 39, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 40, Description: "Hidden Stash, rock wilderness (159)", ObjectsTxtId: 159, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 41, Description: "Hiding Spot, cliff wilderness (163)", ObjectsTxtId: 163, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 42, Description: "Hollow Log (169)", ObjectsTxtId: 169, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 43, Description: "Fire, small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 44, Description: "Fire, medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 45, Description: "Fire, large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 46, Description: "Armor Stand, 1R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 47, Description: "Armor Stand, 2L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 48, Description: "Weapon Rack, 1R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 49, Description: "Weapon Rack, 2L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 50, Description: "Bookshelf L (179)", ObjectsTxtId: 179, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 51, Description: "Bookshelf R (180)", ObjectsTxtId: 180, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 52, Description: "Waypoint (119)", ObjectsTxtId: 119, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WP", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 53, Description: "Waypoint, wilderness (157)", ObjectsTxtId: 157, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WN", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 54, Description: "Bed R (247)", ObjectsTxtId: 247, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 55, Description: "Bed L (248)", ObjectsTxtId: 248, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 56, Description: "Hidden Stash, rock wilderness (155)", ObjectsTxtId: 155, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 57, Description: "Loose Rock, wilderness (174)", ObjectsTxtId: 174, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 58, Description: "Loose Boulder, wilderness (175)", ObjectsTxtId: 175, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 59, Description: "Chest, R Large (139)", ObjectsTxtId: 139, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 60, Description: "Chest, R Tallskinney (140)", ObjectsTxtId: 140, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 61, Description: "Chest, R Med (141)", ObjectsTxtId: 141, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 62, Description: "Chest, L (144)", ObjectsTxtId: 144, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 63, Description: "Chest, L Large (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 64, Description: "Chest, 1L general (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 65, Description: "Chest, 2R general (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 66, Description: "Chest, 3R general (242)", ObjectsTxtId: 242, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 67, Description: "Dead Rogue, 1 (54)", ObjectsTxtId: 54, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 68, Description: "Dead Rogue, 2 (55)", ObjectsTxtId: 55, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 69, Description: "Dead Rogue, rolling (56)", ObjectsTxtId: 56, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 70, Description: "Dead Rogue, on a stick 1 (57)", ObjectsTxtId: 57, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 71, Description: "Dead Rogue, on a stick 2 (58)", ObjectsTxtId: 58, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 72, Description: "Skeleton (171)", ObjectsTxtId: 171, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 73, Description: "Guard Corpse, on a stick (178)", ObjectsTxtId: 178, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 74, Description: "Body, burning town 1 (239)", ObjectsTxtId: 239, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 75, Description: "Body, burning town 2 (245)", ObjectsTxtId: 245, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 76, Description: "A Trap, exploding cow (250)", ObjectsTxtId: 250, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "EW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 77, Description: "Well, fountain 1 (111)", ObjectsTxtId: 111, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 78, Description: "Well, cavewell caves (138)", ObjectsTxtId: 138, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 79, Description: "Well, cathedralwell inside (132)", ObjectsTxtId: 132, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 80, Description: "Shrine, mana well 1 (164)", ObjectsTxtId: 164, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 81, Description: "Shrine, mana well 2 (165)", ObjectsTxtId: 165, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 82, Description: "Shrine, healthorama (77)", ObjectsTxtId: 77, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 83, Description: "Shrine, bull shrine, health, tombs (85)", ObjectsTxtId: 85, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 84, Description: "stele,magic shrine, stone, desert (86)", ObjectsTxtId: 86, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 85, Description: "Shrine, cathedral (262)", ObjectsTxtId: 262, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 86, Description: "Shrine, jail 1 (263)", ObjectsTxtId: 263, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JB", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 87, Description: "Shrine, jail 2 (264)", ObjectsTxtId: 264, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JD", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 88, Description: "Shrine, jail 3 (265)", ObjectsTxtId: 265, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JF", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 89, Description: "Casket, 1 R (50)", ObjectsTxtId: 50, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 90, Description: "Casket, 2 L (51)", ObjectsTxtId: 51, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 91, Description: "Casket, 3 (79)", ObjectsTxtId: 79, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 92, Description: "Casket, 4 (53)", ObjectsTxtId: 53, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 93, Description: "Casket, 5 (1)", ObjectsTxtId: 1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 94, Description: "Casket, 6 (3)", ObjectsTxtId: 3, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 95, Description: "Barrel (7)", ObjectsTxtId: 7, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 96, Description: "Crate (46)", ObjectsTxtId: 46, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 97, Description: "torch 2 wall (38)", ObjectsTxtId: 38, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 98, Description: "cabin stool (256)", ObjectsTxtId: 256, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 99, Description: "cabin wood (257)", ObjectsTxtId: 257, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 100, Description: "cabin wood more (258)", ObjectsTxtId: 258, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 101, Description: "Door, secret 1 (129)", ObjectsTxtId: 129, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "H2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 102, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 103, Description: "Wirt's body (268)", ObjectsTxtId: 268, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 104, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 105, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 106, Description: "hell light source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 107, Description: "hell light source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 108, Description: "hell light source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 109, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 110, Description: "cain start position (385)", ObjectsTxtId: 385, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 111, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 112, Description: "Red Portal (321)", ObjectsTxtId: 321, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 113, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 114, Description: "Myhrginoc's Book of Lore", ObjectsTxtId: 8, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 115, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 116, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 117, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 118, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 119, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 120, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 121, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 122, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 123, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 124, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 125, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 126, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 127, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 128, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 129, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 130, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 131, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 132, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 133, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 134, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 135, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 136, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 137, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 138, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 139, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 140, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 141, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 142, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 143, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 144, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 145, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 146, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 147, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 148, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 149, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 1, Type: ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 0, Description: "warriv2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ss", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 1, Description: "atma-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ss", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 2, Description: "drognan-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 3, Description: "fara-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 4, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 5, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 6, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 7, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 8, Description: "greiz-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 9, Description: "elzix-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 10, Description: "lysander-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 11, Description: "meshif1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 12, Description: "geglash-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 13, Description: "jerhyn-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 14, Description: "place_unique_pack-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 15, Description: "place_npc_pack-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 16, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 17, Description: "summoner-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 18, Description: "Radament-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 19, Description: "duriel-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 20, Description: "cain2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 21, Description: "place_champion-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 22, Description: "act2male-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "YNG", TR: "MED", LG: "MED", S1: "FEZ", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 23, Description: "act2female-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 24, Description: "act2guard1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 25, Description: "act2vendor1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 26, Description: "act2vendor2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 27, Description: "place_tightspotboss-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 28, Description: "fish-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 29, Description: "place_talkingguard-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 30, Description: "place_dumbguard-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 31, Description: "place_maggot-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 32, Description: "place_maggotegg-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 33, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 34, Description: "gargoyletrap-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 35, Description: "trap-horzmissile-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 36, Description: "trap-vertmissile-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 37, Description: "place_group25-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 38, Description: "place_group50-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 39, Description: "place_group75-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 40, Description: "place_group100-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 41, Description: "lightningspire-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "A1", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 42, Description: "firetower-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 13, Base: "/Data/Global/Monsters", Token: "PB", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 43, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 44, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 45, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 46, Description: "Bloodwitch the Wild-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MED", RA: "MED", LA: "MED", LH: "WHP", SH: "BUC", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", ColorMap: "/Data/Global/Monsters/PW/COF/Palshift.dat", Index: 3}, - {Act: 2, Type: ObjectTypeCharacter, Id: 47, Description: "Fangskin-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/SD/COF/Palshift.dat", Index: 6}, - {Act: 2, Type: ObjectTypeCharacter, Id: 48, Description: "Beetleburst-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 5, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "MED", TR: "LIT", RA: "HVY", ColorMap: "/Data/Global/Monsters/SC/COF/Palshift.dat", Index: 6}, - {Act: 2, Type: ObjectTypeCharacter, Id: 49, Description: "Leatherarm-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/MM/COF/Palshift.dat", Index: 7}, - {Act: 2, Type: ObjectTypeCharacter, Id: 50, Description: "Coldworm the Burrower-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 51, Description: "Fire Eye-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/SR/COF/Palshift.dat", Index: 5}, - {Act: 2, Type: ObjectTypeCharacter, Id: 52, Description: "Dark Elder-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", S1: "MED", S2: "MED", S3: "BLD", ColorMap: "/Data/Global/Monsters/ZM/COF/Palshift.dat", Index: 6}, - {Act: 2, Type: ObjectTypeCharacter, Id: 53, Description: "Ancient Kaa the Soulless-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/GY/COF/Palshift.dat", Index: 4}, - {Act: 2, Type: ObjectTypeCharacter, Id: 54, Description: "act2guard4-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 55, Description: "act2guard5-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 56, Description: "sarcophagus-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 57, Description: "tyrael1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 58, Description: "skeleton5-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "AXE", SH: "LRG", S1: "DES", S2: "DES", S3: "LIT", ColorMap: "/Data/Global/Monsters/SK/COF/Palshift.dat", Index: 7}, - {Act: 2, Type: ObjectTypeCharacter, Id: 59, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 60, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 61, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 62, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 63, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 64, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 65, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 66, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 67, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 68, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 69, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 70, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 71, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 72, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 73, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 74, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 75, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 76, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 77, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 78, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 79, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 80, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 81, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 82, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 83, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 84, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 85, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 86, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 87, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 88, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 89, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 90, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 91, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 92, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 93, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 94, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 95, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 96, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 97, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 98, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 99, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 100, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 101, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 102, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 103, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 104, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 105, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 106, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 107, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 108, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 109, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 110, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 111, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 112, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 113, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 114, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 115, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 116, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 117, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 118, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 119, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 120, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 121, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 122, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 123, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 124, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 125, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 126, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 127, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 128, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 129, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 130, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 131, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 132, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 133, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 134, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 135, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 136, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 137, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 138, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 139, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 140, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 141, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 142, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 143, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 144, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 145, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 146, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 147, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 148, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 149, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 150, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 151, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 152, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 153, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 154, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 155, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 156, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 157, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 158, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 159, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 160, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 161, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 162, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 163, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 164, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 165, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 166, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 167, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 168, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 169, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 170, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 171, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 172, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 173, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 174, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 175, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 176, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 177, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 178, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 179, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 180, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 181, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 182, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 183, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 184, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 185, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 186, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 187, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 188, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 189, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 190, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 191, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 192, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 193, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 194, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 195, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 196, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 197, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 198, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 199, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 200, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 201, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 202, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 203, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 204, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 205, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 206, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 207, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 208, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 209, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 210, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 211, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 212, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 213, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 214, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 215, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 216, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 217, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 218, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 219, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 220, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 221, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 222, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 223, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 224, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 225, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 226, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 227, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 228, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 229, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 230, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 231, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 232, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 233, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 234, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 235, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 236, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 237, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 238, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 239, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 240, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 241, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 242, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 243, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 244, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 245, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 246, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 247, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 248, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 249, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 250, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 251, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 252, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 253, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 254, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 255, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 256, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 257, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 258, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 259, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 260, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 261, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 262, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 263, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 264, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 265, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 266, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 267, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 268, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 269, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 270, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 271, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 272, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 273, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 274, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 275, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 276, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 277, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 278, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 279, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 280, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 281, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 282, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 283, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 284, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 285, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 286, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 287, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 288, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 289, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 290, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 291, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 292, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 293, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 294, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 295, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 296, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 297, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 298, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 299, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 300, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 301, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 302, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 303, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 304, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 305, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 306, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 307, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 308, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 309, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 310, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 311, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 312, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 313, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 314, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 315, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 316, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 317, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 318, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 319, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 320, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 321, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 322, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 323, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 324, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 325, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 326, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 327, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 328, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 329, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 330, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 331, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 332, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 333, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 334, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 335, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 336, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 337, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 338, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 339, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 340, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 341, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 342, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 343, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 344, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 345, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 346, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 347, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 348, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 349, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 350, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 351, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 352, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 353, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 354, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 355, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 356, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 357, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 358, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 359, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 360, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 361, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 362, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 363, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 364, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 365, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 366, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 367, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 368, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 369, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 370, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 371, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 372, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 373, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 374, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 375, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 376, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 377, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 378, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 379, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 380, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 381, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 382, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 383, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 384, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 385, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 386, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 387, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 388, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 389, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 390, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 391, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 392, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 393, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 394, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 395, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 396, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 397, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 398, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 399, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 400, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 401, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 402, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 403, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 404, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 405, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 406, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 407, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 408, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 409, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 410, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 411, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 412, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 413, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 414, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 415, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 416, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 417, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 418, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 419, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 420, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 421, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 422, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 423, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 424, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 425, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 426, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 427, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 428, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 429, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 430, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 431, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 432, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 433, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 434, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 435, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 436, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 437, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 438, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 439, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 440, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 441, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 442, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 443, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 444, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 445, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 446, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 447, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 448, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 449, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 450, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 451, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 452, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 453, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 454, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 455, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 456, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 457, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 458, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 459, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 460, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 461, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 462, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 463, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 464, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 465, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 466, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 467, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 468, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 469, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 470, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 471, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 472, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 473, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 474, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 475, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 476, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 477, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 478, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 479, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 480, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 481, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 482, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 483, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 484, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 485, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 486, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 487, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 488, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 489, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 490, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 491, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 492, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 493, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 494, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 495, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 496, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 497, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 498, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 499, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 500, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 501, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 502, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 503, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 504, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 505, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 506, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 507, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 508, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 509, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 510, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 511, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 512, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 513, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 514, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 515, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 516, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 517, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 518, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 519, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 520, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 521, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 522, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 523, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 524, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 525, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 526, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 527, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 528, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 529, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 530, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 531, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 532, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 533, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 534, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 535, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 536, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 537, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 538, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 539, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 540, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 541, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 542, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 543, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 544, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 545, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 546, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 547, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 548, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 549, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 550, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 551, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 552, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 553, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 554, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 555, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 556, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 557, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 558, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 559, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 560, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 561, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 562, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 563, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 564, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 565, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 566, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 567, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 568, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 569, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 570, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 571, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 572, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 573, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 574, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 575, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 576, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 577, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 578, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 579, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 580, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 581, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 582, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 583, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 584, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 585, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 586, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 587, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 588, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 589, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 590, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 591, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 592, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 593, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 594, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 595, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 596, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 597, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 598, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 599, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 600, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 601, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 602, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 603, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 604, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 605, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 606, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 607, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 608, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 609, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 610, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 611, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 612, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 613, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 614, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 615, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 616, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 617, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 618, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 619, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 620, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 621, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 622, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 623, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 624, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 625, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 626, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 627, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 628, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 629, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 630, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 631, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 632, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 633, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 634, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 635, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 636, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 637, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 638, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 639, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 640, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 641, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 642, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 643, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 644, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 645, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 646, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 647, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 648, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 649, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 650, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 651, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 652, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 653, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 654, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 655, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 656, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 657, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 658, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 659, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 660, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 661, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 662, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 663, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 664, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 665, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 666, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 667, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 668, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 669, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 670, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 671, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 672, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 673, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 674, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 675, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 676, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 677, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 678, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 679, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 680, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 681, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 682, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 683, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 684, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 685, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 686, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 687, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 688, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 689, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 690, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 691, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 692, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 693, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 694, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 695, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 696, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 697, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 698, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 699, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 700, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 701, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 702, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 703, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 704, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 705, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 706, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 707, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 708, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 709, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 710, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 711, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 712, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 713, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 714, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 715, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 716, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 717, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 718, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 719, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 720, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 721, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 722, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 723, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 724, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 725, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 726, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 727, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 728, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 729, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 730, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 731, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 732, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 733, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 734, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 735, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 736, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 737, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 738, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 739, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 740, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 741, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 742, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 743, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 744, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 745, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 746, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 747, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 748, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 749, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 750, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 751, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 752, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 753, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 754, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 755, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 756, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 757, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 758, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 759, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 760, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 761, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 762, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 763, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 764, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 765, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 766, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 767, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 768, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 769, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 770, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 771, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 772, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 773, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 774, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 775, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 776, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 777, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 778, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 779, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 780, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 781, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 782, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 783, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 784, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 785, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 786, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 787, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 788, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 789, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 790, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 791, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 792, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 793, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 794, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 795, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 796, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 797, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 798, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 799, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 800, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 801, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 802, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 803, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 804, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 805, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 806, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 807, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 808, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 809, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 810, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 811, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 812, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 813, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 814, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 815, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 816, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 817, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 818, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 819, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 820, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 821, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 822, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 823, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 824, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 825, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 826, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 827, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 828, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 829, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 830, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 831, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 832, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 833, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 834, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 835, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 836, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 837, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 838, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 839, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 840, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 841, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 842, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 843, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 844, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 845, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 846, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 847, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 848, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 849, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 850, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 851, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 852, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 853, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 854, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 855, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 856, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 857, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 858, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 859, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 860, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 861, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 862, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 863, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 864, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 865, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 866, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 867, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 868, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 869, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 870, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 871, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 872, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 873, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 874, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 875, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 876, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 877, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 878, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 879, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 880, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 881, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 882, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 883, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 884, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 885, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 886, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 887, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 888, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 889, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 890, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 891, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 892, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 893, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 894, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 895, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 896, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 897, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 898, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 899, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 900, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 901, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 902, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 903, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 904, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 2, Type: ObjectTypeCharacter, Id: 905, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 0, Description: "Trap Door (74)", ObjectsTxtId: 74, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 1, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 2, Description: "Teleport Pad 1 (192)", ObjectsTxtId: 192, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 3, Description: "Teleport Pad 2 (304)", ObjectsTxtId: 304, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 4, Description: "Teleport Pad 3 (305)", ObjectsTxtId: 305, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AA", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 5, Description: "Teleport Pad 4 (306)", ObjectsTxtId: 306, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AA", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 6, Description: "brazier 3 (101)", ObjectsTxtId: 101, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 7, Description: "brazier floor (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 8, Description: "invisible town sound (78)", ObjectsTxtId: 78, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 9, Description: "flies (103)", ObjectsTxtId: 103, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 10, Description: "waypoint (156)", ObjectsTxtId: 156, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 11, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 12, Description: "Well, cathedralwell inside (132)", ObjectsTxtId: 132, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 13, Description: "Door, secret 1 (129)", ObjectsTxtId: 129, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "H2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 14, Description: "Horazon's Journal (357)", ObjectsTxtId: 357, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 15, Description: "Door, Tyrael's door (153)", ObjectsTxtId: 153, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 16, Description: "Jerhyn, placeholder 1 (121)", ObjectsTxtId: 121, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 17, Description: "Jerhyn, placeholder 2 (122)", ObjectsTxtId: 122, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 18, Description: "Closed Door, slimedoor R (229)", ObjectsTxtId: 229, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 19, Description: "Closed Door, slimedoor L (230)", ObjectsTxtId: 230, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 20, Description: "a Trap, test data floortrap (196)", ObjectsTxtId: 196, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 21, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 22, Description: "a Trap, spikes tombs floortrap (261)", ObjectsTxtId: 261, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 23, Description: "Tainted Sun Altar (149)", ObjectsTxtId: 149, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZA", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 24, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 25, Description: "Large Urn, urn 1 (4)", ObjectsTxtId: 4, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 26, Description: "Corona, urn 2 (9)", ObjectsTxtId: 9, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 27, Description: "Urn, urn 3 (52)", ObjectsTxtId: 52, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 28, Description: "Large Urn, urn 4 (94)", ObjectsTxtId: 94, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 29, Description: "Large Urn, urn 5 (95)", ObjectsTxtId: 95, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 30, Description: "Jug, desert 1 (142)", ObjectsTxtId: 142, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 31, Description: "Jug, desert 2 (143)", ObjectsTxtId: 143, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 32, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 33, Description: "Chest, L Large 1 (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 34, Description: "Chest, L Large tomb 1 (87)", ObjectsTxtId: 87, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 35, Description: "Chest, R Large tomb 2 (88)", ObjectsTxtId: 88, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 36, Description: "Chest, R Med (146)", ObjectsTxtId: 146, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 37, Description: "Chest, R Med (146)", ObjectsTxtId: 146, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 38, Description: "Chest, R Large desert tomb (147)", ObjectsTxtId: 147, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 39, Description: "Chest, L Large desert tomb (148)", ObjectsTxtId: 148, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 40, Description: "Chest, 1L general (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 41, Description: "Chest, 2R general (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 42, Description: "Chest, 3R general (242)", ObjectsTxtId: 242, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 43, Description: "Chest, 3L general (243)", ObjectsTxtId: 243, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 44, Description: "Chest, L Med (176)", ObjectsTxtId: 176, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 45, Description: "Chest, L Large 2 (177)", ObjectsTxtId: 177, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 46, Description: "Chest, L Tallskinney (198)", ObjectsTxtId: 198, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 47, Description: "Rat's Nest (246)", ObjectsTxtId: 246, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 48, Description: "brazier (29)", ObjectsTxtId: 29, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 49, Description: "Flame, fire small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 50, Description: "Flame, fire medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 51, Description: "Fire, fire large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 52, Description: "flame, no damage (273)", ObjectsTxtId: 273, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 53, Description: "brazier celler (283)", ObjectsTxtId: 283, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 54, Description: "Shrine, bull health tombs (85)", ObjectsTxtId: 85, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 55, Description: "stele, magic shrine stone desert (86)", ObjectsTxtId: 86, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 56, Description: "Shrine, palace health R harom arcane (109)", ObjectsTxtId: 109, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 57, Description: "Shrine, snake woman magic tomb arcane (116)", ObjectsTxtId: 116, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 58, Description: "Shrine, dshrine2 (134)", ObjectsTxtId: 134, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 59, Description: "Shrine, desertshrine 3 (135)", ObjectsTxtId: 135, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 60, Description: "Shrine, dshrine 1 a (136)", ObjectsTxtId: 136, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 61, Description: "Shrine, dshrine 1 b (150)", ObjectsTxtId: 150, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZV", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 62, Description: "Shrine, dshrine 4 (151)", ObjectsTxtId: 151, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZE", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 63, Description: "Shrine, health well desert (172)", ObjectsTxtId: 172, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 64, Description: "Shrine, mana well7 desert (173)", ObjectsTxtId: 173, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 65, Description: "Shrine, magic shrine sewers (279)", ObjectsTxtId: 279, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WJ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 66, Description: "Shrine, healthwell sewers (280)", ObjectsTxtId: 280, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 67, Description: "Shrine, manawell sewers (281)", ObjectsTxtId: 281, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 68, Description: "Shrine, magic shrine sewers dungeon (282)", ObjectsTxtId: 282, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 69, Description: "Shrine, mana well3 tomb (166)", ObjectsTxtId: 166, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 70, Description: "Shrine, mana well4 harom (167)", ObjectsTxtId: 167, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 71, Description: "Well, fountain2 desert tomb (113)", ObjectsTxtId: 113, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 72, Description: "Well, desertwell tomb (137)", ObjectsTxtId: 137, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 73, Description: "Sarcophagus, mummy coffin L tomb (89)", ObjectsTxtId: 89, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 74, Description: "Armor stand, 1 R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 75, Description: "Armor stand, 2 L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 76, Description: "Weapon Rack, 1 R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 77, Description: "Weapon Rack, 2 L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 78, Description: "Corpse, guard (154)", ObjectsTxtId: 154, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 79, Description: "Skeleton (171)", ObjectsTxtId: 171, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 80, Description: "Guard Corpse, on stick (178)", ObjectsTxtId: 178, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 81, Description: "Corpse, guard 2 (270)", ObjectsTxtId: 270, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 82, Description: "Corpse, villager 1 (271)", ObjectsTxtId: 271, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 83, Description: "Corpse, villager 2 (272)", ObjectsTxtId: 272, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 84, Description: "Goo Pile, for sand maggot lair (266)", ObjectsTxtId: 266, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 85, Description: "Hidden Stash, tiny pixel shaped (274)", ObjectsTxtId: 274, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 86, Description: "Rat's Nest, sewers (244)", ObjectsTxtId: 244, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 87, Description: "Sarcophagus, anubis coffin tomb (284)", ObjectsTxtId: 284, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 88, Description: "waypoint, celler (288)", ObjectsTxtId: 288, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 89, Description: "Portal to, arcane portal (298)", ObjectsTxtId: 298, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 90, Description: "Bed, harum (289)", ObjectsTxtId: 289, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 91, Description: "wall torch L for tombs (296)", ObjectsTxtId: 296, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QD", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 92, Description: "wall torch R for tombs (297)", ObjectsTxtId: 297, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 93, Description: "brazier small desert town tombs (287)", ObjectsTxtId: 287, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 94, Description: "brazier tall desert town tombs (286)", ObjectsTxtId: 286, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 95, Description: "brazier general sewers tomb desert (285)", ObjectsTxtId: 285, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 96, Description: "Closed Door, iron grate L (290)", ObjectsTxtId: 290, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 97, Description: "Closed Door, iron grate R (291)", ObjectsTxtId: 291, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 98, Description: "Door, wooden grate L (292)", ObjectsTxtId: 292, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 99, Description: "Door, wooden grate R (293)", ObjectsTxtId: 293, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 100, Description: "Door, wooden L (294)", ObjectsTxtId: 294, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 101, Description: "Closed Door, wooden R (295)", ObjectsTxtId: 295, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 102, Description: "Shrine, arcane (133)", ObjectsTxtId: 133, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 103, Description: "Magic Shrine, arcane (303)", ObjectsTxtId: 303, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HD", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 104, Description: "Magic Shrine, haram 1 (299)", ObjectsTxtId: 299, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HB", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 105, Description: "Magic Shrine, haram 2 (300)", ObjectsTxtId: 300, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HC", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 106, Description: "maggot well health (301)", ObjectsTxtId: 301, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 107, Description: "Shrine, maggot well mana (302)", ObjectsTxtId: 302, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 108, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 109, Description: "Chest, horadric cube (354)", ObjectsTxtId: 354, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 110, Description: "Tomb signs in Arcane (582)", ObjectsTxtId: 582, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 111, Description: "Dead Guard, harem 1 (314)", ObjectsTxtId: 314, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 112, Description: "Dead Guard, harem 2 (315)", ObjectsTxtId: 315, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 113, Description: "Dead Guard, harem 3 (316)", ObjectsTxtId: 316, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 114, Description: "Dead Guard, harem 4 (317)", ObjectsTxtId: 317, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 115, Description: "Waypoint, sewer (323)", ObjectsTxtId: 323, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 116, Description: "Well, tomb (322)", ObjectsTxtId: 322, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 117, Description: "drinker (110)", ObjectsTxtId: 110, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 118, Description: "gesturer (112)", ObjectsTxtId: 112, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N6", Mode: "S2", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 119, Description: "turner (114)", ObjectsTxtId: 114, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 120, Description: "Chest, horadric scroll (355)", ObjectsTxtId: 355, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 121, Description: "Chest, staff of kings (356)", ObjectsTxtId: 356, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 122, Description: "Horazon's Journal (357)", ObjectsTxtId: 357, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 123, Description: "helllight source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 124, Description: "helllight source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 125, Description: "helllight source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 126, Description: "orifice, place Horadric Staff (152)", ObjectsTxtId: 152, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 127, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 128, Description: "Chest, arcane big L (387)", ObjectsTxtId: 387, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 129, Description: "Chest, arcane big R (389)", ObjectsTxtId: 389, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 130, Description: "Chest, arcane small L (390)", ObjectsTxtId: 390, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 131, Description: "Chest, arcane small R (391)", ObjectsTxtId: 391, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 132, Description: "Casket, arcane (388)", ObjectsTxtId: 388, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 133, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 134, Description: "Waypoint, valley (402)", ObjectsTxtId: 402, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YI", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 135, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 136, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 137, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 138, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 139, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 140, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 141, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 142, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 143, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 144, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 145, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 146, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 147, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 148, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 149, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 2, Type: ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 0, Description: "cain3-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 1, Description: "place_champion-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 2, Description: "act3male-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "MED", RA: "MED", LA: "MED", RH: "BAN", LH: "BUK", S1: "HBD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 3, Description: "act3female-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "BTP", LG: "DLN", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 4, Description: "asheara-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 5, Description: "hratli-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 6, Description: "alkor-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 7, Description: "ormus-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 8, Description: "meshif2-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 9, Description: "place_amphibian-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 10, Description: "place_tentacle_ns-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 11, Description: "place_tentacle_ew-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 5, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 12, Description: "place_fetishnest-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 13, Description: "trap-horzmissile-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 14, Description: "trap-vertmissile-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 15, Description: "natalya-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 16, Description: "place_mosquitonest-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 17, Description: "place_group25-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 18, Description: "place_group50-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 19, Description: "place_group75-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 20, Description: "place_group100-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 21, Description: "compellingorb-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 22, Description: "mephisto-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 23, Description: "trap-melee-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 24, Description: "mephistospirit-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 2, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 25, Description: "act3hire-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "LSD", SH: "KIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 26, Description: "place_fetish-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 27, Description: "place_fetishshaman-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 28, Description: "Web Mage the Burning-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 29, Description: "Witch Doctor Endugu-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 30, Description: "Stormtree-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 31, Description: "Sarina the Battlemaid-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 32, Description: "Icehawk Riftwing-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 33, Description: "Ismail Vilehand-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 34, Description: "Geleb Flamefinger-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 35, Description: "Bremm Sparkfist-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 36, Description: "Toorc Icefist-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 37, Description: "Wyand Voidfinger-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 38, Description: "Maffer Dragonhand-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 39, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 40, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 41, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 42, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 43, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 44, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 45, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 46, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 47, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 48, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 49, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 50, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 51, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 52, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 53, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 54, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 55, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 56, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 57, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 58, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 59, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 60, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 61, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 62, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 63, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 64, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 65, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 66, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 67, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 68, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 69, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 70, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 71, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 72, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 73, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 74, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 75, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 76, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 77, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 78, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 79, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 80, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 81, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 82, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 83, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 84, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 85, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 86, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 87, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 88, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 89, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 90, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 91, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 92, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 93, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 94, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 95, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 96, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 97, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 98, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 99, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 100, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 101, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 102, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 103, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 104, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 105, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 106, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 107, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 108, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 109, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 110, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 111, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 112, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 113, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 114, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 115, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 116, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 117, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 118, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 119, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 120, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 121, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 122, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 123, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 124, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 125, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 126, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 127, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 128, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 129, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 130, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 131, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 132, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 133, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 134, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 135, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 136, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 137, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 138, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 139, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 140, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 141, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 142, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 143, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 144, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 145, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 146, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 147, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 148, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 149, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 150, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 151, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 152, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 153, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 154, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 155, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 156, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 157, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 158, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 159, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 160, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 161, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 162, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 163, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 164, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 165, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 166, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 167, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 168, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 169, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 170, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 171, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 172, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 173, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 174, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 175, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 176, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 177, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 178, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 179, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 180, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 181, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 182, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 183, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 184, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 185, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 186, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 187, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 188, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 189, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 190, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 191, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 192, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 193, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 194, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 195, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 196, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 197, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 198, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 199, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 200, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 201, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 202, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 203, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 204, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 205, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 206, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 207, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 208, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 209, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 210, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 211, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 212, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 213, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 214, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 215, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 216, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 217, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 218, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 219, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 220, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 221, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 222, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 223, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 224, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 225, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 226, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 227, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 228, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 229, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 230, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 231, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 232, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 233, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 234, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 235, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 236, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 237, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 238, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 239, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 240, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 241, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 242, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 243, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 244, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 245, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 246, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 247, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 248, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 249, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 250, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 251, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 252, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 253, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 254, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 255, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 256, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 257, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 258, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 259, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 260, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 261, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 262, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 263, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 264, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 265, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 266, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 267, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 268, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 269, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 270, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 271, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 272, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 273, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 274, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 275, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 276, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 277, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 278, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 279, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 280, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 281, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 282, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 283, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 284, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 285, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 286, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 287, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 288, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 289, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 290, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 291, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 292, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 293, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 294, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 295, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 296, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 297, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 298, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 299, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 300, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 301, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 302, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 303, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 304, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 305, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 306, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 307, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 308, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 309, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 310, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 311, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 312, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 313, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 314, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 315, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 316, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 317, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 318, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 319, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 320, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 321, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 322, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 323, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 324, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 325, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 326, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 327, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 328, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 329, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 330, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 331, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 332, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 333, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 334, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 335, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 336, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 337, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 338, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 339, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 340, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 341, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 342, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 343, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 344, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 345, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 346, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 347, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 348, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 349, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 350, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 351, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 352, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 353, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 354, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 355, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 356, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 357, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 358, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 359, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 360, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 361, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 362, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 363, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 364, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 365, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 366, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 367, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 368, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 369, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 370, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 371, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 372, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 373, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 374, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 375, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 376, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 377, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 378, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 379, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 380, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 381, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 382, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 383, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 384, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 385, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 386, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 387, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 388, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 389, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 390, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 391, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 392, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 393, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 394, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 395, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 396, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 397, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 398, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 399, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 400, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 401, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 402, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 403, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 404, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 405, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 406, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 407, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 408, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 409, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 410, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 411, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 412, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 413, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 414, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 415, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 416, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 417, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 418, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 419, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 420, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 421, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 422, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 423, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 424, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 425, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 426, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 427, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 428, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 429, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 430, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 431, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 432, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 433, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 434, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 435, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 436, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 437, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 438, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 439, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 440, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 441, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 442, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 443, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 444, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 445, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 446, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 447, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 448, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 449, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 450, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 451, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 452, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 453, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 454, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 455, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 456, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 457, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 458, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 459, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 460, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 461, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 462, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 463, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 464, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 465, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 466, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 467, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 468, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 469, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 470, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 471, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 472, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 473, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 474, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 475, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 476, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 477, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 478, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 479, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 480, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 481, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 482, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 483, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 484, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 485, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 486, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 487, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 488, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 489, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 490, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 491, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 492, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 493, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 494, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 495, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 496, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 497, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 498, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 499, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 500, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 501, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 502, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 503, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 504, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 505, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 506, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 507, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 508, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 509, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 510, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 511, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 512, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 513, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 514, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 515, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 516, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 517, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 518, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 519, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 520, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 521, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 522, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 523, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 524, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 525, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 526, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 527, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 528, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 529, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 530, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 531, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 532, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 533, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 534, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 535, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 536, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 537, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 538, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 539, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 540, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 541, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 542, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 543, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 544, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 545, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 546, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 547, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 548, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 549, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 550, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 551, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 552, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 553, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 554, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 555, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 556, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 557, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 558, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 559, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 560, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 561, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 562, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 563, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 564, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 565, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 566, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 567, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 568, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 569, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 570, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 571, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 572, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 573, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 574, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 575, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 576, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 577, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 578, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 579, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 580, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 581, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 582, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 583, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 584, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 585, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 586, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 587, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 588, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 589, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 590, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 591, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 592, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 593, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 594, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 595, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 596, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 597, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 598, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 599, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 600, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 601, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 602, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 603, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 604, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 605, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 606, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 607, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 608, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 609, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 610, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 611, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 612, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 613, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 614, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 615, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 616, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 617, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 618, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 619, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 620, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 621, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 622, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 623, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 624, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 625, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 626, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 627, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 628, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 629, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 630, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 631, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 632, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 633, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 634, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 635, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 636, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 637, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 638, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 639, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 640, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 641, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 642, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 643, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 644, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 645, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 646, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 647, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 648, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 649, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 650, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 651, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 652, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 653, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 654, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 655, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 656, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 657, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 658, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 659, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 660, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 661, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 662, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 663, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 664, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 665, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 666, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 667, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 668, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 669, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 670, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 671, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 672, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 673, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 674, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 675, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 676, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 677, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 678, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 679, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 680, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 681, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 682, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 683, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 684, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 685, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 686, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 687, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 688, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 689, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 690, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 691, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 692, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 693, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 694, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 695, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 696, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 697, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 698, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 699, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 700, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 701, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 702, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 703, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 704, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 705, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 706, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 707, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 708, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 709, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 710, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 711, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 712, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 713, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 714, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 715, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 716, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 717, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 718, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 719, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 720, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 721, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 722, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 723, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 724, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 725, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 726, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 727, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 728, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 729, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 730, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 731, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 732, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 733, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 734, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 735, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 736, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 737, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 738, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 739, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 740, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 741, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 742, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 743, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 744, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 745, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 746, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 747, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 748, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 749, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 750, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 751, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 752, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 753, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 754, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 755, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 756, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 757, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 758, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 759, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 760, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 761, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 762, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 763, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 764, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 765, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 766, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 767, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 768, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 769, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 770, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 771, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 772, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 773, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 774, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 775, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 776, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 777, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 778, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 779, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 780, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 781, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 782, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 783, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 784, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 785, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 786, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 787, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 788, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 789, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 790, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 791, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 792, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 793, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 794, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 795, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 796, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 797, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 798, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 799, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 800, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 801, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 802, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 803, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 804, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 805, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 806, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 807, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 808, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 809, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 810, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 811, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 812, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 813, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 814, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 815, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 816, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 817, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 818, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 819, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 820, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 821, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 822, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 823, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 824, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 825, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 826, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 827, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 828, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 829, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 830, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 831, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 832, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 833, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 834, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 835, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 836, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 837, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 3, Type: ObjectTypeCharacter, Id: 838, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 0, Description: "jungle torch (117)", ObjectsTxtId: 117, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 1, Description: "Waypoint (237)", ObjectsTxtId: 237, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WZ", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 2, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 3, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 4, Description: "brazier floor (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 5, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 6, Description: "Fire, small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 7, Description: "Fire, medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 8, Description: "Fire, large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 9, Description: "Armor Stand, 1 R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 10, Description: "Armor Stand, 2 L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 11, Description: "Weapon Rack, 1 R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 12, Description: "Weapon Rack, 2 L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 13, Description: "Stair, L altar to underground (194)", ObjectsTxtId: 194, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 14, Description: "Stair, R altar to underground (195)", ObjectsTxtId: 195, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 15, Description: "Lam Esen's Tome (193)", ObjectsTxtId: 193, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 16, Description: "water rocks 1 (207)", ObjectsTxtId: 207, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 17, Description: "water rocks girl 1 (211)", ObjectsTxtId: 211, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 18, Description: "water logs 1 (210)", ObjectsTxtId: 210, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "LW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 19, Description: "water log bigger 1 (234)", ObjectsTxtId: 234, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 20, Description: "water rocks 2 (214)", ObjectsTxtId: 214, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 21, Description: "water rocks girl 2 (215)", ObjectsTxtId: 215, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 22, Description: "water logs 2 (213)", ObjectsTxtId: 213, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 23, Description: "water log bigger 2 (228)", ObjectsTxtId: 228, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 24, Description: "water rocks 3 (216)", ObjectsTxtId: 216, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 25, Description: "water rocks girl 3 (227)", ObjectsTxtId: 227, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 26, Description: "water logs 3 (217)", ObjectsTxtId: 217, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "LX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 27, Description: "water log bigger 3 (235)", ObjectsTxtId: 235, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 28, Description: "web between 2 trees L (218)", ObjectsTxtId: 218, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 29, Description: "web between 2 trees R (219)", ObjectsTxtId: 219, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 30, Description: "web around 1 tree L (220)", ObjectsTxtId: 220, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 31, Description: "web around 1 tree R (221)", ObjectsTxtId: 221, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 32, Description: "Cocoon, living (223)", ObjectsTxtId: 223, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 33, Description: "Cocoon, static (224)", ObjectsTxtId: 224, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 34, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 35, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 36, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 37, Description: "Shrine, jungle heal well (170)", ObjectsTxtId: 170, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 38, Description: "Magic Shrine, sewer (325)", ObjectsTxtId: 325, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 39, Description: "Shrine, jungle 1 (184)", ObjectsTxtId: 184, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 40, Description: "Shrine, jungle 2 (190)", ObjectsTxtId: 190, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JS", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 41, Description: "Shrine, jungle 3 (191)", ObjectsTxtId: 191, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 42, Description: "Shrine, jungle 4 (197)", ObjectsTxtId: 197, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 43, Description: "Shrine, mephisto 1 (199)", ObjectsTxtId: 199, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 44, Description: "Shrine, mephisto 2 (200)", ObjectsTxtId: 200, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 45, Description: "Shrine, mephisto 3 (201)", ObjectsTxtId: 201, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 46, Description: "Shrine, mephisto mana (202)", ObjectsTxtId: 202, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 47, Description: "Shrine, mephisto health (206)", ObjectsTxtId: 206, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 48, Description: "Shrine, mana dungeon (278)", ObjectsTxtId: 278, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 49, Description: "dummy shrine health dungeon (120)", ObjectsTxtId: 120, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 50, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 51, Description: "Dead Body, sewer (326)", ObjectsTxtId: 326, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 52, Description: "Skeleton (158)", ObjectsTxtId: 158, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 53, Description: "Corpse, villager 1 (271)", ObjectsTxtId: 271, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 54, Description: "Corpse, villager 2 (272)", ObjectsTxtId: 272, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 55, Description: "torch 1 (327)", ObjectsTxtId: 327, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 56, Description: "torch 2 (328)", ObjectsTxtId: 328, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 57, Description: "Chest, Mephisto L Large (329)", ObjectsTxtId: 329, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 58, Description: "Chest, Mephisto R Large (330)", ObjectsTxtId: 330, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 59, Description: "Chest, Mephisto L Med (331)", ObjectsTxtId: 331, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 60, Description: "Chest, Mephisto R Med (332)", ObjectsTxtId: 332, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 61, Description: "Chest, spider lair L Large (333)", ObjectsTxtId: 333, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 62, Description: "Chest, spider lair L Tall (334)", ObjectsTxtId: 334, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 63, Description: "Chest, spider lair R Med (335)", ObjectsTxtId: 335, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 64, Description: "Chest, spider lair R Tall (336)", ObjectsTxtId: 336, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 65, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 66, Description: "Chest, L Large (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 67, Description: "Chest, L Med (176)", ObjectsTxtId: 176, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 68, Description: "Chest, general L (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 69, Description: "Chest, general R (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 70, Description: "Chest, jungle (181)", ObjectsTxtId: 181, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 71, Description: "Chest, L Med jungle (183)", ObjectsTxtId: 183, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 72, Description: "Rat's Nest, sewers (246)", ObjectsTxtId: 246, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 73, Description: "Stash, jungle 1 (185)", ObjectsTxtId: 185, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 74, Description: "Stash, jungle 2 (186)", ObjectsTxtId: 186, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 75, Description: "Stash, jungle 3 (187)", ObjectsTxtId: 187, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 76, Description: "Stash, jungle 4 (188)", ObjectsTxtId: 188, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 77, Description: "Stash, Mephisto lair (203)", ObjectsTxtId: 203, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 78, Description: "Stash, box (204)", ObjectsTxtId: 204, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 79, Description: "Stash, altar (205)", ObjectsTxtId: 205, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 80, Description: "Basket, 1 say 'not here' (208)", ObjectsTxtId: 208, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 81, Description: "Basket, 2 say 'not here' (209)", ObjectsTxtId: 209, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 82, Description: "Hollow Log (169)", ObjectsTxtId: 169, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 83, Description: "Waypoint, sewer (323)", ObjectsTxtId: 323, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 84, Description: "Waypoint, Travincal (324)", ObjectsTxtId: 324, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QL", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 85, Description: "a Trap, test data floortrap (196)", ObjectsTxtId: 196, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 86, Description: "bubbles in water (212)", ObjectsTxtId: 212, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 87, Description: "Skullpile (225)", ObjectsTxtId: 225, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 88, Description: "Rat's Nest, sewers (244)", ObjectsTxtId: 244, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 89, Description: "helllight source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 90, Description: "helllight source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 91, Description: "helllight source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 92, Description: "Rock Pile, dungeon (360)", ObjectsTxtId: 360, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 93, Description: "Magic Shrine, dungeon (361)", ObjectsTxtId: 361, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 94, Description: "Basket, dungeon (362)", ObjectsTxtId: 362, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 95, Description: "Casket, dungeon (365)", ObjectsTxtId: 365, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 96, Description: "Gidbinn Altar (251)", ObjectsTxtId: 251, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GA", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 97, Description: "Gidbinn, decoy (252)", ObjectsTxtId: 252, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GD", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 98, Description: "Basket, 1 (208)", ObjectsTxtId: 208, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 99, Description: "brazier celler (283)", ObjectsTxtId: 283, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BI", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 100, Description: "Sewer Lever (367)", ObjectsTxtId: 367, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 101, Description: "Sewer Stairs (366)", ObjectsTxtId: 366, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 102, Description: "Dark Wanderer (368)", ObjectsTxtId: 368, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 103, Description: "Mephisto bridge (341)", ObjectsTxtId: 341, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XJ", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 342, Description: "Portal to hellgate (342)", ObjectsTxtId: 342, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1Y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 105, Description: "Shrine, mana well kurast (343)", ObjectsTxtId: 343, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 106, Description: "Shrine, health well kurast (344)", ObjectsTxtId: 344, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XM", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 107, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 108, Description: "torch town (370)", ObjectsTxtId: 370, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 109, Description: "Hratli start (378)", ObjectsTxtId: 378, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 110, Description: "Hratli end (379)", ObjectsTxtId: 379, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 111, Description: "stairs of Compelling Orb (386)", ObjectsTxtId: 386, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 112, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 113, Description: "Chest, Khalim's Heart (405)", ObjectsTxtId: 405, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 114, Description: "Chest, Khalim's Eye (407)", ObjectsTxtId: 407, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 115, Description: "Chest, Khalim's Brain (406)", ObjectsTxtId: 406, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 116, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 117, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 118, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 119, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 120, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 121, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 122, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 123, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 124, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 125, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 126, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 127, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 128, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 129, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 130, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 131, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 132, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 133, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 134, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 135, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 136, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 137, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 138, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 139, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 140, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 141, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 142, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 143, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 144, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 145, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 146, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 147, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 148, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 149, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 3, Type: ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 0, Description: "place_champion-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 1, Description: "trap-horzmissile-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 2, Description: "trap-vertmissile-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 3, Description: "place_group25-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 4, Description: "place_group50-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 5, Description: "place_group75-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 6, Description: "place_group100-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 7, Description: "tyrael2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 8, Description: "window2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "DT", Class: "HTH", TR: "LIT", S1: "S1", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 9, Description: "window1-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "DT", Class: "HTH", TR: "LIT", S1: "S1", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 10, Description: "jamella-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 11, Description: "halbu-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 12, Description: "hellmeteor-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 13, Description: "izual-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 14, Description: "diablo-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 15, Description: "Winged Death-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 16, Description: "The Tormentor-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 17, Description: "Taintbreeder-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 18, Description: "Riftwraith the Cannibal-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 19, Description: "Infector of Souls-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 20, Description: "Lord De Seis-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 21, Description: "Grand Vizier of Chaos-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 22, Description: "trappedsoul1-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 23, Description: "trappedsoul2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 24, Description: "regurgitator3-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 25, Description: "cain4-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "4D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 26, Description: "malachai-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 27, Description: "The Feature Creep-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 28, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 29, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 30, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 31, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 32, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 33, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 34, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 35, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 36, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 37, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 38, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 39, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 40, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 41, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 42, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 43, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 44, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 45, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 46, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 47, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 48, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 49, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 50, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 51, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 52, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 53, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 54, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 55, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 56, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 57, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 58, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 59, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 60, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 61, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 62, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 63, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 64, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 65, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 66, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 67, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 68, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 69, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 70, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 71, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 72, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 73, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 74, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 75, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 76, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 77, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 78, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 79, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 80, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 81, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 82, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 83, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 84, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 85, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 86, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 87, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 88, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 89, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 90, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 91, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 92, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 93, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 94, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 95, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 96, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 97, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 98, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 99, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 100, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 101, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 102, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 103, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 104, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 105, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 106, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 107, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 108, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 109, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 110, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 111, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 112, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 113, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 114, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 115, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 116, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 117, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 118, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 119, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 120, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 121, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 122, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 123, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 124, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 125, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 126, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 127, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 128, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 129, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 130, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 131, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 132, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 133, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 134, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 135, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 136, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 137, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 138, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 139, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 140, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 141, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 142, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 143, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 144, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 145, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 146, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 147, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 148, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 149, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 150, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 151, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 152, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 153, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 154, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 155, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 156, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 157, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 158, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 159, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 160, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 161, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 162, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 163, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 164, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 165, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 166, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 167, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 168, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 169, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 170, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 171, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 172, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 173, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 174, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 175, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 176, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 177, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 178, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 179, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 180, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 181, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 182, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 183, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 184, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 185, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 186, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 187, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 188, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 189, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 190, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 191, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 192, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 193, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 194, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 195, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 196, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 197, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 198, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 199, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 200, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 201, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 202, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 203, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 204, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 205, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 206, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 207, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 208, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 209, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 210, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 211, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 212, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 213, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 214, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 215, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 216, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 217, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 218, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 219, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 220, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 221, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 222, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 223, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 224, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 225, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 226, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 227, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 228, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 229, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 230, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 231, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 232, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 233, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 234, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 235, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 236, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 237, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 238, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 239, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 240, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 241, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 242, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 243, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 244, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 245, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 246, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 247, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 248, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 249, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 250, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 251, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 252, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 253, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 254, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 255, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 256, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 257, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 258, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 259, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 260, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 261, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 262, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 263, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 264, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 265, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 266, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 267, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 268, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 269, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 270, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 271, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 272, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 273, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 274, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 275, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 276, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 277, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 278, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 279, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 280, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 281, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 282, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 283, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 284, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 285, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 286, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 287, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 288, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 289, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 290, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 291, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 292, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 293, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 294, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 295, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 296, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 297, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 298, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 299, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 300, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 301, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 302, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 303, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 304, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 305, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 306, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 307, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 308, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 309, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 310, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 311, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 312, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 313, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 314, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 315, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 316, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 317, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 318, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 319, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 320, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 321, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 322, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 323, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 324, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 325, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 326, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 327, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 328, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 329, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 330, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 331, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 332, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 333, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 334, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 335, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 336, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 337, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 338, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 339, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 340, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 341, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 342, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 343, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 344, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 345, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 346, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 347, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 348, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 349, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 350, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 351, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 352, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 353, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 354, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 355, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 356, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 357, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 358, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 359, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 360, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 361, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 362, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 363, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 364, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 365, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 366, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 367, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 368, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 369, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 370, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 371, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 372, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 373, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 374, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 375, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 376, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 377, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 378, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 379, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 380, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 381, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 382, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 383, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 384, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 385, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 386, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 387, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 388, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 389, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 390, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 391, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 392, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 393, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 394, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 395, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 396, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 397, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 398, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 399, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 400, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 401, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 402, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 403, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 404, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 405, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 406, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 407, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 408, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 409, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 410, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 411, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 412, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 413, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 414, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 415, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 416, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 417, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 418, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 419, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 420, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 421, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 422, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 423, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 424, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 425, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 426, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 427, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 428, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 429, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 430, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 431, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 432, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 433, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 434, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 435, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 436, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 437, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 438, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 439, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 440, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 441, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 442, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 443, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 444, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 445, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 446, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 447, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 448, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 449, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 450, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 451, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 452, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 453, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 454, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 455, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 456, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 457, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 458, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 459, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 460, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 461, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 462, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 463, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 464, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 465, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 466, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 467, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 468, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 469, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 470, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 471, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 472, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 473, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 474, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 475, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 476, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 477, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 478, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 479, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 480, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 481, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 482, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 483, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 484, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 485, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 486, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 487, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 488, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 489, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 490, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 491, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 492, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 493, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 494, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 495, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 496, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 497, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 498, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 499, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 500, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 501, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 502, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 503, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 504, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 505, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 506, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 507, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 508, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 509, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 510, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 511, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 512, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 513, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 514, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 515, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 516, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 517, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 518, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 519, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 520, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 521, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 522, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 523, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 524, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 525, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 526, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 527, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 528, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 529, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 530, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 531, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 532, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 533, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 534, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 535, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 536, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 537, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 538, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 539, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 540, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 541, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 542, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 543, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 544, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 545, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 546, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 547, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 548, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 549, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 550, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 551, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 552, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 553, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 554, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 555, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 556, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 557, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 558, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 559, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 560, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 561, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 562, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 563, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 564, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 565, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 566, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 567, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 568, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 569, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 570, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 571, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 572, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 573, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 574, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 575, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 576, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 577, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 578, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 579, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 580, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 581, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 582, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 583, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 584, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 585, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 586, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 587, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 588, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 589, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 590, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 591, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 592, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 593, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 594, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 595, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 596, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 597, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 598, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 599, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 600, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 601, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 602, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 603, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 604, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 605, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 606, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 607, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 608, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 609, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 610, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 611, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 612, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 613, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 614, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 615, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 616, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 617, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 618, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 619, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 620, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 621, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 622, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 623, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 624, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 625, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 626, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 627, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 628, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 629, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 630, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 631, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 632, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 633, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 634, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 635, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 636, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 637, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 638, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 639, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 640, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 641, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 642, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 643, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 644, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 645, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 646, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 647, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 648, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 649, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 650, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 651, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 652, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 653, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 654, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 655, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 656, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 657, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 658, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 659, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 660, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 661, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 662, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 663, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 664, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 665, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 666, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 667, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 668, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 669, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 670, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 671, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 672, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 673, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 674, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 675, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 676, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 677, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 678, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 679, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 680, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 681, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 682, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 683, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 684, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 685, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 686, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 687, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 688, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 689, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 690, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 691, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 692, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 693, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 694, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 695, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 696, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 697, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 698, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 699, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 700, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 701, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 702, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 703, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 704, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 705, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 706, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 707, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 708, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 709, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 710, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 711, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 712, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 713, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 714, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 715, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 716, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 717, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 718, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 719, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 720, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 721, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 722, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 723, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 724, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 725, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 726, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 727, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 728, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 729, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 730, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 731, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 732, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 733, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 734, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 735, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 736, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 737, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 738, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 739, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 740, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 741, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 742, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 743, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 744, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 745, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 746, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 747, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 748, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 749, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 750, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 751, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 752, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 753, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 754, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 755, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 756, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 757, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 758, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 759, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 760, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 761, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 762, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 763, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 764, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 765, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 766, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 767, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 768, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 769, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 770, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 771, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 772, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 773, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 774, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 775, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 776, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 777, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 778, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 779, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 780, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 781, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 782, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 783, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 784, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 785, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 786, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 787, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 788, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 789, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 790, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 791, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 792, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 793, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 794, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 795, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 796, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 797, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 798, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 799, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 800, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 801, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 802, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 803, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 804, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 805, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 806, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 807, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 808, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 809, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 810, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 811, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 812, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 813, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 814, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 815, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 816, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 817, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 818, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 819, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 820, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 821, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 822, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 823, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 824, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 825, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 826, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 4, Type: ObjectTypeCharacter, Id: 827, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 0, Description: "Waypoint (238)", ObjectsTxtId: 238, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WV", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 1, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 2, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 3, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 4, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 5, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 6, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 7, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 8, Description: "hell fire 1 (345)", ObjectsTxtId: 345, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 9, Description: "hell fire 2 (346)", ObjectsTxtId: 346, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 10, Description: "hell fire 3 (347)", ObjectsTxtId: 347, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 11, Description: "hell lava 1 (348)", ObjectsTxtId: 348, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 12, Description: "hell lava 2 (349)", ObjectsTxtId: 349, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 13, Description: "hell lava 3 (350)", ObjectsTxtId: 350, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 14, Description: "hell light source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 15, Description: "hell light source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 16, Description: "hell light source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 17, Description: "Fire, hell brazier 1 (358)", ObjectsTxtId: 358, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 18, Description: "Fire, hell brazier 2 (359)", ObjectsTxtId: 359, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 19, Description: "Hung Skeleton (363)", ObjectsTxtId: 363, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 20, Description: "skeleton rising from lava L (259)", ObjectsTxtId: 259, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 21, Description: "skeleton rising from lava R (373)", ObjectsTxtId: 373, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QT", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 22, Description: "Bone Chest (372)", ObjectsTxtId: 372, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 23, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 24, Description: "Shrine, hell well (236)", ObjectsTxtId: 236, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 25, Description: "Shrine, mana well (249)", ObjectsTxtId: 249, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 26, Description: "Shrine, outer hell 1 (226)", ObjectsTxtId: 226, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IA", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 27, Description: "Shrine, outer hell 2 (231)", ObjectsTxtId: 231, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HT", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 28, Description: "Shrine, outer hell 3 (232)", ObjectsTxtId: 232, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HQ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 29, Description: "Shrine, mana inner hell (93)", ObjectsTxtId: 93, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IZ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 30, Description: "Shrine, inner hell 1 (97)", ObjectsTxtId: 97, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 31, Description: "Shrine, inner hell 2 (123)", ObjectsTxtId: 123, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 32, Description: "Shrine, inner hell 3 (124)", ObjectsTxtId: 124, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IV", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 33, Description: "Shrine, health inner hell (96)", ObjectsTxtId: 96, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IY", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 34, Description: "Skullpile (225)", ObjectsTxtId: 225, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 35, Description: "Pillar 1 (233)", ObjectsTxtId: 233, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 36, Description: "Pillar 2 (222)", ObjectsTxtId: 222, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 37, Description: "Hidden Stash, inner hell (125)", ObjectsTxtId: 125, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 38, Description: "Skull Pile, inner hell (126)", ObjectsTxtId: 126, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 39, Description: "Hidden Stash, inner hell 1 (127)", ObjectsTxtId: 127, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 40, Description: "Hidden Stash, inner hell 2 (128)", ObjectsTxtId: 128, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HG", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 41, Description: "CRASH THE GAME ! (375)", ObjectsTxtId: 375, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 42, Description: "Hellforge (376)", ObjectsTxtId: 376, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UX", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 43, Description: "ray of light L Diablo (254)", ObjectsTxtId: 254, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 44, Description: "ray of light R Diablo (253)", ObjectsTxtId: 253, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 45, Description: "Portal to hell (342)", ObjectsTxtId: 342, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1Y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 46, Description: "Diablo start point (255)", ObjectsTxtId: 255, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 47, Description: "Diablo seal 1 (392)", ObjectsTxtId: 392, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 48, Description: "Diablo seal 2 (393)", ObjectsTxtId: 393, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 49, Description: "Diablo seal 3 (394)", ObjectsTxtId: 394, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 50, Description: "Diablo seal 4 (395)", ObjectsTxtId: 395, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 51, Description: "Diablo seal 5 (396)", ObjectsTxtId: 396, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 52, Description: "Waypoint, fortress (398)", ObjectsTxtId: 398, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YG", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 53, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 54, Description: "fissure (399)", ObjectsTxtId: 399, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FH", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 55, Description: "smoke (401)", ObjectsTxtId: 401, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 56, Description: "brazier hell mesa (400)", ObjectsTxtId: 400, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 57, Description: "Trapped Soul, burning guy (380)", ObjectsTxtId: 380, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 58, Description: "Trapped Soul, guy stuck 1 (383)", ObjectsTxtId: 383, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 59, Description: "Trapped Soul, guy stuck 2 (384)", ObjectsTxtId: 384, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 60, Description: "wall torch L tombs (296)", ObjectsTxtId: 296, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QD", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 61, Description: "wall torch R tombs (297)", ObjectsTxtId: 297, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 62, Description: "Fire, hell brazier (403)", ObjectsTxtId: 403, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9F", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 63, Description: "floor brazier (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 64, Description: "fortress brazier (408)", ObjectsTxtId: 408, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 65, Description: "Torch Pit (409)", ObjectsTxtId: 409, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 66, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 67, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 68, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 69, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 70, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 71, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 72, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 73, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 74, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 75, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 76, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 77, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 78, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 79, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 80, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 81, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 82, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 83, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 84, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 85, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 86, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 87, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 88, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 89, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 90, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 91, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 92, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 93, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 94, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 95, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 96, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 97, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 98, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 99, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 100, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 101, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 102, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 103, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 104, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 105, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 106, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 107, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 108, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 109, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 110, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 111, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 112, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 113, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 114, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 115, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 116, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 117, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 118, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 119, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 120, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 121, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 122, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 123, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 124, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 125, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 126, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 127, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 128, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 129, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 130, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 131, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 132, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 133, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 134, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 135, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 136, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 137, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 138, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 139, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 140, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 141, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 142, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 143, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 144, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 145, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 146, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 147, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 148, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 149, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 4, Type: ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 0, Description: "larzuk-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 1, Description: "drehya-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 2, Description: "malah-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 3, Description: "nihlathak-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 4, Description: "qual-kehk-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 5, Description: "place_impgroup-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 6, Description: "Siege Boss-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "OS", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "HVY", SH: "HVY", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 7, Description: "tyrael3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 8, Description: "cain6-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 9, Description: "place_imp-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 10, Description: "place_minion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 11, Description: "place_miniongroup-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 12, Description: "catapult2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 13, Description: "catapult1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 14, Description: "place_bloodlord-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 15, Description: "catapultspotter2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 16, Description: "catapultspotter1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 17, Description: "act5barb1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 18, Description: "place_deadbarb-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 19, Description: "place_deadminion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 20, Description: "place_deadimp-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 21, Description: "cain6-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 22, Description: "act5barb3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 23, Description: "place_reanimateddead-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 24, Description: "ancientstatue1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 25, Description: "ancientstatue2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 26, Description: "ancientstatue3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 27, Description: "Dac Farren-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 28, Description: "baalthrone-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 29, Description: "baaltaunt-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 30, Description: "injuredbarb1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 31, Description: "injuredbarb2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 32, Description: "injuredbarb3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 33, Description: "baalcrab-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", ColorMap: "/Data/Global/Monsters/42/COF/Palshift.dat", Index: 5}, - {Act: 5, Type: ObjectTypeCharacter, Id: 34, Description: "Axe Dweller-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 35, Description: "Bonesaw Breaker-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 36, Description: "Megaflow Rectifier-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 37, Description: "Eyeback Unleashed-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 38, Description: "Threash Socket-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 39, Description: "Pindleskin-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 40, Description: "Snapchip Shatter-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 41, Description: "Anodized Elite-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 42, Description: "Vinvear Molech-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 43, Description: "Sharp Tooth Sayer-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 44, Description: "Magma Torquer-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 45, Description: "Blaze Ripper-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 46, Description: "Frozenstein-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 47, Description: "worldstoneeffect-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 48, Description: "chicken-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 2, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 49, Description: "place_champion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 50, Description: "evilhut-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "S1", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 51, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 52, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 53, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 54, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 55, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 56, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 57, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 58, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 59, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 60, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 61, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 62, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 63, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 64, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 65, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 66, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 67, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 68, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 69, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 70, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 71, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 72, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 73, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 74, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 75, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 76, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 77, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 78, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 79, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 80, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 81, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 82, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 83, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 84, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 85, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 86, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 87, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 88, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 89, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 90, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 91, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 92, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 93, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 94, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 95, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 96, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 97, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 98, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 99, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 100, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 101, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 102, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 103, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 104, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 105, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 106, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 107, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 108, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 109, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 110, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 111, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 112, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 113, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 114, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 115, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 116, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 117, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 118, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 119, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 120, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 121, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 122, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 123, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 124, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 125, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 126, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 127, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 128, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 129, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 130, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 131, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 132, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 133, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 134, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 135, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 136, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 137, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 138, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 139, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 140, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 141, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 142, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 143, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 144, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 145, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 146, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 147, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 148, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 149, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 150, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 151, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 152, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 153, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 154, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 155, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 156, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 157, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 158, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 159, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 160, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 161, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 162, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 163, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 164, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 165, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 166, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 167, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 168, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 169, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 170, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 171, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 172, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 173, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 174, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 175, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 176, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 177, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 178, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 179, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 180, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 181, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 182, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 183, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 184, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 185, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 186, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 187, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 188, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 189, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 190, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 191, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 192, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 193, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 194, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 195, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 196, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 197, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 198, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 199, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 200, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 201, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 202, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 203, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 204, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 205, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 206, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 207, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 208, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 209, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 210, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 211, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 212, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 213, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 214, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 215, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 216, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 217, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 218, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 219, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 220, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 221, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 222, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 223, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 224, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 225, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 226, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 227, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 228, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 229, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 230, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 231, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 232, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 233, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 234, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 235, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 236, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 237, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 238, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 239, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 240, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 241, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 242, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 243, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 244, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 245, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 246, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 247, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 248, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 249, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 250, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 251, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 252, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 253, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 254, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 255, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 256, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 257, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 258, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 259, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 260, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 261, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 262, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 263, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 264, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 265, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 266, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 267, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 268, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 269, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 270, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 271, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 272, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 273, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 274, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 275, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 276, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 277, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 278, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 279, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 280, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 281, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 282, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 283, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 284, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 285, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 286, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 287, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 288, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 289, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 290, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 291, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 292, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 293, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 294, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 295, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 296, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 297, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 298, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 299, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 300, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 301, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 302, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 303, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 304, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 305, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 306, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 307, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 308, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 309, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 310, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 311, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 312, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 313, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 314, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 315, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 316, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 317, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 318, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 319, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 320, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 321, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 322, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 323, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 324, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 325, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 326, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 327, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 328, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 329, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 330, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 331, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 332, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 333, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 334, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 335, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 336, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 337, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 338, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 339, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 340, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 341, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 342, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 343, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 344, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 345, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 346, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 347, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 348, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 349, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 350, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 351, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 352, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 353, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 354, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 355, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 356, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 357, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 358, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 359, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 360, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 361, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 362, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 363, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 364, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 365, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 366, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 367, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 368, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 369, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 370, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 371, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 372, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 373, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 374, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 375, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 376, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 377, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 378, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 379, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 380, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 381, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 382, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 383, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 384, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 385, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 386, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 387, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 388, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 389, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 390, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 391, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 392, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 393, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 394, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 395, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 396, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 397, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 398, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 399, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 400, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 401, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 402, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 403, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 404, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 405, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 406, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 407, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 408, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 409, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 410, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 411, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 412, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 413, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 414, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 415, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 416, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 417, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 418, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 419, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 420, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 421, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 422, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 423, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 424, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 425, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 426, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 427, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 428, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 429, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 430, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 431, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 432, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 433, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 434, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 435, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 436, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 437, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 438, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 439, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 440, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 441, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 442, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 443, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 444, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 445, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 446, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 447, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 448, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 449, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 450, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 451, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 452, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 453, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 454, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 455, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 456, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 457, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 458, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 459, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 460, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 461, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 462, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 463, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 464, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 465, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 466, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 467, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 468, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 469, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 470, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 471, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 472, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 473, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 474, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 475, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 476, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 477, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 478, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 479, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 480, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 481, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 482, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 483, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 484, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 485, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 486, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 487, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 488, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 489, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 490, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 491, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 492, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 493, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 494, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 495, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 496, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 497, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 498, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 499, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 500, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 501, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 502, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 503, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 504, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 505, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 506, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 507, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 508, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 509, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 510, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 511, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 512, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 513, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 514, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 515, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 516, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 517, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 518, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 519, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 520, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 521, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 522, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 523, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 524, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 525, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 526, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 527, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 528, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 529, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 530, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 531, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 532, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 533, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 534, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 535, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 536, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 537, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 538, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 539, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 540, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 541, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 542, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 543, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 544, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 545, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 546, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 547, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 548, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 549, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 550, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 551, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 552, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 553, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 554, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 555, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 556, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 557, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 558, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 559, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 560, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 561, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 562, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 563, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 564, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 565, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 566, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 567, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 568, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 569, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 570, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 571, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 572, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 573, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 574, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 575, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 576, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 577, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 578, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 579, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 580, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 581, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 582, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 583, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 584, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 585, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 586, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 587, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 588, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 589, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 590, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 591, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 592, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 593, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 594, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 595, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 596, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 597, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 598, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 599, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 600, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 601, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 602, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 603, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 604, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 605, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 606, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 607, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 608, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 609, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 610, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 611, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 612, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 613, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 614, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 615, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 616, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 617, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 618, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 619, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 620, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 621, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 622, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 623, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 624, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 625, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 626, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 627, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 628, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 629, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 630, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 631, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 632, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 633, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 634, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 635, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 636, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 637, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 638, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 639, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 640, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 641, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 642, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 643, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 644, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 645, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 646, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 647, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 648, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 649, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 650, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 651, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 652, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 653, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 654, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 655, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 656, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 657, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 658, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 659, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 660, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 661, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 662, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 663, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 664, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 665, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 666, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 667, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 668, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 669, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 670, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 671, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 672, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 673, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 674, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 675, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 676, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 677, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 678, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 679, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 680, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 681, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 682, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 683, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 684, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 685, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 686, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 687, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 688, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 689, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 690, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 691, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 692, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 693, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 694, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 695, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 696, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 697, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 698, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 699, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 700, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 701, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 702, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 703, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 704, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 705, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 706, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 707, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 708, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 709, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 710, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 711, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 712, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 713, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 714, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 715, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 716, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 717, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 718, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 719, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 720, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 721, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 722, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 723, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 724, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 725, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 726, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 727, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 728, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 729, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 730, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 731, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 732, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 733, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 734, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 735, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 736, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 737, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 738, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 739, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 740, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 741, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 742, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 743, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 744, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 745, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 746, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 747, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 748, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 749, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 750, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 751, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 752, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 753, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 754, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 755, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 756, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 757, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 758, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 759, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 760, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 761, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 762, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 763, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 764, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 765, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 766, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 767, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 768, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 769, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 770, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 771, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 772, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 773, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 774, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 775, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 776, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 777, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 778, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 779, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 780, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 781, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 782, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 783, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 784, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 785, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 786, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 787, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 788, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 789, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 790, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 791, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 792, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 793, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 794, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 795, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 796, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 797, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 798, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 799, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 800, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 801, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 802, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 803, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 804, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 805, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 806, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 807, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 808, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 809, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 810, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 811, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 812, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 813, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 814, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 815, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 816, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 817, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 818, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 819, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 820, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 821, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 822, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 823, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 824, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 825, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 826, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 827, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 828, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 829, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 830, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 831, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 832, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 833, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 834, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 835, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 836, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 837, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 838, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 839, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 840, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 841, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 842, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 843, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 844, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 845, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 846, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 847, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 848, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 849, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 850, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 851, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 852, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 853, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 854, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, - {Act: 5, Type: ObjectTypeCharacter, Id: 855, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 0, Description: "banner 1 (452)", ObjectsTxtId: 452, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 1, Description: "banner 2 (453)", ObjectsTxtId: 453, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 2, Description: "guild vault (338)", ObjectsTxtId: 338, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 3, Description: "steeg stone (337)", ObjectsTxtId: 337, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 4, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 5, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 6, Description: "torch, expansion tiki 1 (482)", ObjectsTxtId: 482, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 7, Description: "Fire, Rogue camp (39)", ObjectsTxtId: 39, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 8, Description: "standard / direction (35)", ObjectsTxtId: 35, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 9, Description: "standard / direction ((36)", ObjectsTxtId: 36, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 10, Description: "candles R (33)", ObjectsTxtId: 33, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 11, Description: "candles L (34)", ObjectsTxtId: 34, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 12, Description: "torch 2 wall (38)", ObjectsTxtId: 38, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 13, Description: "floor brazier (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 14, Description: "Pot O Torch, level 1 (411)", ObjectsTxtId: 411, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 15, Description: "burning bodies (438)", ObjectsTxtId: 438, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6F", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 16, Description: "fire pit, level 1 (412)", ObjectsTxtId: 412, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 17, Description: "camp fire (435)", ObjectsTxtId: 435, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2W", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 18, Description: "town torch (436)", ObjectsTxtId: 436, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2X", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 19, Description: "Tribal Flag (440)", ObjectsTxtId: 440, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 20, Description: "Town Flag (441)", ObjectsTxtId: 441, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 21, Description: "Town Flag (441)", ObjectsTxtId: 441, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 22, Description: "Chandelier (442)", ObjectsTxtId: 442, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 23, Description: "Waypoint (429)", ObjectsTxtId: 429, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 24, Description: "Wooden Chest L (420)", ObjectsTxtId: 420, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 25, Description: "Wooden Chest R (431)", ObjectsTxtId: 431, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 26, Description: "Chest L (430)", ObjectsTxtId: 430, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 27, Description: "Chest R (413)", ObjectsTxtId: 413, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 28, Description: "Chest S L (432)", ObjectsTxtId: 432, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 29, Description: "Chest S R (433)", ObjectsTxtId: 433, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 30, Description: "wilderness barrel (418)", ObjectsTxtId: 418, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 31, Description: "exploding wildernes barrel (419)", ObjectsTxtId: 419, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 32, Description: "Burial Chest (424)", ObjectsTxtId: 424, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 33, Description: "Burial Chest R (425)", ObjectsTxtId: 425, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 34, Description: "Hidden Stash (416)", ObjectsTxtId: 416, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3W", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 35, Description: "Shrine 1 (414)", ObjectsTxtId: 414, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6R", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 36, Description: "Shrine 2 (415)", ObjectsTxtId: 415, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6S", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 37, Description: "Shrine 3 (427)", ObjectsTxtId: 427, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 38, Description: "Shrine 4 (428)", ObjectsTxtId: 428, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 39, Description: "Shrine 5 (421)", ObjectsTxtId: 421, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 40, Description: "Shrine, mana (422)", ObjectsTxtId: 422, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 41, Description: "Health Shrine (423)", ObjectsTxtId: 423, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 42, Description: "Well (426)", ObjectsTxtId: 426, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 43, Description: "Hell Gate (451)", ObjectsTxtId: 451, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 44, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 45, Description: "Jar 1 (443)", ObjectsTxtId: 443, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6I", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 46, Description: "Jar 2 (444)", ObjectsTxtId: 444, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 47, Description: "Jar 3 (445)", ObjectsTxtId: 445, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6K", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 48, Description: "Swinging Heads (446)", ObjectsTxtId: 446, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 49, Description: "Pole (447)", ObjectsTxtId: 447, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6M", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 50, Description: "Skulls and Rocks, no snow (448)", ObjectsTxtId: 448, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 51, Description: "Skulls and Rocks, siege (450)", ObjectsTxtId: 450, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6O", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 52, Description: "Hell Gate (451)", ObjectsTxtId: 451, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 53, Description: "Anya start in town (459)", ObjectsTxtId: 459, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 54, Description: "Anya start outside town (460)", ObjectsTxtId: 460, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 55, Description: "Nihlathak start in town (461)", ObjectsTxtId: 461, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 56, Description: "Nihlathak outside in town (462)", ObjectsTxtId: 462, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 57, Description: "Torch, expansion tiki torch (482)", ObjectsTxtId: 482, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 58, Description: "Cage, caged fellow (473)", ObjectsTxtId: 473, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 59, Description: "Chest, specialchest (455)", ObjectsTxtId: 455, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6U", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 60, Description: "Death Pole 1, wilderness (456)", ObjectsTxtId: 456, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6V", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 61, Description: "Death Pole 2, wilderness (457)", ObjectsTxtId: 457, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6W", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 62, Description: "Altar, inside of temple (458)", ObjectsTxtId: 458, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6X", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 63, Description: "Hidden Stash, icecave (463)", ObjectsTxtId: 463, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6Y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 64, Description: "Health Shrine, icecave (464)", ObjectsTxtId: 464, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 65, Description: "Shrine, icecave (465)", ObjectsTxtId: 465, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 66, Description: "Evil Urn, icecave (466)", ObjectsTxtId: 466, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 67, Description: "Jar, icecave 1 (467)", ObjectsTxtId: 467, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8D", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 68, Description: "Jar, icecave 2 (468)", ObjectsTxtId: 468, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8E", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 69, Description: "Jar, icecave 3 (469)", ObjectsTxtId: 469, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8F", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 70, Description: "Jar, icecave 4 (470)", ObjectsTxtId: 470, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8G", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 71, Description: "Jar, icecave 5 (471)", ObjectsTxtId: 471, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8H", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 72, Description: "Shrine, icecave 1 (472)", ObjectsTxtId: 472, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8I", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 73, Description: "Dead Barbarian, seige/wilderness (477)", ObjectsTxtId: 477, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 74, Description: "Shrine, icecave 2 (479)", ObjectsTxtId: 479, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8K", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 75, Description: "Torch, icecave 1 (480)", ObjectsTxtId: 480, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 76, Description: "Torch, icecave 2 (481)", ObjectsTxtId: 481, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8M", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 77, Description: "Shrine, baals (483)", ObjectsTxtId: 483, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8N", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 78, Description: "Health Shrine, baals (484)", ObjectsTxtId: 484, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8O", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 79, Description: "Tomb, baal's lair 1 (485)", ObjectsTxtId: 485, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8P", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 80, Description: "Tomb, baal's lair 2 (486)", ObjectsTxtId: 486, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 81, Description: "Tomb, baal's lair 3 (487)", ObjectsTxtId: 487, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8R", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 82, Description: "Chest, wilderness/siege exploding (454)", ObjectsTxtId: 454, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6T", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 83, Description: "Torch, expansion no snow (437)", ObjectsTxtId: 437, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6E", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 84, Description: "Stash, Pen breakable door (508)", ObjectsTxtId: 508, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 85, Description: "Magic Shrine, baal's lair (488)", ObjectsTxtId: 488, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8S", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 86, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 87, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 88, Description: "Magic Shrine, snowy_shrine3 a (495)", ObjectsTxtId: 495, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Z", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 89, Description: "Magic Shrine, snowy_shrine3 b (497)", ObjectsTxtId: 497, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5B", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 90, Description: "Magic Shrine, baal's lair (499)", ObjectsTxtId: 499, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5D", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 91, Description: "Magic Shrine, baals_shrine3 (503)", ObjectsTxtId: 503, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5H", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 92, Description: "Magic Shrine, temple 1 (509)", ObjectsTxtId: 509, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5M", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 93, Description: "Magic Shrine, temple 2 (512)", ObjectsTxtId: 512, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5T", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 94, Description: "Torch, baal's lair 1 (489)", ObjectsTxtId: 489, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 95, Description: "Torch, baal's lair 2 (490)", ObjectsTxtId: 490, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8U", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 96, Description: "Torch, temple 1 (514)", ObjectsTxtId: 514, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5R", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 97, Description: "Torch, temple 2 (515)", ObjectsTxtId: 515, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5S", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 98, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 99, Description: "Well, baalslair (498)", ObjectsTxtId: 498, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 100, Description: "Well, temple (513)", ObjectsTxtId: 513, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 101, Description: "Waypoint, baals_waypoint (494)", ObjectsTxtId: 494, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 102, Description: "Waypoint, wilderness_waypoint (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 103, Description: "Waypoint, icecave (511)", ObjectsTxtId: 511, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5O", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 104, Description: "Hidden Stash, snowy (500)", ObjectsTxtId: 500, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5E", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 105, Description: "Wooden Chest, snowy L (501)", ObjectsTxtId: 501, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5F", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 106, Description: "Wooden Chest, snowy R (502)", ObjectsTxtId: 502, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5G", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 107, Description: "Wooden Chest, snowy L 2 (504)", ObjectsTxtId: 504, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5I", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 108, Description: "Wooden Chest, snowy R 2 (505)", ObjectsTxtId: 505, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 109, Description: "Swinging Heads, snowy (506)", ObjectsTxtId: 506, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5K", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 110, Description: "Debris, snowy (507)", ObjectsTxtId: 507, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 111, Description: "Pole, snowy (510)", ObjectsTxtId: 510, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 112, Description: "Fire, fire small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 113, Description: "Fire, fire medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 114, Description: "Fire, fire large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 115, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 116, Description: "Red Light, (touch me) for blacksmith (523)", ObjectsTxtId: 523, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 117, Description: "Torch, expansion no snow (434)", ObjectsTxtId: 434, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 118, Description: "Waypoint, wilderness_waypoint 1 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 119, Description: "Waypoint, wilderness_waypoint 2 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 120, Description: "Waypoint, wilderness_waypoint 3 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 121, Description: "Shrub, Ice cave bubbles 01 (527)", ObjectsTxtId: 527, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2U", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 122, Description: "Shrub, Ice cave bubbles 01 (528)", ObjectsTxtId: 528, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2S", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 123, Description: "Candles, temple (538)", ObjectsTxtId: 538, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3O", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 124, Description: "Waypoint, temple (539)", ObjectsTxtId: 539, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3P", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 125, Description: "Larzuk Greeting (542)", ObjectsTxtId: 542, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 126, Description: "Larzuk Standard (543)", ObjectsTxtId: 543, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 127, Description: "Altar of the Heavens, ancientsaltar (546)", ObjectsTxtId: 546, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 128, Description: "door, ancient To Worldstone lev 1 (547)", ObjectsTxtId: 547, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 129, Description: "Weapon Rack, R (548)", ObjectsTxtId: 548, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 130, Description: "Weapon Rack, L (549)", ObjectsTxtId: 549, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 131, Description: "Armor Stand, R (550)", ObjectsTxtId: 550, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 132, Description: "Armor Stand, L (551)", ObjectsTxtId: 551, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 133, Description: "Torch, summit (552)", ObjectsTxtId: 552, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9G", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 134, Description: "Ice cave steam (555)", ObjectsTxtId: 555, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2O", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 135, Description: "funeralpire (553)", ObjectsTxtId: 553, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 136, Description: "burninglogs (554)", ObjectsTxtId: 554, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9I", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 137, Description: "dummy, Baal's lair (557)", ObjectsTxtId: 557, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 138, Description: "Tomb, temple ground (541)", ObjectsTxtId: 541, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3S", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 139, Description: "Tomb, temple ground L (544)", ObjectsTxtId: 544, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3T", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 140, Description: "BBQ Bunny (559)", ObjectsTxtId: 559, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 141, Description: "Baal Torch Big (560)", ObjectsTxtId: 560, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 142, Description: "The Ancients' Way, summit door (564)", ObjectsTxtId: 564, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4U", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 143, Description: "test data, zoo (567)", ObjectsTxtId: 567, MonstatsTxtId: -1, Direction: -1, Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 144, Description: "test data, keeper (568)", ObjectsTxtId: 568, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 145, Description: "Torch, redbaal's lair 1 (536)", ObjectsTxtId: 536, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3M", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 146, Description: "Torch, redbaal's lair 2 (537)", ObjectsTxtId: 537, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3N", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 147, Description: "The Worldstone Chamber, baals portal (563)", ObjectsTxtId: 563, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4X", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 148, Description: "fire place guy (570)", ObjectsTxtId: 570, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 149, Description: "Chest, spark (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, - {Act: 5, Type: ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "gheed-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "cain1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "akara-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "chicken-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 4, Description: "rogue1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 5, Description: "kashya-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 6, Description: "cow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 7, Description: "warriv1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 8, Description: "charsi-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 9, Description: "andariel-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 10, Description: "place_fallen-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 11, Description: "place_fallenshaman-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 12, Description: "place_bloodraven-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 13, Description: "cow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 14, Description: "camel-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 15, Description: "place_unique_pack-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 16, Description: "place_npc_pack-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 17, Description: "place_nothing-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 18, Description: "place_nothing-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 19, Description: "place_champion-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 20, Description: "navi-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 21, Description: "rogue1-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 22, Description: "rogue3-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 23, Description: "gargoyletrap-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 24, Description: "place_fallennest-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 25, Description: "place_talkingrogue-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 26, Description: "place_fallen-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "BUC", S1: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 27, Description: "place_fallenshaman-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 28, Description: "trap-horzmissile-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 29, Description: "trap-vertmissile-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 30, Description: "place_group25-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 31, Description: "place_group50-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 32, Description: "place_group75-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 33, Description: "place_group100-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 34, Description: "Bishibosh-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 35, Description: "Bonebreak-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "SCM", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 36, Description: "Coldcrow-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "LIT", LH: "LBB", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 37, Description: "Rakanishu-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 38, Description: "Treehead WoodFist-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 39, Description: "Griswold-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 40, Description: "The Countess-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 41, Description: "Pitspawn Fouldog-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 42, Description: "Flamespike the Crawler-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 43, Description: "Boneash-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "DES", RA: "LIT", LA: "LIT", S1: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 44, Description: "The Smith-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 45, Description: "The Cow King-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 46, Description: "Corpsefire-ACT 1 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 47, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 48, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 49, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 50, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 51, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 52, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 53, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 54, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 55, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 56, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 57, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 58, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 59, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 60, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 61, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 62, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 63, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 64, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 65, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 66, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 67, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 68, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 69, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 70, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 71, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 72, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 73, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 74, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 75, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 76, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 77, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 78, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 79, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 80, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 81, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 82, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 83, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 84, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 85, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 86, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 87, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 88, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 89, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 90, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 91, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 92, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 93, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 94, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 95, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 96, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 97, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 98, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 99, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 100, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 101, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 102, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 103, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 104, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 105, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 106, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 107, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 108, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 109, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 110, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 111, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 112, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 113, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 114, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 115, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 116, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 117, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 118, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 119, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 120, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 121, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 122, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 123, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 124, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 125, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 126, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 127, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 128, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 129, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 130, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 131, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 132, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 133, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 134, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 135, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 136, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 137, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 138, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 139, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 140, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 141, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 142, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 143, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 144, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 145, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 146, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 147, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 148, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 149, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 150, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 151, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 152, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 153, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 154, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 155, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 156, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 157, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 158, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 159, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 160, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 161, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 162, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 163, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 164, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 165, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 166, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 167, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 168, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 169, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 170, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 171, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 172, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 173, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 174, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 175, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 176, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 177, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 178, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 179, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 180, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 181, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 182, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 183, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 184, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 185, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 186, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 187, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 188, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 189, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 190, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 191, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 192, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 193, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 194, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 195, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 196, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 197, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 198, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 199, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 200, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 201, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 202, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 203, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 204, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 205, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 206, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 207, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 208, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 209, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 210, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 211, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 212, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 213, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 214, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 215, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 216, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 217, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 218, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 219, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 220, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 221, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 222, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 223, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 224, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 225, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 226, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 227, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 228, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 229, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 230, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 231, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 232, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 233, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 234, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 235, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 236, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 237, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 238, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 239, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 240, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 241, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 242, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 243, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 244, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 245, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 246, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 247, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 248, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 249, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 250, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 251, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 252, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 253, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 254, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 255, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 256, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 257, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 258, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 259, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 260, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 261, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 262, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 263, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 264, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 265, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 266, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 267, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 268, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 269, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 270, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 271, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 272, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 273, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 274, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 275, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 276, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 277, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 278, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 279, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 280, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 281, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 282, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 283, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 284, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 285, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 286, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 287, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 288, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 289, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 290, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 291, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 292, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 293, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 294, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 295, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 296, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 297, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 298, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 299, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 300, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 301, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 302, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 303, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 304, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 305, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 306, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 307, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 308, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 309, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 310, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 311, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 312, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 313, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 314, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 315, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 316, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 317, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 318, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 319, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 320, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 321, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 322, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 323, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 324, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 325, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 326, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 327, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 328, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 329, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 330, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 331, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 332, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 333, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 334, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 335, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 336, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 337, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 338, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 339, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 340, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 341, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 342, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 343, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 344, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 345, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 346, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 347, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 348, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 349, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 350, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 351, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 352, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 353, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 354, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 355, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 356, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 357, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 358, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 359, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 360, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 361, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 362, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 363, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 364, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 365, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 366, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 367, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 368, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 369, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 370, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 371, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 372, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 373, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 374, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 375, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 376, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 377, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 378, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 379, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 380, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 381, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 382, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 383, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 384, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 385, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 386, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 387, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 388, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 389, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 390, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 391, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 392, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 393, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 394, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 395, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 396, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 397, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 398, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 399, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 400, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 401, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 402, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 403, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 404, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 405, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 406, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 407, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 408, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 409, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 410, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 411, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 412, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 413, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 414, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 415, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 416, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 417, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 418, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 419, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 420, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 421, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 422, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 423, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 424, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 425, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 426, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 427, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 428, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 429, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 430, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 431, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 432, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 433, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 434, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 435, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 436, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 437, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 438, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 439, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 440, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 441, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 442, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 443, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 444, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 445, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 446, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 447, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 448, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 449, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 450, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 451, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 452, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 453, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 454, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 455, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 456, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 457, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 458, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 459, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 460, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 461, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 462, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 463, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 464, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 465, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 466, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 467, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 468, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 469, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 470, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 471, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 472, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 473, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 474, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 475, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 476, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 477, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 478, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 479, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 480, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 481, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 482, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 483, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 484, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 485, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 486, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 487, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 488, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 489, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 490, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 491, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 492, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 493, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 494, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 495, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 496, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 497, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 498, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 499, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 500, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 501, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 502, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 503, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 504, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 505, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 506, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 507, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 508, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 509, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 510, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 511, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 512, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 513, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 514, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 515, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 516, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 517, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 518, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 519, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 520, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 521, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 522, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 523, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 524, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 525, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 526, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 527, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 528, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 529, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 530, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 531, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 532, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 533, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 534, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 535, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 536, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 537, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 538, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 539, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 540, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 541, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 542, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 543, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 544, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 545, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 546, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 547, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 548, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 549, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 550, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 551, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 552, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 553, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 554, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 555, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 556, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 557, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 558, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 559, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 560, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 561, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 562, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 563, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 564, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 565, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 566, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 567, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 568, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 569, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 570, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 571, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 572, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 573, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 574, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 575, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 576, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 577, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 578, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 579, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 580, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 581, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 582, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 583, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 584, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 585, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 586, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 587, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 588, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 589, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 590, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 591, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 592, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 593, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 594, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 595, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 596, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 597, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 598, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 599, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 600, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 601, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 602, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 603, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 604, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 605, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 606, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 607, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 608, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 609, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 610, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 611, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 612, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 613, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 614, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 615, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 616, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 617, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 618, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 619, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 620, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 621, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 622, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 623, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 624, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 625, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 626, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 627, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 628, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 629, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 630, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 631, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 632, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 633, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 634, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 635, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 636, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 637, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 638, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 639, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 640, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 641, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 642, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 643, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 644, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 645, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 646, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 647, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 648, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 649, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 650, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 651, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 652, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 653, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 654, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 655, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 656, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 657, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 658, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 659, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 660, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 661, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 662, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 663, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 664, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 665, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 666, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 667, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 668, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 669, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 670, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 671, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 672, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 673, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 674, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 675, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 676, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 677, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 678, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 679, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 680, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 681, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 682, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 683, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 684, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 685, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 686, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 687, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 688, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 689, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 690, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 691, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 692, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 693, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 694, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 695, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 696, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 697, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 698, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 699, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 700, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 701, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 702, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 703, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 704, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 705, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 706, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 707, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 708, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 709, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 710, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 711, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 712, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 713, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 714, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 715, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 716, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 717, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 718, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 719, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 720, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 721, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 722, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 723, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 724, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 725, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 726, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 727, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 728, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 729, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 730, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 731, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 732, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 733, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 734, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 735, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 736, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 737, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 738, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 739, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 740, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 741, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 742, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 743, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 744, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 745, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 746, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 747, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 748, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 749, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 750, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 751, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 752, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 753, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 754, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 755, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 756, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 757, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 758, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 759, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 760, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 761, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 762, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 763, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 764, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 765, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 766, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 767, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 768, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 769, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 770, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 771, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 772, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 773, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 774, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 775, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 776, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 777, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 778, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 779, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 780, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 781, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 782, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 783, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 784, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 785, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 786, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 787, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 788, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 789, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 790, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 791, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 792, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 793, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 794, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 795, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 796, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 797, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 798, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 799, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 800, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 801, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 802, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 803, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 804, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 805, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 806, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 807, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 808, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 809, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 810, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 811, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 812, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 813, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 814, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 815, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 816, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 817, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 818, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 819, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 820, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 821, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 822, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 823, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 824, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 825, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 826, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 827, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 828, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 829, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 830, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 831, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 832, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 833, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 834, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 835, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 836, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 837, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 838, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 839, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 840, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 841, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 842, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 843, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 844, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 845, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 846, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 0, Description: "rogue fountain (12)", ObjectsTxtId: 12, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 1, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 2, Description: "Fire, rogue camp (39)", ObjectsTxtId: 39, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 3, Description: "flag 1 (35)", ObjectsTxtId: 35, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 4, Description: "flag 2 (36)", ObjectsTxtId: 36, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 5, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 6, Description: "Cairn Stone, Alpha (17)", ObjectsTxtId: 17, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 7, Description: "Cairn Stone, Beta (18)", ObjectsTxtId: 18, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 8, Description: "Cairn Stone, Gamma (19)", ObjectsTxtId: 19, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 9, Description: "Cairn Stone, Delta (20)", ObjectsTxtId: 20, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 10, Description: "Cairn Stone, Lambda (21)", ObjectsTxtId: 21, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 11, Description: "Cairn Stone, Theta (inactive) (22)", ObjectsTxtId: 22, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 12, Description: "Tree of Inifuss (30)", ObjectsTxtId: 30, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 13, Description: "water effect 2 (70)", ObjectsTxtId: 70, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 14, Description: "water effect 2 (70)", ObjectsTxtId: 70, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 15, Description: "water effect 1 (69)", ObjectsTxtId: 69, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 16, Description: "water effect 1 (69)", ObjectsTxtId: 69, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 17, Description: "brazier (29)", ObjectsTxtId: 29, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 18, Description: "bloody fountain (31)", ObjectsTxtId: 31, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 19, Description: "candles 1 (33)", ObjectsTxtId: 33, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 20, Description: "candles 2 (34)", ObjectsTxtId: 34, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 21, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 22, Description: "Invisible object (61)", ObjectsTxtId: 61, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 23, Description: "Invisible river sound 1 (65)", ObjectsTxtId: 65, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 24, Description: "Invisible river sound 2 (66)", ObjectsTxtId: 66, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 25, Description: "The Moldy Tome (8)", ObjectsTxtId: 8, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 26, Description: "Cain's Gibbet (26)", ObjectsTxtId: 26, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 27, Description: "Undefiled Grave (28)", ObjectsTxtId: 28, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 28, Description: "bubbling pool of blood (82)", ObjectsTxtId: 82, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 29, Description: "Shrine (2)", ObjectsTxtId: 2, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 30, Description: "Shrine, forest altar (81)", ObjectsTxtId: 81, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 31, Description: "Shrine, healing well (84)", ObjectsTxtId: 84, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 32, Description: "Shrine, horn (83)", ObjectsTxtId: 83, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 33, Description: "invisible town sound (78)", ObjectsTxtId: 78, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 34, Description: "invisible object (61)", ObjectsTxtId: 61, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 35, Description: "flies (103)", ObjectsTxtId: 103, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 36, Description: "Horadric Malus (108)", ObjectsTxtId: 108, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 37, Description: "Waypoint (119)", ObjectsTxtId: 119, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WP", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 38, Description: "error ? (-580)", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 39, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 40, Description: "Hidden Stash, rock wilderness (159)", ObjectsTxtId: 159, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 41, Description: "Hiding Spot, cliff wilderness (163)", ObjectsTxtId: 163, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 42, Description: "Hollow Log (169)", ObjectsTxtId: 169, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 43, Description: "Fire, small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 44, Description: "Fire, medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 45, Description: "Fire, large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 46, Description: "Armor Stand, 1R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 47, Description: "Armor Stand, 2L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 48, Description: "Weapon Rack, 1R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 49, Description: "Weapon Rack, 2L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 50, Description: "Bookshelf L (179)", ObjectsTxtId: 179, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 51, Description: "Bookshelf R (180)", ObjectsTxtId: 180, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 52, Description: "Waypoint (119)", ObjectsTxtId: 119, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WP", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 53, Description: "Waypoint, wilderness (157)", ObjectsTxtId: 157, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WN", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 54, Description: "Bed R (247)", ObjectsTxtId: 247, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 55, Description: "Bed L (248)", ObjectsTxtId: 248, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 56, Description: "Hidden Stash, rock wilderness (155)", ObjectsTxtId: 155, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 57, Description: "Loose Rock, wilderness (174)", ObjectsTxtId: 174, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 58, Description: "Loose Boulder, wilderness (175)", ObjectsTxtId: 175, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 59, Description: "Chest, R Large (139)", ObjectsTxtId: 139, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 60, Description: "Chest, R Tallskinney (140)", ObjectsTxtId: 140, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 61, Description: "Chest, R Med (141)", ObjectsTxtId: 141, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 62, Description: "Chest, L (144)", ObjectsTxtId: 144, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 63, Description: "Chest, L Large (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 64, Description: "Chest, 1L general (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 65, Description: "Chest, 2R general (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 66, Description: "Chest, 3R general (242)", ObjectsTxtId: 242, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 67, Description: "Dead Rogue, 1 (54)", ObjectsTxtId: 54, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 68, Description: "Dead Rogue, 2 (55)", ObjectsTxtId: 55, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 69, Description: "Dead Rogue, rolling (56)", ObjectsTxtId: 56, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 70, Description: "Dead Rogue, on a stick 1 (57)", ObjectsTxtId: 57, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 71, Description: "Dead Rogue, on a stick 2 (58)", ObjectsTxtId: 58, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 72, Description: "Skeleton (171)", ObjectsTxtId: 171, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 73, Description: "Guard Corpse, on a stick (178)", ObjectsTxtId: 178, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 74, Description: "Body, burning town 1 (239)", ObjectsTxtId: 239, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 75, Description: "Body, burning town 2 (245)", ObjectsTxtId: 245, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 76, Description: "A Trap, exploding cow (250)", ObjectsTxtId: 250, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "EW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 77, Description: "Well, fountain 1 (111)", ObjectsTxtId: 111, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 78, Description: "Well, cavewell caves (138)", ObjectsTxtId: 138, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 79, Description: "Well, cathedralwell inside (132)", ObjectsTxtId: 132, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 80, Description: "Shrine, mana well 1 (164)", ObjectsTxtId: 164, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 81, Description: "Shrine, mana well 2 (165)", ObjectsTxtId: 165, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 82, Description: "Shrine, healthorama (77)", ObjectsTxtId: 77, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 83, Description: "Shrine, bull shrine, health, tombs (85)", ObjectsTxtId: 85, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 84, Description: "stele,magic shrine, stone, desert (86)", ObjectsTxtId: 86, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 85, Description: "Shrine, cathedral (262)", ObjectsTxtId: 262, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 86, Description: "Shrine, jail 1 (263)", ObjectsTxtId: 263, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JB", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 87, Description: "Shrine, jail 2 (264)", ObjectsTxtId: 264, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JD", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 88, Description: "Shrine, jail 3 (265)", ObjectsTxtId: 265, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JF", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 89, Description: "Casket, 1 R (50)", ObjectsTxtId: 50, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 90, Description: "Casket, 2 L (51)", ObjectsTxtId: 51, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 91, Description: "Casket, 3 (79)", ObjectsTxtId: 79, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 92, Description: "Casket, 4 (53)", ObjectsTxtId: 53, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 93, Description: "Casket, 5 (1)", ObjectsTxtId: 1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 94, Description: "Casket, 6 (3)", ObjectsTxtId: 3, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 95, Description: "Barrel (7)", ObjectsTxtId: 7, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 96, Description: "Crate (46)", ObjectsTxtId: 46, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 97, Description: "torch 2 wall (38)", ObjectsTxtId: 38, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 98, Description: "cabin stool (256)", ObjectsTxtId: 256, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 99, Description: "cabin wood (257)", ObjectsTxtId: 257, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 100, Description: "cabin wood more (258)", ObjectsTxtId: 258, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 101, Description: "Door, secret 1 (129)", ObjectsTxtId: 129, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "H2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 102, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 103, Description: "Wirt's body (268)", ObjectsTxtId: 268, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 104, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 105, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 106, Description: "hell light source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 107, Description: "hell light source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 108, Description: "hell light source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 109, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 110, Description: "cain start position (385)", ObjectsTxtId: 385, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 111, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 112, Description: "Red Portal (321)", ObjectsTxtId: 321, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 113, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 114, Description: "Myhrginoc's Book of Lore", ObjectsTxtId: 8, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 115, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 116, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 117, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 118, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 119, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 120, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 121, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 122, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 123, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 124, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 125, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 126, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 127, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 128, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 129, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 130, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 131, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 132, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 133, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 134, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 135, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 136, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 137, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 138, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 139, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 140, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 141, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 142, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 143, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 144, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 145, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 146, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 147, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 148, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 149, Description: "ACT 1 TABLE DO NOT USE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "warriv2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ss", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "atma-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ss", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "drognan-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "fara-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 4, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 5, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 6, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 7, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 8, Description: "greiz-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 9, Description: "elzix-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 10, Description: "lysander-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 11, Description: "meshif1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 12, Description: "geglash-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 13, Description: "jerhyn-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 14, Description: "place_unique_pack-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 15, Description: "place_npc_pack-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 16, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 17, Description: "summoner-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 18, Description: "Radament-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 19, Description: "duriel-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 20, Description: "cain2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 21, Description: "place_champion-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 22, Description: "act2male-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "YNG", TR: "MED", LG: "MED", S1: "FEZ", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 23, Description: "act2female-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 24, Description: "act2guard1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 25, Description: "act2vendor1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 26, Description: "act2vendor2-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 27, Description: "place_tightspotboss-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 28, Description: "fish-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 29, Description: "place_talkingguard-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 30, Description: "place_dumbguard-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 31, Description: "place_maggot-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 32, Description: "place_maggotegg-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 33, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 34, Description: "gargoyletrap-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 35, Description: "trap-horzmissile-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 36, Description: "trap-vertmissile-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 37, Description: "place_group25-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 38, Description: "place_group50-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 39, Description: "place_group75-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 40, Description: "place_group100-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 41, Description: "lightningspire-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "A1", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 42, Description: "firetower-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 13, Base: "/Data/Global/Monsters", Token: "PB", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 43, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 44, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 45, Description: "place_nothing-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 46, Description: "Bloodwitch the Wild-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MED", RA: "MED", LA: "MED", LH: "WHP", SH: "BUC", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", ColorMap: "/Data/Global/Monsters/PW/COF/Palshift.dat", Index: 3}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 47, Description: "Fangskin-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/SD/COF/Palshift.dat", Index: 6}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 48, Description: "Beetleburst-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 5, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "MED", TR: "LIT", RA: "HVY", ColorMap: "/Data/Global/Monsters/SC/COF/Palshift.dat", Index: 6}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 49, Description: "Leatherarm-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/MM/COF/Palshift.dat", Index: 7}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 50, Description: "Coldworm the Burrower-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 51, Description: "Fire Eye-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/SR/COF/Palshift.dat", Index: 5}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 52, Description: "Dark Elder-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", S1: "MED", S2: "MED", S3: "BLD", ColorMap: "/Data/Global/Monsters/ZM/COF/Palshift.dat", Index: 6}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 53, Description: "Ancient Kaa the Soulless-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", ColorMap: "/Data/Global/Monsters/GY/COF/Palshift.dat", Index: 4}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 54, Description: "act2guard4-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 55, Description: "act2guard5-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", LG: "MED", RA: "MED", LA: "MED", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 56, Description: "sarcophagus-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 57, Description: "tyrael1-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 58, Description: "skeleton5-ACT 2 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "AXE", SH: "LRG", S1: "DES", S2: "DES", S3: "LIT", ColorMap: "/Data/Global/Monsters/SK/COF/Palshift.dat", Index: 7}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 59, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 60, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 61, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 62, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 63, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 64, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 65, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 66, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 67, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 68, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 69, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 70, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 71, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 72, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 73, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 74, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 75, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 76, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 77, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 78, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 79, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 80, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 81, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 82, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 83, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 84, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 85, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 86, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 87, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 88, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 89, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 90, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 91, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 92, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 93, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 94, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 95, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 96, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 97, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 98, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 99, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 100, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 101, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 102, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 103, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 104, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 105, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 106, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 107, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 108, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 109, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 110, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 111, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 112, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 113, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 114, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 115, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 116, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 117, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 118, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 119, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 120, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 121, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 122, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 123, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 124, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 125, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 126, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 127, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 128, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 129, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 130, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 131, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 132, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 133, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 134, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 135, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 136, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 137, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 138, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 139, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 140, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 141, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 142, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 143, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 144, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 145, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 146, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 147, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 148, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 149, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 150, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 151, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 152, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 153, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 154, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 155, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 156, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 157, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 158, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 159, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 160, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 161, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 162, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 163, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 164, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 165, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 166, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 167, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 168, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 169, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 170, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 171, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 172, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 173, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 174, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 175, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 176, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 177, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 178, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 179, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 180, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 181, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 182, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 183, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 184, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 185, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 186, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 187, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 188, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 189, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 190, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 191, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 192, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 193, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 194, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 195, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 196, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 197, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 198, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 199, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 200, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 201, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 202, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 203, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 204, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 205, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 206, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 207, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 208, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 209, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 210, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 211, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 212, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 213, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 214, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 215, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 216, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 217, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 218, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 219, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 220, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 221, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 222, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 223, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 224, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 225, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 226, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 227, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 228, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 229, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 230, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 231, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 232, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 233, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 234, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 235, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 236, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 237, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 238, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 239, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 240, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 241, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 242, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 243, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 244, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 245, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 246, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 247, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 248, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 249, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 250, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 251, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 252, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 253, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 254, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 255, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 256, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 257, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 258, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 259, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 260, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 261, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 262, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 263, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 264, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 265, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 266, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 267, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 268, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 269, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 270, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 271, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 272, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 273, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 274, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 275, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 276, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 277, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 278, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 279, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 280, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 281, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 282, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 283, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 284, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 285, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 286, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 287, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 288, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 289, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 290, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 291, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 292, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 293, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 294, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 295, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 296, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 297, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 298, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 299, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 300, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 301, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 302, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 303, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 304, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 305, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 306, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 307, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 308, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 309, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 310, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 311, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 312, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 313, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 314, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 315, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 316, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 317, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 318, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 319, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 320, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 321, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 322, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 323, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 324, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 325, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 326, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 327, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 328, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 329, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 330, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 331, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 332, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 333, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 334, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 335, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 336, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 337, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 338, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 339, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 340, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 341, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 342, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 343, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 344, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 345, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 346, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 347, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 348, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 349, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 350, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 351, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 352, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 353, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 354, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 355, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 356, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 357, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 358, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 359, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 360, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 361, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 362, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 363, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 364, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 365, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 366, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 367, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 368, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 369, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 370, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 371, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 372, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 373, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 374, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 375, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 376, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 377, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 378, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 379, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 380, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 381, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 382, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 383, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 384, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 385, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 386, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 387, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 388, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 389, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 390, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 391, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 392, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 393, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 394, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 395, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 396, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 397, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 398, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 399, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 400, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 401, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 402, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 403, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 404, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 405, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 406, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 407, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 408, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 409, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 410, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 411, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 412, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 413, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 414, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 415, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 416, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 417, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 418, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 419, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 420, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 421, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 422, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 423, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 424, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 425, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 426, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 427, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 428, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 429, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 430, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 431, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 432, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 433, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 434, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 435, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 436, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 437, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 438, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 439, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 440, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 441, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 442, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 443, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 444, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 445, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 446, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 447, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 448, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 449, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 450, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 451, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 452, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 453, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 454, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 455, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 456, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 457, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 458, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 459, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 460, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 461, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 462, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 463, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 464, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 465, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 466, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 467, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 468, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 469, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 470, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 471, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 472, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 473, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 474, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 475, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 476, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 477, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 478, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 479, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 480, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 481, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 482, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 483, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 484, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 485, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 486, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 487, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 488, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 489, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 490, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 491, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 492, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 493, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 494, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 495, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 496, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 497, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 498, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 499, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 500, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 501, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 502, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 503, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 504, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 505, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 506, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 507, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 508, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 509, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 510, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 511, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 512, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 513, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 514, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 515, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 516, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 517, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 518, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 519, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 520, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 521, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 522, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 523, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 524, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 525, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 526, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 527, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 528, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 529, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 530, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 531, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 532, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 533, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 534, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 535, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 536, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 537, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 538, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 539, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 540, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 541, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 542, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 543, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 544, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 545, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 546, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 547, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 548, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 549, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 550, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 551, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 552, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 553, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 554, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 555, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 556, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 557, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 558, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 559, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 560, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 561, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 562, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 563, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 564, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 565, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 566, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 567, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 568, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 569, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 570, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 571, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 572, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 573, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 574, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 575, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 576, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 577, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 578, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 579, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 580, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 581, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 582, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 583, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 584, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 585, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 586, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 587, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 588, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 589, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 590, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 591, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 592, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 593, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 594, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 595, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 596, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 597, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 598, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 599, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 600, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 601, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 602, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 603, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 604, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 605, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 606, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 607, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 608, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 609, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 610, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 611, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 612, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 613, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 614, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 615, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 616, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 617, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 618, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 619, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 620, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 621, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 622, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 623, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 624, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 625, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 626, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 627, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 628, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 629, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 630, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 631, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 632, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 633, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 634, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 635, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 636, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 637, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 638, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 639, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 640, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 641, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 642, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 643, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 644, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 645, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 646, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 647, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 648, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 649, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 650, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 651, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 652, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 653, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 654, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 655, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 656, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 657, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 658, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 659, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 660, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 661, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 662, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 663, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 664, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 665, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 666, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 667, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 668, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 669, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 670, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 671, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 672, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 673, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 674, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 675, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 676, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 677, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 678, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 679, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 680, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 681, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 682, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 683, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 684, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 685, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 686, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 687, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 688, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 689, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 690, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 691, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 692, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 693, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 694, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 695, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 696, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 697, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 698, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 699, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 700, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 701, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 702, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 703, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 704, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 705, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 706, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 707, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 708, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 709, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 710, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 711, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 712, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 713, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 714, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 715, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 716, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 717, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 718, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 719, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 720, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 721, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 722, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 723, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 724, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 725, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 726, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 727, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 728, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 729, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 730, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 731, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 732, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 733, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 734, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 735, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 736, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 737, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 738, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 739, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 740, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 741, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 742, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 743, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 744, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 745, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 746, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 747, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 748, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 749, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 750, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 751, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 752, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 753, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 754, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 755, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 756, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 757, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 758, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 759, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 760, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 761, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 762, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 763, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 764, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 765, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 766, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 767, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 768, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 769, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 770, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 771, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 772, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 773, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 774, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 775, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 776, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 777, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 778, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 779, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 780, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 781, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 782, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 783, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 784, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 785, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 786, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 787, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 788, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 789, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 790, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 791, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 792, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 793, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 794, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 795, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 796, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 797, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 798, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 799, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 800, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 801, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 802, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 803, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 804, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 805, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 806, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 807, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 808, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 809, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 810, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 811, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 812, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 813, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 814, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 815, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 816, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 817, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 818, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 819, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 820, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 821, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 822, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 823, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 824, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 825, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 826, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 827, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 828, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 829, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 830, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 831, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 832, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 833, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 834, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 835, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 836, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 837, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 838, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 839, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 840, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 841, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 842, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 843, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 844, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 845, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 846, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 847, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 848, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 849, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 850, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 851, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 852, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 853, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 854, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 855, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 856, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 857, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 858, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 859, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 860, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 861, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 862, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 863, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 864, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 865, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 866, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 867, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 868, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 869, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 870, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 871, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 872, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 873, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 874, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 875, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 876, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 877, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 878, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 879, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 880, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 881, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 882, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 883, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 884, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 885, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 886, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 887, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 888, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 889, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 890, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 891, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 892, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 893, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 894, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 895, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 896, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 897, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 898, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 899, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 900, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 901, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 902, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 903, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 904, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 905, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 0, Description: "Trap Door (74)", ObjectsTxtId: 74, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 1, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 2, Description: "Teleport Pad 1 (192)", ObjectsTxtId: 192, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 3, Description: "Teleport Pad 2 (304)", ObjectsTxtId: 304, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 4, Description: "Teleport Pad 3 (305)", ObjectsTxtId: 305, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AA", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 5, Description: "Teleport Pad 4 (306)", ObjectsTxtId: 306, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AA", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 6, Description: "brazier 3 (101)", ObjectsTxtId: 101, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 7, Description: "brazier floor (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 8, Description: "invisible town sound (78)", ObjectsTxtId: 78, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 9, Description: "flies (103)", ObjectsTxtId: 103, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 10, Description: "waypoint (156)", ObjectsTxtId: 156, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 11, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 12, Description: "Well, cathedralwell inside (132)", ObjectsTxtId: 132, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 13, Description: "Door, secret 1 (129)", ObjectsTxtId: 129, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "H2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 14, Description: "Horazon's Journal (357)", ObjectsTxtId: 357, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 15, Description: "Door, Tyrael's door (153)", ObjectsTxtId: 153, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 16, Description: "Jerhyn, placeholder 1 (121)", ObjectsTxtId: 121, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 17, Description: "Jerhyn, placeholder 2 (122)", ObjectsTxtId: 122, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 18, Description: "Closed Door, slimedoor R (229)", ObjectsTxtId: 229, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 19, Description: "Closed Door, slimedoor L (230)", ObjectsTxtId: 230, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 20, Description: "a Trap, test data floortrap (196)", ObjectsTxtId: 196, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 21, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 22, Description: "a Trap, spikes tombs floortrap (261)", ObjectsTxtId: 261, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 23, Description: "Tainted Sun Altar (149)", ObjectsTxtId: 149, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZA", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 24, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 25, Description: "Large Urn, urn 1 (4)", ObjectsTxtId: 4, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 26, Description: "Corona, urn 2 (9)", ObjectsTxtId: 9, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 27, Description: "Urn, urn 3 (52)", ObjectsTxtId: 52, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 28, Description: "Large Urn, urn 4 (94)", ObjectsTxtId: 94, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 29, Description: "Large Urn, urn 5 (95)", ObjectsTxtId: 95, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 30, Description: "Jug, desert 1 (142)", ObjectsTxtId: 142, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 31, Description: "Jug, desert 2 (143)", ObjectsTxtId: 143, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 32, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 33, Description: "Chest, L Large 1 (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 34, Description: "Chest, L Large tomb 1 (87)", ObjectsTxtId: 87, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 35, Description: "Chest, R Large tomb 2 (88)", ObjectsTxtId: 88, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 36, Description: "Chest, R Med (146)", ObjectsTxtId: 146, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 37, Description: "Chest, R Med (146)", ObjectsTxtId: 146, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 38, Description: "Chest, R Large desert tomb (147)", ObjectsTxtId: 147, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 39, Description: "Chest, L Large desert tomb (148)", ObjectsTxtId: 148, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 40, Description: "Chest, 1L general (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 41, Description: "Chest, 2R general (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 42, Description: "Chest, 3R general (242)", ObjectsTxtId: 242, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 43, Description: "Chest, 3L general (243)", ObjectsTxtId: 243, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 44, Description: "Chest, L Med (176)", ObjectsTxtId: 176, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 45, Description: "Chest, L Large 2 (177)", ObjectsTxtId: 177, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 46, Description: "Chest, L Tallskinney (198)", ObjectsTxtId: 198, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 47, Description: "Rat's Nest (246)", ObjectsTxtId: 246, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 48, Description: "brazier (29)", ObjectsTxtId: 29, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 49, Description: "Flame, fire small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 50, Description: "Flame, fire medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 51, Description: "Fire, fire large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 52, Description: "flame, no damage (273)", ObjectsTxtId: 273, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 53, Description: "brazier celler (283)", ObjectsTxtId: 283, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 54, Description: "Shrine, bull health tombs (85)", ObjectsTxtId: 85, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 55, Description: "stele, magic shrine stone desert (86)", ObjectsTxtId: 86, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 56, Description: "Shrine, palace health R harom arcane (109)", ObjectsTxtId: 109, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 57, Description: "Shrine, snake woman magic tomb arcane (116)", ObjectsTxtId: 116, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 58, Description: "Shrine, dshrine2 (134)", ObjectsTxtId: 134, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 59, Description: "Shrine, desertshrine 3 (135)", ObjectsTxtId: 135, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 60, Description: "Shrine, dshrine 1 a (136)", ObjectsTxtId: 136, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 61, Description: "Shrine, dshrine 1 b (150)", ObjectsTxtId: 150, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZV", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 62, Description: "Shrine, dshrine 4 (151)", ObjectsTxtId: 151, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZE", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 63, Description: "Shrine, health well desert (172)", ObjectsTxtId: 172, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 64, Description: "Shrine, mana well7 desert (173)", ObjectsTxtId: 173, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 65, Description: "Shrine, magic shrine sewers (279)", ObjectsTxtId: 279, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WJ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 66, Description: "Shrine, healthwell sewers (280)", ObjectsTxtId: 280, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 67, Description: "Shrine, manawell sewers (281)", ObjectsTxtId: 281, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 68, Description: "Shrine, magic shrine sewers dungeon (282)", ObjectsTxtId: 282, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 69, Description: "Shrine, mana well3 tomb (166)", ObjectsTxtId: 166, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 70, Description: "Shrine, mana well4 harom (167)", ObjectsTxtId: 167, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 71, Description: "Well, fountain2 desert tomb (113)", ObjectsTxtId: 113, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 72, Description: "Well, desertwell tomb (137)", ObjectsTxtId: 137, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 73, Description: "Sarcophagus, mummy coffin L tomb (89)", ObjectsTxtId: 89, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 74, Description: "Armor stand, 1 R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 75, Description: "Armor stand, 2 L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 76, Description: "Weapon Rack, 1 R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 77, Description: "Weapon Rack, 2 L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 78, Description: "Corpse, guard (154)", ObjectsTxtId: 154, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 79, Description: "Skeleton (171)", ObjectsTxtId: 171, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 80, Description: "Guard Corpse, on stick (178)", ObjectsTxtId: 178, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 81, Description: "Corpse, guard 2 (270)", ObjectsTxtId: 270, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 82, Description: "Corpse, villager 1 (271)", ObjectsTxtId: 271, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 83, Description: "Corpse, villager 2 (272)", ObjectsTxtId: 272, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 84, Description: "Goo Pile, for sand maggot lair (266)", ObjectsTxtId: 266, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 85, Description: "Hidden Stash, tiny pixel shaped (274)", ObjectsTxtId: 274, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 86, Description: "Rat's Nest, sewers (244)", ObjectsTxtId: 244, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 87, Description: "Sarcophagus, anubis coffin tomb (284)", ObjectsTxtId: 284, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 88, Description: "waypoint, celler (288)", ObjectsTxtId: 288, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 89, Description: "Portal to, arcane portal (298)", ObjectsTxtId: 298, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 90, Description: "Bed, harum (289)", ObjectsTxtId: 289, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 91, Description: "wall torch L for tombs (296)", ObjectsTxtId: 296, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QD", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 92, Description: "wall torch R for tombs (297)", ObjectsTxtId: 297, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 93, Description: "brazier small desert town tombs (287)", ObjectsTxtId: 287, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 94, Description: "brazier tall desert town tombs (286)", ObjectsTxtId: 286, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 95, Description: "brazier general sewers tomb desert (285)", ObjectsTxtId: 285, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 96, Description: "Closed Door, iron grate L (290)", ObjectsTxtId: 290, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 97, Description: "Closed Door, iron grate R (291)", ObjectsTxtId: 291, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 98, Description: "Door, wooden grate L (292)", ObjectsTxtId: 292, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 99, Description: "Door, wooden grate R (293)", ObjectsTxtId: 293, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 100, Description: "Door, wooden L (294)", ObjectsTxtId: 294, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 101, Description: "Closed Door, wooden R (295)", ObjectsTxtId: 295, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 102, Description: "Shrine, arcane (133)", ObjectsTxtId: 133, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 103, Description: "Magic Shrine, arcane (303)", ObjectsTxtId: 303, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HD", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 104, Description: "Magic Shrine, haram 1 (299)", ObjectsTxtId: 299, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HB", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 105, Description: "Magic Shrine, haram 2 (300)", ObjectsTxtId: 300, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HC", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 106, Description: "maggot well health (301)", ObjectsTxtId: 301, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 107, Description: "Shrine, maggot well mana (302)", ObjectsTxtId: 302, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 108, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 109, Description: "Chest, horadric cube (354)", ObjectsTxtId: 354, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 110, Description: "Tomb signs in Arcane (582)", ObjectsTxtId: 582, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 111, Description: "Dead Guard, harem 1 (314)", ObjectsTxtId: 314, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 112, Description: "Dead Guard, harem 2 (315)", ObjectsTxtId: 315, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 113, Description: "Dead Guard, harem 3 (316)", ObjectsTxtId: 316, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 114, Description: "Dead Guard, harem 4 (317)", ObjectsTxtId: 317, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 115, Description: "Waypoint, sewer (323)", ObjectsTxtId: 323, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 116, Description: "Well, tomb (322)", ObjectsTxtId: 322, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 117, Description: "drinker (110)", ObjectsTxtId: 110, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 118, Description: "gesturer (112)", ObjectsTxtId: 112, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N6", Mode: "S2", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 119, Description: "turner (114)", ObjectsTxtId: 114, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 120, Description: "Chest, horadric scroll (355)", ObjectsTxtId: 355, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 121, Description: "Chest, staff of kings (356)", ObjectsTxtId: 356, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 122, Description: "Horazon's Journal (357)", ObjectsTxtId: 357, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 123, Description: "helllight source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 124, Description: "helllight source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 125, Description: "helllight source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 126, Description: "orifice, place Horadric Staff (152)", ObjectsTxtId: 152, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 127, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 128, Description: "Chest, arcane big L (387)", ObjectsTxtId: 387, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 129, Description: "Chest, arcane big R (389)", ObjectsTxtId: 389, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 130, Description: "Chest, arcane small L (390)", ObjectsTxtId: 390, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 131, Description: "Chest, arcane small R (391)", ObjectsTxtId: 391, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 132, Description: "Casket, arcane (388)", ObjectsTxtId: 388, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 133, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 134, Description: "Waypoint, valley (402)", ObjectsTxtId: 402, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YI", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 135, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 136, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 137, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 138, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 139, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 140, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 141, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 142, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 143, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 144, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 145, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 146, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 147, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 148, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 149, Description: "ACT 2 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "cain3-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "place_champion-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "act3male-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "MED", RA: "MED", LA: "MED", RH: "BAN", LH: "BUK", S1: "HBD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "act3female-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "BTP", LG: "DLN", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 4, Description: "asheara-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 5, Description: "hratli-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 6, Description: "alkor-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 7, Description: "ormus-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 8, Description: "meshif2-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 9, Description: "place_amphibian-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 10, Description: "place_tentacle_ns-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 11, Description: "place_tentacle_ew-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 5, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 12, Description: "place_fetishnest-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 13, Description: "trap-horzmissile-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 14, Description: "trap-vertmissile-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 15, Description: "natalya-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 16, Description: "place_mosquitonest-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 17, Description: "place_group25-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 18, Description: "place_group50-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 19, Description: "place_group75-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 20, Description: "place_group100-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 21, Description: "compellingorb-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 22, Description: "mephisto-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 23, Description: "trap-melee-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 24, Description: "mephistospirit-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 2, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 25, Description: "act3hire-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "LSD", SH: "KIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 26, Description: "place_fetish-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 27, Description: "place_fetishshaman-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 28, Description: "Web Mage the Burning-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 29, Description: "Witch Doctor Endugu-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 30, Description: "Stormtree-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 31, Description: "Sarina the Battlemaid-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 32, Description: "Icehawk Riftwing-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 33, Description: "Ismail Vilehand-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 34, Description: "Geleb Flamefinger-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 35, Description: "Bremm Sparkfist-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 36, Description: "Toorc Icefist-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 37, Description: "Wyand Voidfinger-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 38, Description: "Maffer Dragonhand-ACT 3 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 39, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 40, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 41, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 42, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 43, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 44, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 45, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 46, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 47, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 48, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 49, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 50, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 51, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 52, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 53, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 54, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 55, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 56, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 57, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 58, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 59, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 60, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 61, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 62, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 63, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 64, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 65, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 66, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 67, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 68, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 69, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 70, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 71, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 72, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 73, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 74, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 75, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 76, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 77, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 78, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 79, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 80, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 81, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 82, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 83, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 84, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 85, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 86, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 87, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 88, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 89, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 90, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 91, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 92, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 93, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 94, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 95, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 96, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 97, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 98, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 99, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 100, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 101, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 102, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 103, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 104, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 105, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 106, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 107, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 108, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 109, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 110, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 111, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 112, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 113, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 114, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 115, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 116, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 117, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 118, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 119, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 120, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 121, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 122, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 123, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 124, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 125, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 126, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 127, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 128, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 129, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 130, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 131, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 132, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 133, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 134, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 135, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 136, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 137, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 138, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 139, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 140, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 141, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 142, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 143, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 144, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 145, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 146, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 147, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 148, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 149, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 150, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 151, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 152, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 153, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 154, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 155, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 156, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 157, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 158, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 159, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 160, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 161, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 162, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 163, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 164, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 165, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 166, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 167, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 168, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 169, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 170, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 171, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 172, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 173, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 174, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 175, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 176, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 177, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 178, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 179, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 180, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 181, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 182, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 183, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 184, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 185, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 186, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 187, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 188, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 189, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 190, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 191, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 192, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 193, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 194, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 195, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 196, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 197, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 198, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 199, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 200, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 201, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 202, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 203, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 204, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 205, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 206, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 207, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 208, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 209, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 210, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 211, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 212, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 213, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 214, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 215, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 216, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 217, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 218, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 219, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 220, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 221, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 222, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 223, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 224, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 225, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 226, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 227, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 228, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 229, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 230, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 231, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 232, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 233, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 234, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 235, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 236, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 237, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 238, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 239, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 240, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 241, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 242, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 243, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 244, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 245, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 246, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 247, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 248, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 249, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 250, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 251, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 252, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 253, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 254, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 255, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 256, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 257, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 258, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 259, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 260, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 261, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 262, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 263, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 264, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 265, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 266, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 267, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 268, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 269, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 270, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 271, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 272, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 273, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 274, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 275, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 276, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 277, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 278, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 279, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 280, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 281, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 282, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 283, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 284, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 285, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 286, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 287, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 288, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 289, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 290, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 291, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 292, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 293, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 294, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 295, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 296, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 297, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 298, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 299, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 300, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 301, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 302, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 303, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 304, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 305, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 306, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 307, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 308, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 309, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 310, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 311, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 312, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 313, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 314, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 315, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 316, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 317, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 318, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 319, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 320, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 321, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 322, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 323, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 324, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 325, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 326, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 327, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 328, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 329, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 330, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 331, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 332, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 333, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 334, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 335, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 336, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 337, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 338, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 339, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 340, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 341, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 342, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 343, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 344, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 345, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 346, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 347, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 348, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 349, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 350, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 351, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 352, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 353, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 354, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 355, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 356, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 357, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 358, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 359, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 360, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 361, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 362, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 363, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 364, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 365, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 366, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 367, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 368, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 369, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 370, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 371, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 372, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 373, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 374, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 375, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 376, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 377, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 378, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 379, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 380, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 381, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 382, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 383, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 384, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 385, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 386, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 387, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 388, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 389, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 390, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 391, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 392, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 393, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 394, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 395, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 396, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 397, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 398, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 399, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 400, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 401, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 402, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 403, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 404, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 405, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 406, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 407, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 408, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 409, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 410, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 411, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 412, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 413, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 414, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 415, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 416, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 417, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 418, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 419, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 420, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 421, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 422, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 423, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 424, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 425, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 426, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 427, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 428, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 429, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 430, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 431, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 432, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 433, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 434, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 435, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 436, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 437, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 438, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 439, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 440, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 441, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 442, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 443, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 444, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 445, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 446, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 447, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 448, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 449, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 450, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 451, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 452, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 453, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 454, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 455, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 456, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 457, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 458, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 459, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 460, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 461, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 462, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 463, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 464, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 465, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 466, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 467, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 468, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 469, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 470, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 471, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 472, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 473, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 474, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 475, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 476, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 477, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 478, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 479, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 480, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 481, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 482, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 483, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 484, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 485, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 486, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 487, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 488, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 489, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 490, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 491, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 492, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 493, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 494, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 495, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 496, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 497, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 498, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 499, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 500, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 501, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 502, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 503, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 504, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 505, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 506, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 507, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 508, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 509, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 510, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 511, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 512, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 513, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 514, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 515, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 516, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 517, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 518, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 519, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 520, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 521, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 522, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 523, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 524, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 525, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 526, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 527, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 528, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 529, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 530, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 531, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 532, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 533, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 534, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 535, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 536, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 537, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 538, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 539, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 540, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 541, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 542, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 543, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 544, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 545, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 546, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 547, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 548, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 549, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 550, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 551, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 552, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 553, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 554, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 555, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 556, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 557, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 558, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 559, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 560, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 561, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 562, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 563, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 564, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 565, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 566, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 567, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 568, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 569, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 570, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 571, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 572, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 573, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 574, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 575, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 576, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 577, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 578, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 579, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 580, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 581, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 582, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 583, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 584, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 585, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 586, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 587, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 588, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 589, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 590, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 591, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 592, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 593, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 594, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 595, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 596, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 597, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 598, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 599, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 600, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 601, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 602, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 603, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 604, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 605, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 606, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 607, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 608, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 609, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 610, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 611, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 612, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 613, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 614, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 615, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 616, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 617, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 618, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 619, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 620, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 621, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 622, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 623, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 624, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 625, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 626, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 627, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 628, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 629, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 630, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 631, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 632, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 633, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 634, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 635, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 636, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 637, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 638, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 639, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 640, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 641, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 642, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 643, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 644, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 645, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 646, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 647, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 648, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 649, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 650, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 651, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 652, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 653, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 654, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 655, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 656, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 657, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 658, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 659, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 660, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 661, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 662, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 663, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 664, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 665, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 666, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 667, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 668, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 669, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 670, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 671, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 672, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 673, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 674, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 675, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 676, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 677, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 678, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 679, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 680, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 681, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 682, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 683, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 684, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 685, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 686, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 687, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 688, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 689, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 690, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 691, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 692, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 693, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 694, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 695, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 696, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 697, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 698, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 699, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 700, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 701, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 702, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 703, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 704, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 705, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 706, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 707, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 708, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 709, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 710, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 711, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 712, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 713, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 714, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 715, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 716, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 717, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 718, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 719, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 720, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 721, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 722, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 723, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 724, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 725, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 726, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 727, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 728, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 729, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 730, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 731, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 732, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 733, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 734, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 735, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 736, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 737, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 738, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 739, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 740, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 741, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 742, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 743, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 744, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 745, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 746, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 747, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 748, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 749, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 750, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 751, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 752, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 753, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 754, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 755, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 756, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 757, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 758, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 759, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 760, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 761, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 762, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 763, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 764, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 765, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 766, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 767, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 768, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 769, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 770, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 771, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 772, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 773, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 774, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 775, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 776, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 777, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 778, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 779, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 780, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 781, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 782, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 783, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 784, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 785, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 786, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 787, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 788, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 789, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 790, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 791, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 792, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 793, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 794, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 795, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 796, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 797, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 798, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 799, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 800, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 801, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 802, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 803, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 804, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 805, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 806, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 807, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 808, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 809, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 810, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 811, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 812, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 813, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 814, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 815, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 816, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 817, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 818, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 819, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 820, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 821, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 822, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 823, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 824, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 825, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 826, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 827, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 828, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 829, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 830, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 831, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 832, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 833, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 834, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 835, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 836, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 837, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeCharacter, Id: 838, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 0, Description: "jungle torch (117)", ObjectsTxtId: 117, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 1, Description: "Waypoint (237)", ObjectsTxtId: 237, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WZ", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 2, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 3, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 4, Description: "brazier floor (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 5, Description: "torch 1 tiki (37)", ObjectsTxtId: 37, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 6, Description: "Fire, small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 7, Description: "Fire, medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 8, Description: "Fire, large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 9, Description: "Armor Stand, 1 R (104)", ObjectsTxtId: 104, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 10, Description: "Armor Stand, 2 L (105)", ObjectsTxtId: 105, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 11, Description: "Weapon Rack, 1 R (106)", ObjectsTxtId: 106, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 12, Description: "Weapon Rack, 2 L (107)", ObjectsTxtId: 107, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 13, Description: "Stair, L altar to underground (194)", ObjectsTxtId: 194, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 14, Description: "Stair, R altar to underground (195)", ObjectsTxtId: 195, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 15, Description: "Lam Esen's Tome (193)", ObjectsTxtId: 193, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 16, Description: "water rocks 1 (207)", ObjectsTxtId: 207, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 17, Description: "water rocks girl 1 (211)", ObjectsTxtId: 211, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 18, Description: "water logs 1 (210)", ObjectsTxtId: 210, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "LW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 19, Description: "water log bigger 1 (234)", ObjectsTxtId: 234, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 20, Description: "water rocks 2 (214)", ObjectsTxtId: 214, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 21, Description: "water rocks girl 2 (215)", ObjectsTxtId: 215, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 22, Description: "water logs 2 (213)", ObjectsTxtId: 213, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 23, Description: "water log bigger 2 (228)", ObjectsTxtId: 228, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 24, Description: "water rocks 3 (216)", ObjectsTxtId: 216, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 25, Description: "water rocks girl 3 (227)", ObjectsTxtId: 227, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 26, Description: "water logs 3 (217)", ObjectsTxtId: 217, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "LX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 27, Description: "water log bigger 3 (235)", ObjectsTxtId: 235, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 28, Description: "web between 2 trees L (218)", ObjectsTxtId: 218, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 29, Description: "web between 2 trees R (219)", ObjectsTxtId: 219, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 30, Description: "web around 1 tree L (220)", ObjectsTxtId: 220, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 31, Description: "web around 1 tree R (221)", ObjectsTxtId: 221, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 32, Description: "Cocoon, living (223)", ObjectsTxtId: 223, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 33, Description: "Cocoon, static (224)", ObjectsTxtId: 224, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 34, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 35, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 36, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 37, Description: "Shrine, jungle heal well (170)", ObjectsTxtId: 170, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 38, Description: "Magic Shrine, sewer (325)", ObjectsTxtId: 325, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 39, Description: "Shrine, jungle 1 (184)", ObjectsTxtId: 184, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 40, Description: "Shrine, jungle 2 (190)", ObjectsTxtId: 190, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JS", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 41, Description: "Shrine, jungle 3 (191)", ObjectsTxtId: 191, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 42, Description: "Shrine, jungle 4 (197)", ObjectsTxtId: 197, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 43, Description: "Shrine, mephisto 1 (199)", ObjectsTxtId: 199, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 44, Description: "Shrine, mephisto 2 (200)", ObjectsTxtId: 200, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 45, Description: "Shrine, mephisto 3 (201)", ObjectsTxtId: 201, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 46, Description: "Shrine, mephisto mana (202)", ObjectsTxtId: 202, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 47, Description: "Shrine, mephisto health (206)", ObjectsTxtId: 206, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 48, Description: "Shrine, mana dungeon (278)", ObjectsTxtId: 278, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 49, Description: "dummy shrine health dungeon (120)", ObjectsTxtId: 120, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 50, Description: "Well, pool wilderness (130)", ObjectsTxtId: 130, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ZW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 51, Description: "Dead Body, sewer (326)", ObjectsTxtId: 326, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 52, Description: "Skeleton (158)", ObjectsTxtId: 158, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 53, Description: "Corpse, villager 1 (271)", ObjectsTxtId: 271, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 54, Description: "Corpse, villager 2 (272)", ObjectsTxtId: 272, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 55, Description: "torch 1 (327)", ObjectsTxtId: 327, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 56, Description: "torch 2 (328)", ObjectsTxtId: 328, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 57, Description: "Chest, Mephisto L Large (329)", ObjectsTxtId: 329, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 58, Description: "Chest, Mephisto R Large (330)", ObjectsTxtId: 330, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 59, Description: "Chest, Mephisto L Med (331)", ObjectsTxtId: 331, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 60, Description: "Chest, Mephisto R Med (332)", ObjectsTxtId: 332, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 61, Description: "Chest, spider lair L Large (333)", ObjectsTxtId: 333, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 62, Description: "Chest, spider lair L Tall (334)", ObjectsTxtId: 334, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 63, Description: "Chest, spider lair R Med (335)", ObjectsTxtId: 335, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 64, Description: "Chest, spider lair R Tall (336)", ObjectsTxtId: 336, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 65, Description: "Chest, R Large (5)", ObjectsTxtId: 5, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 66, Description: "Chest, L Large (6)", ObjectsTxtId: 6, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 67, Description: "Chest, L Med (176)", ObjectsTxtId: 176, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 68, Description: "Chest, general L (240)", ObjectsTxtId: 240, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 69, Description: "Chest, general R (241)", ObjectsTxtId: 241, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 70, Description: "Chest, jungle (181)", ObjectsTxtId: 181, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 71, Description: "Chest, L Med jungle (183)", ObjectsTxtId: 183, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 72, Description: "Rat's Nest, sewers (246)", ObjectsTxtId: 246, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 73, Description: "Stash, jungle 1 (185)", ObjectsTxtId: 185, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 74, Description: "Stash, jungle 2 (186)", ObjectsTxtId: 186, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 75, Description: "Stash, jungle 3 (187)", ObjectsTxtId: 187, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 76, Description: "Stash, jungle 4 (188)", ObjectsTxtId: 188, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 77, Description: "Stash, Mephisto lair (203)", ObjectsTxtId: 203, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 78, Description: "Stash, box (204)", ObjectsTxtId: 204, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 79, Description: "Stash, altar (205)", ObjectsTxtId: 205, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 80, Description: "Basket, 1 say 'not here' (208)", ObjectsTxtId: 208, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 81, Description: "Basket, 2 say 'not here' (209)", ObjectsTxtId: 209, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 82, Description: "Hollow Log (169)", ObjectsTxtId: 169, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 83, Description: "Waypoint, sewer (323)", ObjectsTxtId: 323, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QM", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 84, Description: "Waypoint, Travincal (324)", ObjectsTxtId: 324, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QL", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 85, Description: "a Trap, test data floortrap (196)", ObjectsTxtId: 196, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 86, Description: "bubbles in water (212)", ObjectsTxtId: 212, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 87, Description: "Skullpile (225)", ObjectsTxtId: 225, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 88, Description: "Rat's Nest, sewers (244)", ObjectsTxtId: 244, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 89, Description: "helllight source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 90, Description: "helllight source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 91, Description: "helllight source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 92, Description: "Rock Pile, dungeon (360)", ObjectsTxtId: 360, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 93, Description: "Magic Shrine, dungeon (361)", ObjectsTxtId: 361, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 94, Description: "Basket, dungeon (362)", ObjectsTxtId: 362, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 95, Description: "Casket, dungeon (365)", ObjectsTxtId: 365, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 96, Description: "Gidbinn Altar (251)", ObjectsTxtId: 251, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GA", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 97, Description: "Gidbinn, decoy (252)", ObjectsTxtId: 252, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GD", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 98, Description: "Basket, 1 (208)", ObjectsTxtId: 208, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 99, Description: "brazier celler (283)", ObjectsTxtId: 283, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BI", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 100, Description: "Sewer Lever (367)", ObjectsTxtId: 367, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 101, Description: "Sewer Stairs (366)", ObjectsTxtId: 366, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VE", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 102, Description: "Dark Wanderer (368)", ObjectsTxtId: 368, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 103, Description: "Mephisto bridge (341)", ObjectsTxtId: 341, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XJ", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 342, Description: "Portal to hellgate (342)", ObjectsTxtId: 342, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1Y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 105, Description: "Shrine, mana well kurast (343)", ObjectsTxtId: 343, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 106, Description: "Shrine, health well kurast (344)", ObjectsTxtId: 344, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XM", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 107, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 108, Description: "torch town (370)", ObjectsTxtId: 370, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 109, Description: "Hratli start (378)", ObjectsTxtId: 378, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 110, Description: "Hratli end (379)", ObjectsTxtId: 379, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 111, Description: "stairs of Compelling Orb (386)", ObjectsTxtId: 386, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 112, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 113, Description: "Chest, Khalim's Heart (405)", ObjectsTxtId: 405, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 114, Description: "Chest, Khalim's Eye (407)", ObjectsTxtId: 407, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 115, Description: "Chest, Khalim's Brain (406)", ObjectsTxtId: 406, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XK", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 116, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 117, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 118, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 119, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 120, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 121, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 122, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 123, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 124, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 125, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 126, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 127, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 128, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 129, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 130, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 131, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 132, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 133, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 134, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 135, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 136, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 137, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 138, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 139, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 140, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 141, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 142, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 143, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 144, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 145, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 146, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 147, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 148, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 149, Description: "ACT 3 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 3, Type: d2enum.ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "place_champion-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "trap-horzmissile-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "trap-vertmissile-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "place_group25-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 4, Description: "place_group50-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 5, Description: "place_group75-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 6, Description: "place_group100-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 7, Description: "tyrael2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 8, Description: "window2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "DT", Class: "HTH", TR: "LIT", S1: "S1", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 9, Description: "window1-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "DT", Class: "HTH", TR: "LIT", S1: "S1", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 10, Description: "jamella-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 11, Description: "halbu-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 12, Description: "hellmeteor-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 13, Description: "izual-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 14, Description: "diablo-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 15, Description: "Winged Death-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 16, Description: "The Tormentor-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 17, Description: "Taintbreeder-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 18, Description: "Riftwraith the Cannibal-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 19, Description: "Infector of Souls-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 20, Description: "Lord De Seis-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 21, Description: "Grand Vizier of Chaos-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 22, Description: "trappedsoul1-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 23, Description: "trappedsoul2-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 24, Description: "regurgitator3-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 6, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 25, Description: "cain4-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "4D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 26, Description: "malachai-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 27, Description: "The Feature Creep-ACT 4 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 28, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 29, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 30, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 31, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 32, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 33, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 34, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 35, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 36, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 37, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 38, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 39, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 40, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 41, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 42, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 43, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 44, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 45, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 46, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 47, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 48, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 49, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 50, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 51, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 52, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 53, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 54, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 55, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 56, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 57, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 58, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 59, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 60, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 61, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 62, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 63, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 64, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 65, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 66, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 67, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 68, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 69, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 70, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 71, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 72, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 73, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 74, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 75, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 76, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 77, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 78, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 79, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 80, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 81, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 82, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 83, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 84, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 85, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 86, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 87, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 88, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 89, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 90, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 91, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 92, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 93, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 94, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 95, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 96, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 97, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 98, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 99, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 100, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 101, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 102, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 103, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 104, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 105, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 106, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 107, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 108, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 109, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 110, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 111, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 112, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 113, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 114, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 115, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 116, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 117, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 118, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 119, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 120, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 121, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 122, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 123, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 124, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 125, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 126, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 127, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 128, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 129, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 130, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 131, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 132, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 133, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 134, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 135, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 136, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 137, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 138, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 139, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 140, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 141, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 142, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 143, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 144, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 145, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 146, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 147, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 148, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 149, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 150, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 151, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 152, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 153, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 154, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 155, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 156, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 157, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 158, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 159, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 160, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 161, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 162, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 163, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 164, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 165, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 166, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 167, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 168, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 169, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 170, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 171, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 172, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 173, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 174, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 175, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 176, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 177, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 178, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 179, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 180, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 181, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 182, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 183, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 184, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 185, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 186, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 187, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 188, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 189, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 190, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 191, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 192, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 193, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 194, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 195, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 196, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 197, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 198, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 199, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 200, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 201, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 202, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 203, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 204, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 205, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 206, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 207, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 208, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 209, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 210, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 211, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 212, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 213, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 214, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 215, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 216, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 217, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 218, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 219, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 220, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 221, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 222, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 223, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 224, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 225, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 226, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 227, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 228, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 229, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 230, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 231, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 232, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 233, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 234, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 235, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 236, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 237, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 238, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 239, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 240, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 241, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 242, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 243, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 244, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 245, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 246, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 247, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 248, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 249, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 250, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 251, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 252, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 253, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 254, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 255, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 256, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 257, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 258, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 259, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 260, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 261, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 262, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 263, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 264, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 265, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 266, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 267, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 268, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 269, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 270, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 271, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 272, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 273, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 274, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 275, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 276, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 277, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 278, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 279, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 280, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 281, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 282, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 283, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 284, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 285, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 286, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 287, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 288, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 289, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 290, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 291, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 292, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 293, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 294, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 295, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 296, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 297, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 298, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 299, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 300, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 301, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 302, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 303, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 304, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 305, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 306, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 307, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 308, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 309, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 310, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 311, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 312, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 313, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 314, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 315, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 316, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 317, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 318, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 319, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 320, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 321, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 322, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 323, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 324, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 325, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 326, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 327, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 328, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 329, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 330, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 331, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 332, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 333, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 334, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 335, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 336, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 337, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 338, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 339, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 340, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 341, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 342, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 343, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 344, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 345, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 346, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 347, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 348, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 349, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 350, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 351, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 352, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 353, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 354, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 355, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 356, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 357, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 358, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 359, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 360, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 361, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 362, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 363, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 364, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 365, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 366, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 367, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 368, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 369, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 370, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 371, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 372, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 373, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 374, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 375, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 376, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 377, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 378, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 379, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 380, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 381, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 382, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 383, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 384, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 385, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 386, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 387, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 388, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 389, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 390, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 391, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 392, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 393, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 394, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 395, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 396, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 397, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 398, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 399, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 400, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 401, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 402, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 403, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 404, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 405, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 406, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 407, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 408, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 409, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 410, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 411, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 412, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 413, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 414, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 415, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 416, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 417, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 418, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 419, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 420, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 421, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 422, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 423, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 424, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 425, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 426, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 427, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 428, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 429, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 430, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 431, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 432, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 433, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 434, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 435, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 436, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 437, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 438, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 439, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 440, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 441, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 442, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 443, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 444, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 445, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 446, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 447, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 448, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 449, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 450, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 451, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 452, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 453, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 454, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 455, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 456, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 457, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 458, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 459, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 460, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 461, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 462, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 463, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 464, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 465, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 466, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 467, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 468, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 469, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 470, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 471, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 472, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 473, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 474, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 475, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 476, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 477, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 478, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 479, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 480, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 481, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 482, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 483, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 484, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 485, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 486, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 487, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 488, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 489, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 490, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 491, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 492, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 493, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 494, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 495, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 496, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 497, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 498, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 499, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 500, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 501, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 502, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 503, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 504, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 505, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 506, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 507, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 508, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 509, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 510, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 511, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 512, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 513, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 514, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 515, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 516, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 517, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 518, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 519, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 520, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 521, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 522, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 523, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 524, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 525, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 526, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 527, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 528, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 529, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 530, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 531, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 532, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 533, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 534, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 535, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 536, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 537, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 538, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 539, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 540, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 541, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 542, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 543, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 544, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 545, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 546, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 547, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 548, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 549, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 550, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 551, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 552, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 553, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 554, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 555, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 556, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 557, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 558, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 559, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 560, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 561, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 562, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 563, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 564, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 565, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 566, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 567, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 568, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 569, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 570, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 571, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 572, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 573, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 574, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 575, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 576, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 577, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 578, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 579, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 580, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 581, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 582, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 583, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 584, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 585, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 586, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 587, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 588, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 589, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 590, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 591, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 592, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 593, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 594, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 595, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 596, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 597, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 598, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 599, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 600, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 601, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 602, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 603, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 604, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 605, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 606, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 607, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 608, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 609, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 610, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 611, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 612, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 613, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 614, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 615, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 616, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 617, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 618, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 619, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 620, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 621, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 622, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 623, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 624, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 625, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 626, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 627, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 628, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 629, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 630, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 631, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 632, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 633, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 634, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 635, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 636, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 637, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 638, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 639, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 640, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 641, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 642, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 643, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 644, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 645, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 646, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 647, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 648, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 649, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 650, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 651, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 652, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 653, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 654, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 655, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 656, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 657, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 658, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 659, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 660, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 661, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 662, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 663, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 664, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 665, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 666, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 667, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 668, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 669, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 670, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 671, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 672, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 673, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 674, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 675, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 676, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 677, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 678, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 679, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 680, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 681, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 682, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 683, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 684, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 685, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 686, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 687, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 688, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 689, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 690, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 691, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 692, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 693, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 694, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 695, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 696, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 697, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 698, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 699, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 700, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 701, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 702, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 703, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 704, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 705, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 706, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 707, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 708, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 709, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 710, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 711, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 712, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 713, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 714, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 715, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 716, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 717, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 718, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 719, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 720, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 721, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 722, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 723, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 724, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 725, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 726, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 727, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 728, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 729, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 730, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 731, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 732, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 733, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 734, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 735, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 736, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 737, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 738, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 739, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 740, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 741, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 742, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 743, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 744, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 745, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 746, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 747, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 748, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 749, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 750, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 751, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 752, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 753, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 754, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 755, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 756, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 757, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 758, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 759, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 760, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 761, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 762, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 763, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 764, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 765, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 766, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 767, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 768, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 769, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 770, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 771, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 772, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 773, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 774, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 775, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 776, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 777, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 778, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 779, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 780, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 781, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 782, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 783, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 784, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 785, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 786, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 787, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 788, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 789, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 790, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 791, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 792, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 793, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 794, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 795, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 796, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 797, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 798, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 799, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 800, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 801, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 802, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 803, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 804, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 805, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 806, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 807, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 808, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 809, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 810, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 811, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 812, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 813, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 814, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 815, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 816, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 817, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 818, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 819, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 820, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 821, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 822, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 823, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 824, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 825, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 826, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeCharacter, Id: 827, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 0, Description: "Waypoint (238)", ObjectsTxtId: 238, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WV", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 1, Description: "-580", ObjectsTxtId: 580, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 2, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 3, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 4, Description: "-581", ObjectsTxtId: 581, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 5, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 6, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 7, Description: "-573", ObjectsTxtId: 573, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 8, Description: "hell fire 1 (345)", ObjectsTxtId: 345, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 9, Description: "hell fire 2 (346)", ObjectsTxtId: 346, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 10, Description: "hell fire 3 (347)", ObjectsTxtId: 347, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 11, Description: "hell lava 1 (348)", ObjectsTxtId: 348, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 12, Description: "hell lava 2 (349)", ObjectsTxtId: 349, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 13, Description: "hell lava 3 (350)", ObjectsTxtId: 350, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 14, Description: "hell light source 1 (351)", ObjectsTxtId: 351, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 15, Description: "hell light source 2 (352)", ObjectsTxtId: 352, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 16, Description: "hell light source 3 (353)", ObjectsTxtId: 353, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 17, Description: "Fire, hell brazier 1 (358)", ObjectsTxtId: 358, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 18, Description: "Fire, hell brazier 2 (359)", ObjectsTxtId: 359, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 19, Description: "Hung Skeleton (363)", ObjectsTxtId: 363, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "XQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 20, Description: "skeleton rising from lava L (259)", ObjectsTxtId: 259, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 21, Description: "skeleton rising from lava R (373)", ObjectsTxtId: 373, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QT", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 22, Description: "Bone Chest (372)", ObjectsTxtId: 372, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 23, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 24, Description: "Shrine, hell well (236)", ObjectsTxtId: 236, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 25, Description: "Shrine, mana well (249)", ObjectsTxtId: 249, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 26, Description: "Shrine, outer hell 1 (226)", ObjectsTxtId: 226, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IA", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 27, Description: "Shrine, outer hell 2 (231)", ObjectsTxtId: 231, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HT", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 28, Description: "Shrine, outer hell 3 (232)", ObjectsTxtId: 232, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HQ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 29, Description: "Shrine, mana inner hell (93)", ObjectsTxtId: 93, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IZ", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 30, Description: "Shrine, inner hell 1 (97)", ObjectsTxtId: 97, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 31, Description: "Shrine, inner hell 2 (123)", ObjectsTxtId: 123, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 32, Description: "Shrine, inner hell 3 (124)", ObjectsTxtId: 124, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IV", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 33, Description: "Shrine, health inner hell (96)", ObjectsTxtId: 96, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IY", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 34, Description: "Skullpile (225)", ObjectsTxtId: 225, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 35, Description: "Pillar 1 (233)", ObjectsTxtId: 233, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HV", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 36, Description: "Pillar 2 (222)", ObjectsTxtId: 222, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 37, Description: "Hidden Stash, inner hell (125)", ObjectsTxtId: 125, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 38, Description: "Skull Pile, inner hell (126)", ObjectsTxtId: 126, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 39, Description: "Hidden Stash, inner hell 1 (127)", ObjectsTxtId: 127, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 40, Description: "Hidden Stash, inner hell 2 (128)", ObjectsTxtId: 128, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HG", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 41, Description: "CRASH THE GAME ! (375)", ObjectsTxtId: 375, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 42, Description: "Hellforge (376)", ObjectsTxtId: 376, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UX", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 43, Description: "ray of light L Diablo (254)", ObjectsTxtId: 254, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 44, Description: "ray of light R Diablo (253)", ObjectsTxtId: 253, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 45, Description: "Portal to hell (342)", ObjectsTxtId: 342, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1Y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 46, Description: "Diablo start point (255)", ObjectsTxtId: 255, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 47, Description: "Diablo seal 1 (392)", ObjectsTxtId: 392, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 48, Description: "Diablo seal 2 (393)", ObjectsTxtId: 393, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 49, Description: "Diablo seal 3 (394)", ObjectsTxtId: 394, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 50, Description: "Diablo seal 4 (395)", ObjectsTxtId: 395, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 51, Description: "Diablo seal 5 (396)", ObjectsTxtId: 396, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 52, Description: "Waypoint, fortress (398)", ObjectsTxtId: 398, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YG", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 53, Description: "Chest, sparkly (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 54, Description: "fissure (399)", ObjectsTxtId: 399, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FH", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 55, Description: "smoke (401)", ObjectsTxtId: 401, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 56, Description: "brazier hell mesa (400)", ObjectsTxtId: 400, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 57, Description: "Trapped Soul, burning guy (380)", ObjectsTxtId: 380, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 58, Description: "Trapped Soul, guy stuck 1 (383)", ObjectsTxtId: 383, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 59, Description: "Trapped Soul, guy stuck 2 (384)", ObjectsTxtId: 384, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 60, Description: "wall torch L tombs (296)", ObjectsTxtId: 296, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QD", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 61, Description: "wall torch R tombs (297)", ObjectsTxtId: 297, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 62, Description: "Fire, hell brazier (403)", ObjectsTxtId: 403, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9F", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 63, Description: "floor brazier (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 64, Description: "fortress brazier (408)", ObjectsTxtId: 408, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 65, Description: "Torch Pit (409)", ObjectsTxtId: 409, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 66, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 67, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 68, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 69, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 70, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 71, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 72, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 73, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 74, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 75, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 76, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 77, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 78, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 79, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 80, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 81, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 82, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 83, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 84, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 85, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 86, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 87, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 88, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 89, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 90, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 91, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 92, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 93, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 94, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 95, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 96, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 97, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 98, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 99, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 100, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 101, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 102, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 103, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 104, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 105, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 106, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 107, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 108, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 109, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 110, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 111, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 112, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 113, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 114, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 115, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 116, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 117, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 118, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 119, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 120, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 121, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 122, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 123, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 124, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 125, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 126, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 127, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 128, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 129, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 130, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 131, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 132, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 133, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 134, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 135, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 136, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 137, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 138, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 139, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 140, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 141, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 142, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 143, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 144, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 145, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 146, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 147, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 148, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 149, Description: "ACT 4 TABLE SKIP IT", ObjectsTxtId: 0, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 4, Type: d2enum.ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "larzuk-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "drehya-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "malah-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "nihlathak-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 4, Description: "qual-kehk-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 5, Description: "place_impgroup-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 6, Description: "Siege Boss-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "OS", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "HVY", SH: "HVY", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 7, Description: "tyrael3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 8, Description: "cain6-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 9, Description: "place_imp-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 10, Description: "place_minion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 11, Description: "place_miniongroup-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 12, Description: "catapult2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 13, Description: "catapult1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 14, Description: "place_bloodlord-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 15, Description: "catapultspotter2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 16, Description: "catapultspotter1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 17, Description: "act5barb1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 3, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 18, Description: "place_deadbarb-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 19, Description: "place_deadminion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 20, Description: "place_deadimp-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 21, Description: "cain6-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 22, Description: "act5barb3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 23, Description: "place_reanimateddead-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 24, Description: "ancientstatue1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 25, Description: "ancientstatue2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 26, Description: "ancientstatue3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 27, Description: "Dac Farren-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 28, Description: "baalthrone-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 29, Description: "baaltaunt-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 30, Description: "injuredbarb1-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 31, Description: "injuredbarb2-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 32, Description: "injuredbarb3-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 33, Description: "baalcrab-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", ColorMap: "/Data/Global/Monsters/42/COF/Palshift.dat", Index: 5}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 34, Description: "Axe Dweller-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 35, Description: "Bonesaw Breaker-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 36, Description: "Megaflow Rectifier-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 37, Description: "Eyeback Unleashed-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 38, Description: "Threash Socket-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 39, Description: "Pindleskin-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 40, Description: "Snapchip Shatter-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 41, Description: "Anodized Elite-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 42, Description: "Vinvear Molech-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 43, Description: "Sharp Tooth Sayer-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 44, Description: "Magma Torquer-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 45, Description: "Blaze Ripper-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 46, Description: "Frozenstein-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 47, Description: "worldstoneeffect-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 48, Description: "chicken-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: 2, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 49, Description: "place_champion-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 50, Description: "evilhut-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "S1", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 51, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 52, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 53, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 54, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 55, Description: "place_nothing-ACT 5 TABLE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 56, Description: "skeleton1-Skeleton-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 57, Description: "skeleton2-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 58, Description: "skeleton3-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 59, Description: "skeleton4-BurningDead-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 60, Description: "skeleton5-Horror-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 61, Description: "zombie1-Zombie-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 62, Description: "zombie2-HungryDead-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 63, Description: "zombie3-Ghoul-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 64, Description: "zombie4-DrownedCarcass-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 65, Description: "zombie5-PlagueBearer-Zombie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 66, Description: "bighead1-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 67, Description: "bighead2-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 68, Description: "bighead3-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 69, Description: "bighead4-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 70, Description: "bighead5-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 71, Description: "foulcrow1-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 72, Description: "foulcrow2-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 73, Description: "foulcrow3-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 74, Description: "foulcrow4-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 75, Description: "fallen1-Fallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 76, Description: "fallen2-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 77, Description: "fallen3-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 78, Description: "fallen4-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 79, Description: "fallen5-WarpedFallen-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "AXE", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 80, Description: "brute2-Brute-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 81, Description: "brute3-Yeti-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 82, Description: "brute4-Crusher-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 83, Description: "brute5-WailingBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 84, Description: "brute1-GargantuanBeast-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 85, Description: "sandraider1-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 86, Description: "sandraider2-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 87, Description: "sandraider3-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 88, Description: "sandraider4-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 89, Description: "sandraider5-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 90, Description: "gorgon1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 91, Description: "gorgon2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 92, Description: "gorgon3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 93, Description: "gorgon4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GO", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 94, Description: "wraith1-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 95, Description: "wraith2-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 96, Description: "wraith3-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 97, Description: "wraith4-Apparition-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 98, Description: "wraith5-DarkShape-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 99, Description: "corruptrogue1-DarkHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 100, Description: "corruptrogue2-VileHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 101, Description: "corruptrogue3-DarkStalker-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 102, Description: "corruptrogue4-BlackRogue-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 103, Description: "corruptrogue5-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 104, Description: "baboon1-DuneBeast-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 105, Description: "baboon2-RockDweller-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 106, Description: "baboon3-JungleHunter-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 107, Description: "baboon4-DoomApe-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 108, Description: "baboon5-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 109, Description: "goatman1-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 110, Description: "goatman2-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 111, Description: "goatman3-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 112, Description: "goatman4-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 113, Description: "goatman5-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 114, Description: "fallenshaman1-FallenShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 115, Description: "fallenshaman2-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 116, Description: "fallenshaman3-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 117, Description: "fallenshaman4-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 118, Description: "fallenshaman5-WarpedShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 119, Description: "quillrat1-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 120, Description: "quillrat2-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 121, Description: "quillrat3-ThornBeast-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 122, Description: "quillrat4-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 123, Description: "quillrat5-JungleUrchin-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 124, Description: "sandmaggot1-SandMaggot-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 125, Description: "sandmaggot2-RockWorm-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 126, Description: "sandmaggot3-Devourer-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 127, Description: "sandmaggot4-GiantLamprey-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 128, Description: "sandmaggot5-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 129, Description: "clawviper1-TombViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 130, Description: "clawviper2-ClawViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 131, Description: "clawviper3-Salamander-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 132, Description: "clawviper4-PitViper-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 133, Description: "clawviper5-SerpentMagus-ClawViper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 134, Description: "sandleaper1-SandLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 135, Description: "sandleaper2-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 136, Description: "sandleaper3-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 137, Description: "sandleaper4-TreeLurker-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 138, Description: "sandleaper5-RazorPitDemon-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 139, Description: "pantherwoman1-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 140, Description: "pantherwoman2-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 141, Description: "pantherwoman3-NightTiger-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 142, Description: "pantherwoman4-HellCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 143, Description: "swarm1-Itchies-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 144, Description: "swarm2-BlackLocusts-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 145, Description: "swarm3-PlagueBugs-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 146, Description: "swarm4-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 147, Description: "scarab1-DungSoldier-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 148, Description: "scarab2-SandWarrior-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 149, Description: "scarab3-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 150, Description: "scarab4-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 151, Description: "scarab5-AlbinoRoach-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 152, Description: "mummy1-DriedCorpse-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 153, Description: "mummy2-Decayed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 154, Description: "mummy3-Embalmed-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 155, Description: "mummy4-PreservedDead-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 156, Description: "mummy5-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 157, Description: "unraveler1-HollowOne-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 158, Description: "unraveler2-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 159, Description: "unraveler3-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 160, Description: "unraveler4-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 161, Description: "unraveler5-Baal Subject Mummy-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 162, Description: "chaoshorde1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 163, Description: "chaoshorde2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 164, Description: "chaoshorde3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 165, Description: "chaoshorde4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CH", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 166, Description: "vulture1-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 167, Description: "vulture2-UndeadScavenger-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 168, Description: "vulture3-HellBuzzard-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 169, Description: "vulture4-WingedNightmare-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 170, Description: "mosquito1-Sucker-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 171, Description: "mosquito2-Feeder-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 172, Description: "mosquito3-BloodHook-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 173, Description: "mosquito4-BloodWing-Mosquito", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MO", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 174, Description: "willowisp1-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 175, Description: "willowisp2-SwampGhost-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 176, Description: "willowisp3-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 177, Description: "willowisp4-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 178, Description: "arach1-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 179, Description: "arach2-SandFisher-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 180, Description: "arach3-PoisonSpinner-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 181, Description: "arach4-FlameSpider-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 182, Description: "arach5-SpiderMagus-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 183, Description: "thornhulk1-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 184, Description: "thornhulk2-BrambleHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 185, Description: "thornhulk3-Thrasher-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 186, Description: "thornhulk4-Spikefist-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 187, Description: "vampire1-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 188, Description: "vampire2-NightLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 189, Description: "vampire3-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 190, Description: "vampire4-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 191, Description: "vampire5-Banished-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 192, Description: "batdemon1-DesertWing-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 193, Description: "batdemon2-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 194, Description: "batdemon3-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 195, Description: "batdemon4-BloodDiver-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 196, Description: "batdemon5-DarkFamiliar-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 197, Description: "fetish1-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 198, Description: "fetish2-Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 199, Description: "fetish3-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 200, Description: "fetish4-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 201, Description: "fetish5-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 202, Description: "cain1-DeckardCain-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 203, Description: "gheed-Gheed-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 204, Description: "akara-Akara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 205, Description: "chicken-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 206, Description: "kashya-Kashya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 207, Description: "rat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 208, Description: "rogue1-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 209, Description: "hellmeteor-Dummy-HellMeteor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 210, Description: "charsi-Charsi-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 211, Description: "warriv1-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 212, Description: "andariel-Andariel-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 213, Description: "bird1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BS", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 214, Description: "bird2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 215, Description: "bat-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "B9", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 216, Description: "cr_archer1-DarkRanger-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 217, Description: "cr_archer2-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 218, Description: "cr_archer3-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 219, Description: "cr_archer4-BlackArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 220, Description: "cr_archer5-FleshArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 221, Description: "cr_lancer1-DarkSpearwoman-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 222, Description: "cr_lancer2-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 223, Description: "cr_lancer3-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 224, Description: "cr_lancer4-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 225, Description: "cr_lancer5-FleshLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 226, Description: "sk_archer1-SkeletonArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 227, Description: "sk_archer2-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 228, Description: "sk_archer3-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 229, Description: "sk_archer4-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 230, Description: "sk_archer5-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 231, Description: "warriv2-Warriv-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 232, Description: "atma-Atma-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 233, Description: "drognan-Drognan-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 234, Description: "fara-Fara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 235, Description: "cow-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 236, Description: "maggotbaby1-SandMaggotYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 237, Description: "maggotbaby2-RockWormYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 238, Description: "maggotbaby3-DevourerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 239, Description: "maggotbaby4-GiantLampreyYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 240, Description: "maggotbaby5-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 241, Description: "camel-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 242, Description: "blunderbore1-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 243, Description: "blunderbore2-Gorbelly-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 244, Description: "blunderbore3-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 245, Description: "blunderbore4-Urdar-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 246, Description: "maggotegg1-SandMaggotEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 247, Description: "maggotegg2-RockWormEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 248, Description: "maggotegg3-DevourerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 249, Description: "maggotegg4-GiantLampreyEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 250, Description: "maggotegg5-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 251, Description: "act2male-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2M", Mode: "NU", Class: "HTH", HD: "OLD", TR: "MED", LG: "MED", S1: "TUR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 252, Description: "act2female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2F", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 253, Description: "act2child-dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2C", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 254, Description: "greiz-Greiz-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 255, Description: "elzix-Elzix-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 256, Description: "geglash-Geglash-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 257, Description: "jerhyn-Jerhyn-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "JE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 258, Description: "lysander-Lysander-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 259, Description: "act2guard1-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 260, Description: "act2vendor1-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 261, Description: "act2vendor2-dummy-Vendor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 262, Description: "crownest1-FoulCrowNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 263, Description: "crownest2-BloodHawkNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 264, Description: "crownest3-BlackVultureNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 265, Description: "crownest4-CloudStalkerNest-FoulCrowNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 266, Description: "meshif1-Meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 267, Description: "duriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 268, Description: "bonefetish1-Undead RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 269, Description: "bonefetish2-Undead Fetish-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 270, Description: "bonefetish3-Undead Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 271, Description: "bonefetish4-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 272, Description: "bonefetish5-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 273, Description: "darkguard1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 274, Description: "darkguard2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 275, Description: "darkguard3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 276, Description: "darkguard4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 277, Description: "darkguard5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 278, Description: "bloodmage1-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 279, Description: "bloodmage2-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 280, Description: "bloodmage3-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 281, Description: "bloodmage4-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 282, Description: "bloodmage5-unused-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 283, Description: "maggot-Maggot-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 284, Description: "sarcophagus-MummyGenerator-Sarcophagus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 285, Description: "radament-Radament-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 286, Description: "firebeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 287, Description: "iceglobe-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 288, Description: "lightningbeast-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 289, Description: "poisonorb-unused-ElementalBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 290, Description: "flyingscimitar-FlyingScimitar-FlyingScimitar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ST", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 291, Description: "zealot1-Zakarumite-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 292, Description: "zealot2-Faithful-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 293, Description: "zealot3-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 294, Description: "cantor1-Sexton-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 295, Description: "cantor2-Cantor-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 296, Description: "cantor3-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 297, Description: "cantor4-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 298, Description: "mephisto-Mephisto-Mephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 299, Description: "diablo-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 300, Description: "cain2-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 301, Description: "cain3-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 302, Description: "cain4-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 303, Description: "frogdemon1-Swamp Dweller-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 304, Description: "frogdemon2-Bog Creature-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 305, Description: "frogdemon3-Slime Prince-FrogDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 306, Description: "summoner-Summoner-Summoner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 307, Description: "tyrael1-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TX", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 308, Description: "asheara-asheara-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 309, Description: "hratli-hratli-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 310, Description: "alkor-alkor-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 311, Description: "ormus-ormus-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "OR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 312, Description: "izual-izual-Izual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 313, Description: "halbu-halbu-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "20", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 314, Description: "tentacle1-WaterWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 315, Description: "tentacle2-RiverStalkerLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 316, Description: "tentacle3-StygianWatcherLimb-Tentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TN", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 317, Description: "tentaclehead1-WaterWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 318, Description: "tentaclehead2-RiverStalkerHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 319, Description: "tentaclehead3-StygianWatcherHead-TentacleHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 320, Description: "meshif2-meshif-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 321, Description: "cain5-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1D", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 322, Description: "navi-navi-Navi", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", LH: "LBW", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 323, Description: "bloodraven-Bloodraven-BloodRaven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "BRV", TR: "HVY", LG: "BRV", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBB", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 324, Description: "bug-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 325, Description: "scorpion-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 326, Description: "rogue2-RogueScout-GoodNpcRanged", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 327, Description: "roguehire-Dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 328, Description: "rogue3-Dummy-TownRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RG", Mode: "NU", Class: "HTH", HD: "MED", TR: "MED", RA: "LIT", LA: "LIT", LH: "LBW", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 329, Description: "gargoyletrap-GargoyleTrap-GargoyleTrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 330, Description: "skmage_pois1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 331, Description: "skmage_pois2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 332, Description: "skmage_pois3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 333, Description: "skmage_pois4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 334, Description: "fetishshaman1-RatManShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 335, Description: "fetishshaman2-FetishShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 336, Description: "fetishshaman3-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 337, Description: "fetishshaman4-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 338, Description: "fetishshaman5-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 339, Description: "larva-larva-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 340, Description: "maggotqueen1-SandMaggotQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 341, Description: "maggotqueen2-RockWormQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 342, Description: "maggotqueen3-DevourerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 343, Description: "maggotqueen4-GiantLampreyQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 344, Description: "maggotqueen5-WorldKillerQueen-SandMaggotQueen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 345, Description: "claygolem-ClayGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 346, Description: "bloodgolem-BloodGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 347, Description: "irongolem-IronGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 348, Description: "firegolem-FireGolem-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "G3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 349, Description: "familiar-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 350, Description: "act3male-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N4", Mode: "NU", Class: "HTH", HD: "BRD", TR: "HVY", LG: "HVY", RA: "HEV", LA: "HEV", RH: "FSH", LH: "SAK", S1: "TKT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 351, Description: "baboon6-NightMarauder-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 352, Description: "act3female-Dummy-Towner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "N3", Mode: "NU", Class: "HTH", HD: "LIT", TR: "MTP", LG: "SRT", RH: "BSK", LH: "BSK", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 353, Description: "natalya-Natalya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 354, Description: "vilemother1-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 355, Description: "vilemother2-StygianHag-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 356, Description: "vilemother3-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 357, Description: "vilechild1-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 358, Description: "vilechild2-StygianDog-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 359, Description: "vilechild3-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 360, Description: "fingermage1-Groper-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 361, Description: "fingermage2-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 362, Description: "fingermage3-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 363, Description: "regurgitator1-Corpulent-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 364, Description: "regurgitator2-CorpseSpitter-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 365, Description: "regurgitator3-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 366, Description: "doomknight1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 367, Description: "doomknight2-AbyssKnight-AbyssKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 368, Description: "doomknight3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 369, Description: "quillbear1-QuillBear-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 370, Description: "quillbear2-SpikeGiant-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 371, Description: "quillbear3-ThornBrute-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 372, Description: "quillbear4-RazorBeast-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 373, Description: "quillbear5-GiantUrchin-QuillMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "S7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 374, Description: "snake-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 375, Description: "parrot-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PR", Mode: "WL", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 376, Description: "fish-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FJ", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 377, Description: "evilhole1-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 378, Description: "evilhole2-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 379, Description: "evilhole3-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 380, Description: "evilhole4-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 381, Description: "evilhole5-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 382, Description: "trap-firebolt-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 383, Description: "trap-horzmissile-a trap-Trap-RightArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 384, Description: "trap-vertmissile-a trap-Trap-LeftArrow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 385, Description: "trap-poisoncloud-a trap-Trap-Poison", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 386, Description: "trap-lightning-a trap-Trap-Missile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 387, Description: "act2guard2-Kaelan-JarJar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 388, Description: "invisospawner-Dummy-InvisoSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 389, Description: "diabloclone-Diablo-Diablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 390, Description: "suckernest1-SuckerNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 391, Description: "suckernest2-FeederNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 392, Description: "suckernest3-BloodHookNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 393, Description: "suckernest4-BloodWingNest-MosquitoNest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 394, Description: "act2hire-Guard-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "GLV", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 395, Description: "minispider-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "LS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 396, Description: "boneprison1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "67", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 397, Description: "boneprison2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "66", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 398, Description: "boneprison3--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "69", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 399, Description: "boneprison4--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "68", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 400, Description: "bonewall-Dummy-BoneWall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 401, Description: "councilmember1-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 402, Description: "councilmember2-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 403, Description: "councilmember3-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 404, Description: "turret1-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 405, Description: "turret2-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 406, Description: "turret3-Turret-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 407, Description: "hydra1-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 408, Description: "hydra2-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "21", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 409, Description: "hydra3-Hydra-Hydra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HZ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 410, Description: "trap-melee-a trap-Trap-Melee", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M4", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 411, Description: "seventombs-Dummy-7TIllusion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 412, Description: "dopplezon-Dopplezon-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 413, Description: "valkyrie-Valkyrie-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VK", Mode: "DT", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 414, Description: "act2guard3-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 415, Description: "act3hire-Iron Wolf-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "IW", Mode: "NU", Class: "1HS", HD: "LIT", TR: "LIT", RH: "WND", SH: "KIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 416, Description: "megademon1-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 417, Description: "megademon2-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 418, Description: "megademon3-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 419, Description: "necroskeleton-NecroSkeleton-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", RH: "SCM", SH: "KIT", S1: "DES", S2: "DES", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 420, Description: "necromage-NecroMage-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "DES", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 421, Description: "griswold-Griswold-Griswold", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 422, Description: "compellingorb-compellingorb-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9a", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 423, Description: "tyrael2-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 424, Description: "darkwanderer-youngdiablo-DarkWanderer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "1Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 425, Description: "trap-nova-a trap-Trap-Nova", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "9A", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 426, Description: "spiritmummy-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 427, Description: "lightningspire-LightningSpire-ArcaneTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AE", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 428, Description: "firetower-FireTower-DesertTurret", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 429, Description: "slinger1-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 430, Description: "slinger2-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 431, Description: "slinger3-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 432, Description: "slinger4-HellSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 433, Description: "act2guard4-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 434, Description: "act2guard5-Dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GU", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", RH: "SPR", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 435, Description: "skmage_cold1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 436, Description: "skmage_cold2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 437, Description: "skmage_cold3-BaalColdMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 438, Description: "skmage_cold4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 439, Description: "skmage_fire1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 440, Description: "skmage_fire2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 441, Description: "skmage_fire3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 442, Description: "skmage_fire4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 443, Description: "skmage_ltng1-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 444, Description: "skmage_ltng2-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 445, Description: "skmage_ltng3-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 446, Description: "skmage_ltng4-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 447, Description: "hellbovine-Hell Bovine-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 448, Description: "window1--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VH", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 449, Description: "window2--Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VJ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 450, Description: "slinger5-SpearCat-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 451, Description: "slinger6-NightSlinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "PHA", TR: "HVY", RA: "HVY", LA: "HVY", LH: "JAV", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 452, Description: "fetishblow1-RatMan-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 453, Description: "fetishblow2-Fetish-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 454, Description: "fetishblow3-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 455, Description: "fetishblow4-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 456, Description: "fetishblow5-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 457, Description: "mephistospirit-Dummy-Spirit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "M6", Mode: "A1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 458, Description: "smith-The Smith-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 459, Description: "trappedsoul1-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "10", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 460, Description: "trappedsoul2-TrappedSoul-TrappedSoul", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "13", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 461, Description: "jamella-Jamella-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ja", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 462, Description: "izualghost-Izual-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "17", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 463, Description: "fetish11-RatMan-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 464, Description: "malachai-Malachai-Buffy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "36", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 465, Description: "hephasto-The Feature Creep-Smith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 466, Description: "wakeofdestruction-Wake of Destruction-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 467, Description: "chargeboltsentry-Charged Bolt Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 468, Description: "lightningsentry-Lightning Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 469, Description: "bladecreeper-Blade Creeper-BladeCreeper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b8", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 470, Description: "invisopet-Invis Pet-InvisoPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 471, Description: "infernosentry-Inferno Sentry-AssassinSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "e9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 472, Description: "deathsentry-Death Sentry-DeathSentry", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "lg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 473, Description: "shadowwarrior-Shadow Warrior-ShadowWarrior", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 474, Description: "shadowmaster-Shadow Master-ShadowMaster", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 475, Description: "druidhawk-Druid Hawk-Raven", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "hk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 476, Description: "spiritwolf-Druid Spirit Wolf-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 477, Description: "fenris-Druid Fenris-DruidWolf", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 478, Description: "spiritofbarbs-Spirit of Barbs-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 479, Description: "heartofwolverine-Heart of Wolverine-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "x3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 480, Description: "oaksage-Oak Sage-Totem", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 481, Description: "plaguepoppy-Druid Plague Poppy-Vines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 482, Description: "cycleoflife-Druid Cycle of Life-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 483, Description: "vinecreature-Vine Creature-CycleOfLife", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 484, Description: "druidbear-Druid Bear-DruidBear", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "b7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 485, Description: "eagle-Eagle-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "eg", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 486, Description: "wolf-Wolf-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "40", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 487, Description: "bear-Bear-NecroPet", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 488, Description: "barricadedoor1-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AJ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 489, Description: "barricadedoor2-Barricade Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AG", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 490, Description: "prisondoor-Prison Door-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 491, Description: "barricadetower-Barricade Tower-SiegeTower", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ac", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 492, Description: "reanimatedhorde1-RotWalker-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 493, Description: "reanimatedhorde2-ReanimatedHorde-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 494, Description: "reanimatedhorde3-ProwlingDead-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 495, Description: "reanimatedhorde4-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 496, Description: "reanimatedhorde5-DefiledWarrior-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 497, Description: "siegebeast1-Siege Beast-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 498, Description: "siegebeast2-CrushBiest-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 499, Description: "siegebeast3-BloodBringer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 500, Description: "siegebeast4-GoreBearer-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 501, Description: "siegebeast5-DeamonSteed-SiegeBeast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 502, Description: "snowyeti1-SnowYeti1-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 503, Description: "snowyeti2-SnowYeti2-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 504, Description: "snowyeti3-SnowYeti3-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 505, Description: "snowyeti4-SnowYeti4-Brute", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 506, Description: "wolfrider1-WolfRider1-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 507, Description: "wolfrider2-WolfRider2-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 508, Description: "wolfrider3-WolfRider3-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "wr", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 509, Description: "minion1-Minionexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 510, Description: "minion2-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 511, Description: "minion3-IceBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 512, Description: "minion4-FireBoar-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 513, Description: "minion5-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 514, Description: "minion6-IceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 515, Description: "minion7-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 516, Description: "minion8-GreaterIceSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 517, Description: "suicideminion1-FanaticMinion-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 518, Description: "suicideminion2-BerserkSlayer-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 519, Description: "suicideminion3-ConsumedIceBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 520, Description: "suicideminion4-ConsumedFireBoar-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 521, Description: "suicideminion5-FrenziedHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 522, Description: "suicideminion6-FrenziedIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 523, Description: "suicideminion7-InsaneHellSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 524, Description: "suicideminion8-InsaneIceSpawn-SuicideMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xy", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 525, Description: "succubus1-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 526, Description: "succubus2-VileTemptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 527, Description: "succubus3-StygianHarlot-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 528, Description: "succubus4-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 529, Description: "succubus5-Blood Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 530, Description: "succubuswitch1-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 531, Description: "succubuswitch2-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 532, Description: "succubuswitch3-StygianFury-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 533, Description: "succubuswitch4-Blood Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 534, Description: "succubuswitch5-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 535, Description: "overseer1-OverSeer-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 536, Description: "overseer2-Lasher-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 537, Description: "overseer3-OverLord-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 538, Description: "overseer4-BloodBoss-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 539, Description: "overseer5-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 540, Description: "minionspawner1-MinionSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 541, Description: "minionspawner2-MinionSlayerSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 542, Description: "minionspawner3-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 543, Description: "minionspawner4-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 544, Description: "minionspawner5-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 545, Description: "minionspawner6-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 546, Description: "minionspawner7-MinionIce/fireBoarSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 547, Description: "minionspawner8-Minionice/hellSpawnSpawner-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 548, Description: "imp1-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 549, Description: "imp2-Imp2-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 550, Description: "imp3-Imp3-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 551, Description: "imp4-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 552, Description: "imp5-Imp5-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 553, Description: "catapult1-CatapultS-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "65", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 554, Description: "catapult2-CatapultE-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 555, Description: "catapult3-CatapultSiege-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "64", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 556, Description: "catapult4-CatapultW-Catapult", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ua", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 557, Description: "frozenhorror1-Frozen Horror1-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 558, Description: "frozenhorror2-Frozen Horror2-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 559, Description: "frozenhorror3-Frozen Horror3-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 560, Description: "frozenhorror4-Frozen Horror4-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 561, Description: "frozenhorror5-Frozen Horror5-FrozenHorror", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 562, Description: "bloodlord1-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 563, Description: "bloodlord2-Blood Lord2-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 564, Description: "bloodlord3-Blood Lord3-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 565, Description: "bloodlord4-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 566, Description: "bloodlord5-Blood Lord5-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 567, Description: "larzuk-Larzuk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 568, Description: "drehya-Drehya-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 569, Description: "malah-Malah-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 570, Description: "nihlathak-Nihlathak Town-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 571, Description: "qual-kehk-Qual-Kehk-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 572, Description: "catapultspotter1-Catapult Spotter S-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 573, Description: "catapultspotter2-Catapult Spotter E-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 574, Description: "catapultspotter3-Catapult Spotter Siege-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 575, Description: "catapultspotter4-Catapult Spotter W-CatapultSpotter", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "k9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 576, Description: "cain6-DeckardCain-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 577, Description: "tyrael3-tyrael-NpcStationary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TY", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 578, Description: "act5barb1-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 579, Description: "act5barb2-Act 5 Combatant-NpcBarb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "HVY", RH: "AXE", LH: "AXE", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 580, Description: "barricadewall1-Barricade Wall Right-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "A6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 581, Description: "barricadewall2-Barricade Wall Left-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 582, Description: "nihlathakboss-Nihlathak-Nihlathak", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 583, Description: "drehyaiced-Drehya-NpcOutOfTown", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 584, Description: "evilhut-Evil hut-GenericSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "2T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 585, Description: "deathmauler1-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 586, Description: "deathmauler2-Death Mauler2-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 587, Description: "deathmauler3-Death Mauler3-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 588, Description: "deathmauler4-Death Mauler4-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 589, Description: "deathmauler5-Death Mauler5-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 590, Description: "act5pow-POW-Wussie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 591, Description: "act5barb3-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 592, Description: "act5barb4-Act 5 Townguard-Npc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "HTH", HD: "HED", TR: "LIT", RH: "BHN", LH: "BHN", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 593, Description: "ancientstatue1-Ancient Statue 1-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0G", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 594, Description: "ancientstatue2-Ancient Statue 2-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 595, Description: "ancientstatue3-Ancient Statue 3-AncientStatue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0I", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 596, Description: "ancientbarb1-Ancient Barbarian 1-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 597, Description: "ancientbarb2-Ancient Barbarian 2-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 598, Description: "ancientbarb3-Ancient Barbarian 3-Ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 599, Description: "baalthrone-Baal Throne-BaalThrone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "41", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 600, Description: "baalcrab-Baal Crab-BaalCrab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 601, Description: "baaltaunt-Baal Taunt-BaalTaunt", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 602, Description: "putriddefiler1-Putrid Defiler1-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 603, Description: "putriddefiler2-Putrid Defiler2-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 604, Description: "putriddefiler3-Putrid Defiler3-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 605, Description: "putriddefiler4-Putrid Defiler4-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 606, Description: "putriddefiler5-Putrid Defiler5-PutridDefiler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "45", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 607, Description: "painworm1-Pain Worm1-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 608, Description: "painworm2-Pain Worm2-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 609, Description: "painworm3-Pain Worm3-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 610, Description: "painworm4-Pain Worm4-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 611, Description: "painworm5-Pain Worm5-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "46", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 612, Description: "bunny-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "48", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 613, Description: "baalhighpriest-Council Member-HighPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 614, Description: "venomlord-VenomLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FLB", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 615, Description: "baalcrabstairs-Baal Crab to Stairs-BaalToStairs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 616, Description: "act5hire1-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 617, Description: "act5hire2-dummy-Hireable", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0A", Mode: "NU", Class: "1HS", HD: "FHM", TR: "LIT", RH: "AXE", LH: "AXE", S1: "MED", S2: "MED", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 618, Description: "baaltentacle1-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 619, Description: "baaltentacle2-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 620, Description: "baaltentacle3-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 621, Description: "baaltentacle4-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 622, Description: "baaltentacle5-Baal Tentacle-BaalTentacle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "44", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 623, Description: "injuredbarb1-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "6z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 624, Description: "injuredbarb2-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7j", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 625, Description: "injuredbarb3-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "7i", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 626, Description: "baalclone-Baal Crab Clone-BaalCrabClone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 627, Description: "baalminion1-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 628, Description: "baalminion2-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 629, Description: "baalminion3-Baals Minion-BaalMinion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 630, Description: "worldstoneeffect-dummy-Idle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "K9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 631, Description: "sk_archer6-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 632, Description: "sk_archer7-BoneArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 633, Description: "sk_archer8-BurningDeadArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 634, Description: "sk_archer9-ReturnedArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 635, Description: "sk_archer10-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 636, Description: "bighead6-Afflicted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 637, Description: "bighead7-Tainted-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 638, Description: "bighead8-Misshapen-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 639, Description: "bighead9-Disfigured-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 640, Description: "bighead10-Damned-Bighead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 641, Description: "goatman6-MoonClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 642, Description: "goatman7-NightClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 643, Description: "goatman8-HellClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 644, Description: "goatman9-BloodClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 645, Description: "goatman10-DeathClan-Goatman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GM", Mode: "NU", Class: "2HS", TR: "LIT", RH: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 646, Description: "foulcrow5-FoulCrow-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 647, Description: "foulcrow6-BloodHawk-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 648, Description: "foulcrow7-BlackRaptor-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 649, Description: "foulcrow8-CloudStalker-BloodHawk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BK", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 650, Description: "clawviper6-ClawViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 651, Description: "clawviper7-PitViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 652, Description: "clawviper8-Salamander-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 653, Description: "clawviper9-TombViper-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 654, Description: "clawviper10-SerpentMagus-ClawViperEx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 655, Description: "sandraider6-Marauder-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 656, Description: "sandraider7-Infidel-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 657, Description: "sandraider8-SandRaider-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 658, Description: "sandraider9-Invader-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 659, Description: "sandraider10-Assailant-SandRaider", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 660, Description: "deathmauler6-Death Mauler1-DeathMauler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 661, Description: "quillrat6-QuillRat-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 662, Description: "quillrat7-SpikeFiend-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 663, Description: "quillrat8-RazorSpine-QuillRat", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 664, Description: "vulture5-CarrionBird-Vulture", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 665, Description: "thornhulk5-ThornedHulk-ThornHulk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 666, Description: "slinger7-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 667, Description: "slinger8-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 668, Description: "slinger9-Slinger-PantherJavelin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 669, Description: "cr_archer6-VileArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 670, Description: "cr_archer7-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 671, Description: "cr_lancer6-VileLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 672, Description: "cr_lancer7-DarkLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 673, Description: "cr_lancer8-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 674, Description: "blunderbore5-Blunderbore-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 675, Description: "blunderbore6-Mauler-PinHead", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 676, Description: "skmage_fire5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 677, Description: "skmage_fire6-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 678, Description: "skmage_ltng5-ReturnedMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 679, Description: "skmage_ltng6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 680, Description: "skmage_cold5-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 681, Description: "skmage_pois5-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 682, Description: "skmage_pois6-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 683, Description: "pantherwoman5-Huntress-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 684, Description: "pantherwoman6-SaberCat-PantherWoman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 685, Description: "sandleaper6-CaveLeaper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 686, Description: "sandleaper7-TombCreeper-SandLeaper", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 687, Description: "wraith6-Ghost-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 688, Description: "wraith7-Wraith-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 689, Description: "wraith8-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 690, Description: "succubus6-Succubusexp-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 691, Description: "succubus7-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 692, Description: "succubuswitch6-Dominus-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 693, Description: "succubuswitch7-Hell Witch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 694, Description: "succubuswitch8-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 695, Description: "willowisp5-Gloam-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 696, Description: "willowisp6-BlackSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 697, Description: "willowisp7-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 698, Description: "fallen6-Carver-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 699, Description: "fallen7-Devilkin-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 700, Description: "fallen8-DarkOne-Fallen", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "CLB", SH: "BUC", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 701, Description: "fallenshaman6-CarverShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 702, Description: "fallenshaman7-DevilkinShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 703, Description: "fallenshaman8-DarkShaman-FallenShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 704, Description: "skeleton6-BoneWarrior-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 705, Description: "skeleton7-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 706, Description: "batdemon6-Gloombat-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 707, Description: "batdemon7-Fiend-BatDemon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 708, Description: "bloodlord6-Blood Lord1-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 709, Description: "bloodlord7-Blood Lord4-BloodLord", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 710, Description: "scarab6-Scarab-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 711, Description: "scarab7-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 712, Description: "fetish6-Flayer-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 713, Description: "fetish7-StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 714, Description: "fetish8-SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FE", Mode: "NU", Class: "HTH", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 715, Description: "fetishblow6-Flayer-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 716, Description: "fetishblow7-StygianDoll-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 717, Description: "fetishblow8-SoulKiller-FetishBlowgun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 718, Description: "fetishshaman6-FlayerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 719, Description: "fetishshaman7-StygianDollShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 720, Description: "fetishshaman8-SoulKillerShaman-FetishShaman", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 721, Description: "baboon7-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 722, Description: "baboon8-TempleGuard-Baboon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 723, Description: "unraveler6-Guardian-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 724, Description: "unraveler7-Unraveler-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 725, Description: "unraveler8-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 726, Description: "unraveler9-Horadrim Ancient-GreaterMummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 727, Description: "zealot4-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 728, Description: "zealot5-Zealot-ZakarumZealot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZZ", Mode: "NU", Class: "HTH", HD: "HD1", TR: "ZZ5", S1: "HAL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 729, Description: "cantor5-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 730, Description: "cantor6-Heirophant-ZakarumPriest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 731, Description: "vilemother4-Grotesque-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 732, Description: "vilemother5-FleshSpawner-VileMother", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 733, Description: "vilechild4-GrotesqueWyrm-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 734, Description: "vilechild5-FleshBeast-VileDog", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VC", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 735, Description: "sandmaggot6-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 736, Description: "maggotbaby6-WorldKillerYoung-MaggotLarva", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SB", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 737, Description: "maggotegg6-WorldKillerEgg-MaggotEgg", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 738, Description: "minion9-Slayerexp-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 739, Description: "minion10-HellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 740, Description: "minion11-GreaterHellSpawn-Minion", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 741, Description: "arach6-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 742, Description: "megademon4-Balrog-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 743, Description: "megademon5-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 744, Description: "imp6-Imp1-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 745, Description: "imp7-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 746, Description: "bonefetish6-Undead StygianDoll-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 747, Description: "bonefetish7-Undead SoulKiller-Fetish", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FK", Mode: "NU", Class: "1HS", TR: "LIT", RH: "FBL", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 748, Description: "fingermage4-Strangler-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 749, Description: "fingermage5-StormCaster-FingerMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 750, Description: "regurgitator4-MawFiend-Regurgitator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 751, Description: "vampire6-BloodLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 752, Description: "vampire7-GhoulLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 753, Description: "vampire8-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 754, Description: "reanimatedhorde6-UnholyCorpse-ReanimatedHorde", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 755, Description: "dkfig1-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 756, Description: "dkfig2-DoomKnight-DoomKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 757, Description: "dkmag1-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 758, Description: "dkmag2-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 759, Description: "mummy6-Cadaver-Mummy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 760, Description: "ubermephisto-Mephisto-UberMephisto", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MP", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 761, Description: "uberdiablo-Diablo-UberDiablo", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DI", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 762, Description: "uberizual-izual-UberIzual", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "22", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 763, Description: "uberandariel-Lilith-Andariel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "AN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 764, Description: "uberduriel-Duriel-Duriel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DU", Mode: "NU", Class: "HTH", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 765, Description: "uberbaal-Baal Crab-UberBaal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "42", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 766, Description: "demonspawner-Evil hut-MinionSpawner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 767, Description: "demonhole-Dummy-EvilHole", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EH", Mode: "S4", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 768, Description: "megademon6-PitLord-Megademon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 769, Description: "dkmag3-OblivionKnight-OblivionKnight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 770, Description: "imp8-Imp4-Imp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 771, Description: "swarm5-HellSwarm-Swarm", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 772, Description: "sandmaggot7-WorldKiller-SandMaggot", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 773, Description: "arach7-Arach-Arach", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 774, Description: "scarab8-SteelWeevil-Scarab", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 775, Description: "succubus8-Hell Temptress-Succubus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 776, Description: "succubuswitch9-VileWitch-SuccubusWitch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 777, Description: "corruptrogue6-FleshHunter-CorruptRogue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 778, Description: "cr_archer8-DarkArcher-CorruptArcher", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 779, Description: "cr_lancer9-BlackLancer-CorruptLancer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "2HT", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "PIK", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 780, Description: "overseer6-HellWhip-Overseer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 781, Description: "skeleton8-Returned-Skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 782, Description: "sk_archer11-HorrorArcher-SkeletonBow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", LH: "SBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 783, Description: "skmage_fire7-BurningDeadMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "FIR", S5: "FIR", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 784, Description: "skmage_ltng7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "LHT", S5: "LHT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 785, Description: "skmage_cold6-BoneMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "CLD", S5: "CLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 786, Description: "skmage_pois7-HorrorMage-SkeletonMage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "DES", RA: "DES", LA: "DES", S1: "DES", S2: "DES", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 787, Description: "vampire9-DarkLord-Vampire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 788, Description: "wraith9-Specter-Wraith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 789, Description: "willowisp8-BurningSoul-WillOWisp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 790, Description: "Bishibosh-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 791, Description: "Bonebreak-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BUC", S1: "HVY", S2: "HVY", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 792, Description: "Coldcrow-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "BOW", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "LIT", LH: "LBW", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 793, Description: "Rakanishu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FA", Mode: "NU", Class: "HTH", TR: "LIT", RH: "SWD", SH: "TCH", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 794, Description: "Treehead WoodFist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "YE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 795, Description: "Griswold-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 796, Description: "The Countess-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "MED", TR: "LIT", LG: "MED", RA: "LIT", LA: "LIT", RH: "WHM", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 797, Description: "Pitspawn Fouldog-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BH", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 798, Description: "Flamespike the Crawler-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SI", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 799, Description: "Boneash-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SK", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S4: "POS", S5: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 800, Description: "Radament-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "RD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 801, Description: "Bloodwitch the Wild-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "PW", Mode: "NU", Class: "1HT", HD: "BAB", TR: "HVY", RA: "HVY", LA: "HVY", LH: "GPL", SH: "BUC", S1: "HVY", S2: "HVY", S3: "HVY", S4: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 802, Description: "Fangskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 803, Description: "Beetleburst-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SC", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 804, Description: "Leatherarm-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MM", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 805, Description: "Coldworm the Burrower-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "MQ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 806, Description: "Fire Eye-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 807, Description: "Dark Elder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 808, Description: "The Summoner-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 809, Description: "Ancient Kaa the Soulless-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 810, Description: "The Smith-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 811, Description: "Web Mage the Burning-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "SP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 812, Description: "Witch Doctor Endugu-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 813, Description: "Stormtree-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "TH", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", RA: "LIT", LA: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 814, Description: "Sarina the Battlemaid-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CR", Mode: "NU", Class: "1HS", HD: "HVY", TR: "HVY", LG: "HVY", RA: "HVY", LA: "HVY", RH: "AXE", SH: "BRV", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 815, Description: "Icehawk Riftwing-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "BT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 816, Description: "Ismail Vilehand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 817, Description: "Geleb Flamefinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 818, Description: "Bremm Sparkfist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 819, Description: "Toorc Icefist-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 820, Description: "Wyand Voidfinger-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 821, Description: "Maffer Dragonhand-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 822, Description: "Winged Death-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 823, Description: "The Tormentor-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "WW", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 824, Description: "Taintbreeder-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "VM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 825, Description: "Riftwraith the Cannibal-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "CS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 826, Description: "Infector of Souls-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 827, Description: "Lord De Seis-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "UM", Mode: "NU", Class: "HTH", HD: "HRN", TR: "LIT", RA: "MED", LA: "MED", LH: "BSD", S1: "RSP", S2: "LSP", S3: "UNH", S4: "POS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 828, Description: "Grand Vizier of Chaos-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FR", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 829, Description: "The Cow King-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "EC", Mode: "NU", Class: "HTH", TR: "LIT", RH: "BTX", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 830, Description: "Corpsefire-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ZM", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "BLD", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 831, Description: "The Feature Creep-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "5P", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 832, Description: "Siege Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 833, Description: "Ancient Barbarian 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 834, Description: "Ancient Barbarian 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0F", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 835, Description: "Ancient Barbarian 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0E", Mode: "NU", Class: "HTH", TR: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 836, Description: "Axe Dweller-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "L3", Mode: "NU", Class: "HTH", HD: "HEV", TR: "LIT", LG: "HEV", RA: "HEV", LA: "HEV", RH: "FLA", LH: "FLA", S1: "HEV", S2: "HEV", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 837, Description: "Bonesaw Breaker-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 838, Description: "Dac Farren-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 839, Description: "Megaflow Rectifier-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "xx", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", RH: "HVY", SH: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 840, Description: "Eyeback Unleashed-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 841, Description: "Threash Socket-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ox", Mode: "NU", Class: "HTH", TR: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S7: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 842, Description: "Pindleskin-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "re", Mode: "NU", Class: "HTH", HD: "HVY", TR: "LIT", LG: "HVY", RA: "HVY", LA: "HVY", RH: "CLM", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 843, Description: "Snapchip Shatter-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "f0", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 844, Description: "Anodized Elite-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0B", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 845, Description: "Vinvear Molech-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "0C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 846, Description: "Sharp Tooth Sayer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "os", Mode: "NU", Class: "HTH", HD: "HVY", TR: "HVY", RA: "HVY", LA: "HVY", LH: "LIT", S1: "HVY", S2: "HVY", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 847, Description: "Magma Torquer-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "ip", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 848, Description: "Blaze Ripper-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "m5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 849, Description: "Frozenstein-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "io", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 850, Description: "Nihlathak Boss-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XU", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 851, Description: "Baal Subject 1-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "FS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 852, Description: "Baal Subject 2-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "GY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 853, Description: "Baal Subject 3-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "HP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 854, Description: "Baal Subject 4-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "DM", Mode: "NU", Class: "HTH", TR: "LIT", RH: "WSC", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeCharacter, Id: 855, Description: "Baal Subject 5-SUPER UNIQUE", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "43", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", LG: "LIT", RA: "LIT", LA: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 0, Description: "banner 1 (452)", ObjectsTxtId: 452, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AO", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 1, Description: "banner 2 (453)", ObjectsTxtId: 453, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 2, Description: "guild vault (338)", ObjectsTxtId: 338, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 3, Description: "steeg stone (337)", ObjectsTxtId: 337, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 4, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 5, Description: "fog water (374)", ObjectsTxtId: 374, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "UD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 6, Description: "torch, expansion tiki 1 (482)", ObjectsTxtId: 482, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 7, Description: "Fire, Rogue camp (39)", ObjectsTxtId: 39, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 8, Description: "standard / direction (35)", ObjectsTxtId: 35, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 9, Description: "standard / direction ((36)", ObjectsTxtId: 36, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 10, Description: "candles R (33)", ObjectsTxtId: 33, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 11, Description: "candles L (34)", ObjectsTxtId: 34, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 12, Description: "torch 2 wall (38)", ObjectsTxtId: 38, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 13, Description: "floor brazier (102)", ObjectsTxtId: 102, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 14, Description: "Pot O Torch, level 1 (411)", ObjectsTxtId: 411, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PX", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 15, Description: "burning bodies (438)", ObjectsTxtId: 438, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6F", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 16, Description: "fire pit, level 1 (412)", ObjectsTxtId: 412, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PY", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 17, Description: "camp fire (435)", ObjectsTxtId: 435, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2W", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 18, Description: "town torch (436)", ObjectsTxtId: 436, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2X", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 19, Description: "Tribal Flag (440)", ObjectsTxtId: 440, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6H", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 20, Description: "Town Flag (441)", ObjectsTxtId: 441, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 21, Description: "Town Flag (441)", ObjectsTxtId: 441, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 22, Description: "Chandelier (442)", ObjectsTxtId: 442, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 23, Description: "Waypoint (429)", ObjectsTxtId: 429, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YY", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 24, Description: "Wooden Chest L (420)", ObjectsTxtId: 420, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 25, Description: "Wooden Chest R (431)", ObjectsTxtId: 431, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 26, Description: "Chest L (430)", ObjectsTxtId: 430, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 27, Description: "Chest R (413)", ObjectsTxtId: 413, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 28, Description: "Chest S L (432)", ObjectsTxtId: 432, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 29, Description: "Chest S R (433)", ObjectsTxtId: 433, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 30, Description: "wilderness barrel (418)", ObjectsTxtId: 418, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 31, Description: "exploding wildernes barrel (419)", ObjectsTxtId: 419, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YO", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 32, Description: "Burial Chest (424)", ObjectsTxtId: 424, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 33, Description: "Burial Chest R (425)", ObjectsTxtId: 425, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 34, Description: "Hidden Stash (416)", ObjectsTxtId: 416, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3W", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 35, Description: "Shrine 1 (414)", ObjectsTxtId: 414, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6R", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 36, Description: "Shrine 2 (415)", ObjectsTxtId: 415, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6S", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 37, Description: "Shrine 3 (427)", ObjectsTxtId: 427, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YW", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 38, Description: "Shrine 4 (428)", ObjectsTxtId: 428, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 39, Description: "Shrine 5 (421)", ObjectsTxtId: 421, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YQ", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 40, Description: "Shrine, mana (422)", ObjectsTxtId: 422, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YR", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 41, Description: "Health Shrine (423)", ObjectsTxtId: 423, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 42, Description: "Well (426)", ObjectsTxtId: 426, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YV", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 43, Description: "Hell Gate (451)", ObjectsTxtId: 451, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 44, Description: "Your Private Stash (267)", ObjectsTxtId: 267, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 45, Description: "Jar 1 (443)", ObjectsTxtId: 443, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6I", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 46, Description: "Jar 2 (444)", ObjectsTxtId: 444, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 47, Description: "Jar 3 (445)", ObjectsTxtId: 445, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6K", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 48, Description: "Swinging Heads (446)", ObjectsTxtId: 446, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 49, Description: "Pole (447)", ObjectsTxtId: 447, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6M", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 50, Description: "Skulls and Rocks, no snow (448)", ObjectsTxtId: 448, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 51, Description: "Skulls and Rocks, siege (450)", ObjectsTxtId: 450, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6O", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 52, Description: "Hell Gate (451)", ObjectsTxtId: 451, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 53, Description: "Anya start in town (459)", ObjectsTxtId: 459, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "XS", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 54, Description: "Anya start outside town (460)", ObjectsTxtId: 460, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 55, Description: "Nihlathak start in town (461)", ObjectsTxtId: 461, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 56, Description: "Nihlathak outside in town (462)", ObjectsTxtId: 462, MonstatsTxtId: -1, Direction: 7, Base: "/Data/Global/Monsters", Token: "0J", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 57, Description: "Torch, expansion tiki torch (482)", ObjectsTxtId: 482, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2P", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 58, Description: "Cage, caged fellow (473)", ObjectsTxtId: 473, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 59, Description: "Chest, specialchest (455)", ObjectsTxtId: 455, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6U", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 60, Description: "Death Pole 1, wilderness (456)", ObjectsTxtId: 456, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6V", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 61, Description: "Death Pole 2, wilderness (457)", ObjectsTxtId: 457, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6W", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 62, Description: "Altar, inside of temple (458)", ObjectsTxtId: 458, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6X", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 63, Description: "Hidden Stash, icecave (463)", ObjectsTxtId: 463, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6Y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 64, Description: "Health Shrine, icecave (464)", ObjectsTxtId: 464, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 65, Description: "Shrine, icecave (465)", ObjectsTxtId: 465, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 66, Description: "Evil Urn, icecave (466)", ObjectsTxtId: 466, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8C", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 67, Description: "Jar, icecave 1 (467)", ObjectsTxtId: 467, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8D", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 68, Description: "Jar, icecave 2 (468)", ObjectsTxtId: 468, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8E", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 69, Description: "Jar, icecave 3 (469)", ObjectsTxtId: 469, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8F", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 70, Description: "Jar, icecave 4 (470)", ObjectsTxtId: 470, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8G", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 71, Description: "Jar, icecave 5 (471)", ObjectsTxtId: 471, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8H", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 72, Description: "Shrine, icecave 1 (472)", ObjectsTxtId: 472, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8I", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 73, Description: "Dead Barbarian, seige/wilderness (477)", ObjectsTxtId: 477, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 74, Description: "Shrine, icecave 2 (479)", ObjectsTxtId: 479, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8K", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 75, Description: "Torch, icecave 1 (480)", ObjectsTxtId: 480, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 76, Description: "Torch, icecave 2 (481)", ObjectsTxtId: 481, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8M", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 77, Description: "Shrine, baals (483)", ObjectsTxtId: 483, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8N", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 78, Description: "Health Shrine, baals (484)", ObjectsTxtId: 484, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8O", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 79, Description: "Tomb, baal's lair 1 (485)", ObjectsTxtId: 485, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8P", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 80, Description: "Tomb, baal's lair 2 (486)", ObjectsTxtId: 486, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 81, Description: "Tomb, baal's lair 3 (487)", ObjectsTxtId: 487, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8R", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 82, Description: "Chest, wilderness/siege exploding (454)", ObjectsTxtId: 454, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6T", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 83, Description: "Torch, expansion no snow (437)", ObjectsTxtId: 437, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6E", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 84, Description: "Stash, Pen breakable door (508)", ObjectsTxtId: 508, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2Q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 85, Description: "Magic Shrine, baal's lair (488)", ObjectsTxtId: 488, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8S", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 86, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 87, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 88, Description: "Magic Shrine, snowy_shrine3 a (495)", ObjectsTxtId: 495, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Z", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 89, Description: "Magic Shrine, snowy_shrine3 b (497)", ObjectsTxtId: 497, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5B", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 90, Description: "Magic Shrine, baal's lair (499)", ObjectsTxtId: 499, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5D", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 91, Description: "Magic Shrine, baals_shrine3 (503)", ObjectsTxtId: 503, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5H", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 92, Description: "Magic Shrine, temple 1 (509)", ObjectsTxtId: 509, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5M", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 93, Description: "Magic Shrine, temple 2 (512)", ObjectsTxtId: 512, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5T", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 94, Description: "Torch, baal's lair 1 (489)", ObjectsTxtId: 489, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8T", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 95, Description: "Torch, baal's lair 2 (490)", ObjectsTxtId: 490, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8U", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 96, Description: "Torch, temple 1 (514)", ObjectsTxtId: 514, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5R", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 97, Description: "Torch, temple 2 (515)", ObjectsTxtId: 515, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5S", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 98, Description: "Well, snowy (493)", ObjectsTxtId: 493, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 99, Description: "Well, baalslair (498)", ObjectsTxtId: 498, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 100, Description: "Well, temple (513)", ObjectsTxtId: 513, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5Q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 101, Description: "Waypoint, baals_waypoint (494)", ObjectsTxtId: 494, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8Y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 102, Description: "Waypoint, wilderness_waypoint (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 103, Description: "Waypoint, icecave (511)", ObjectsTxtId: 511, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5O", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 104, Description: "Hidden Stash, snowy (500)", ObjectsTxtId: 500, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5E", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 105, Description: "Wooden Chest, snowy L (501)", ObjectsTxtId: 501, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5F", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 106, Description: "Wooden Chest, snowy R (502)", ObjectsTxtId: 502, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5G", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 107, Description: "Wooden Chest, snowy L 2 (504)", ObjectsTxtId: 504, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5I", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 108, Description: "Wooden Chest, snowy R 2 (505)", ObjectsTxtId: 505, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5J", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 109, Description: "Swinging Heads, snowy (506)", ObjectsTxtId: 506, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5K", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 110, Description: "Debris, snowy (507)", ObjectsTxtId: 507, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 111, Description: "Pole, snowy (510)", ObjectsTxtId: 510, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5N", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 112, Description: "Fire, fire small (160)", ObjectsTxtId: 160, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 113, Description: "Fire, fire medium (161)", ObjectsTxtId: 161, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 114, Description: "Fire, fire large (162)", ObjectsTxtId: 162, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 115, Description: "gold placeholder (269)", ObjectsTxtId: 269, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 116, Description: "Red Light, (touch me) for blacksmith (523)", ObjectsTxtId: 523, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 117, Description: "Torch, expansion no snow (434)", ObjectsTxtId: 434, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6D", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 118, Description: "Waypoint, wilderness_waypoint 1 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 119, Description: "Waypoint, wilderness_waypoint 2 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 120, Description: "Waypoint, wilderness_waypoint 3 (496)", ObjectsTxtId: 496, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5A", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 121, Description: "Shrub, Ice cave bubbles 01 (527)", ObjectsTxtId: 527, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2U", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 122, Description: "Shrub, Ice cave bubbles 01 (528)", ObjectsTxtId: 528, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2S", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 123, Description: "Candles, temple (538)", ObjectsTxtId: 538, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3O", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 124, Description: "Waypoint, temple (539)", ObjectsTxtId: 539, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3P", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 125, Description: "Larzuk Greeting (542)", ObjectsTxtId: 542, MonstatsTxtId: -1, Direction: 1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 126, Description: "Larzuk Standard (543)", ObjectsTxtId: 543, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Monsters", Token: "XR", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 127, Description: "Altar of the Heavens, ancientsaltar (546)", ObjectsTxtId: 546, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4A", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 128, Description: "door, ancient To Worldstone lev 1 (547)", ObjectsTxtId: 547, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4B", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 129, Description: "Weapon Rack, R (548)", ObjectsTxtId: 548, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3X", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 130, Description: "Weapon Rack, L (549)", ObjectsTxtId: 549, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 131, Description: "Armor Stand, R (550)", ObjectsTxtId: 550, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 132, Description: "Armor Stand, L (551)", ObjectsTxtId: 551, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4C", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 133, Description: "Torch, summit (552)", ObjectsTxtId: 552, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9G", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 134, Description: "Ice cave steam (555)", ObjectsTxtId: 555, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2O", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 135, Description: "funeralpire (553)", ObjectsTxtId: 553, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9H", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 136, Description: "burninglogs (554)", ObjectsTxtId: 554, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9I", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 137, Description: "dummy, Baal's lair (557)", ObjectsTxtId: 557, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 138, Description: "Tomb, temple ground (541)", ObjectsTxtId: 541, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3S", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 139, Description: "Tomb, temple ground L (544)", ObjectsTxtId: 544, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3T", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 140, Description: "BBQ Bunny (559)", ObjectsTxtId: 559, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 141, Description: "Baal Torch Big (560)", ObjectsTxtId: 560, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 142, Description: "The Ancients' Way, summit door (564)", ObjectsTxtId: 564, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4U", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 143, Description: "test data, zoo (567)", ObjectsTxtId: 567, MonstatsTxtId: -1, Direction: -1, Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 144, Description: "test data, keeper (568)", ObjectsTxtId: 568, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7Z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 145, Description: "Torch, redbaal's lair 1 (536)", ObjectsTxtId: 536, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3M", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 146, Description: "Torch, redbaal's lair 2 (537)", ObjectsTxtId: 537, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3N", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 147, Description: "The Worldstone Chamber, baals portal (563)", ObjectsTxtId: 563, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4X", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 148, Description: "fire place guy (570)", ObjectsTxtId: 570, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7Y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 149, Description: "Chest, spark (397)", ObjectsTxtId: 397, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 150, Description: "Dummy-test data SKIPT IT", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "NU0", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 151, Description: "Casket-Casket #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 152, Description: "Shrine-Shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 153, Description: "Casket-Casket #6", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 154, Description: "LargeUrn-Urn #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 155, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 156, Description: "chest-LargeChestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 157, Description: "Barrel-Barrel", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 158, Description: "TowerTome-Tower Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 159, Description: "Urn-Urn #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 160, Description: "Dummy-Bench", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BE", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 161, Description: "Barrel-BarrelExploding", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BX", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 162, Description: "Dummy-RogueFountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FN", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 163, Description: "Door-Door Gate Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 164, Description: "Door-Door Gate Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 165, Description: "Door-Door Wooden Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 166, Description: "Door-Door Wooden Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 167, Description: "StoneAlpha-StoneAlpha", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 168, Description: "StoneBeta-StoneBeta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 169, Description: "StoneGamma-StoneGamma", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 170, Description: "StoneDelta-StoneDelta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 171, Description: "StoneLambda-StoneLambda", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 172, Description: "StoneTheta-StoneTheta", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 173, Description: "Door-Door Courtyard Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 174, Description: "Door-Door Courtyard Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 175, Description: "Door-Door Cathedral Double", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 176, Description: "Gibbet-Cain's Been Captured", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 177, Description: "Door-Door Monastery Double Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 178, Description: "HoleAnim-Hole in Ground", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HI", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 179, Description: "Dummy-Brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BR", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 180, Description: "Inifuss-inifuss tree", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "IT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 181, Description: "Dummy-Fountain", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BF", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 182, Description: "Dummy-crucifix", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 183, Description: "Dummy-Candles1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 184, Description: "Dummy-Candles2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 185, Description: "Dummy-Standard1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 186, Description: "Dummy-Standard2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "N2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 187, Description: "Dummy-Torch1 Tiki", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TO", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 188, Description: "Dummy-Torch2 Wall", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "WT", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 189, Description: "fire-RogueBonfire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RB", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 190, Description: "Dummy-River1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 191, Description: "Dummy-River2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 192, Description: "Dummy-River3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 193, Description: "Dummy-River4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 194, Description: "Dummy-River5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "R5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 195, Description: "AmbientSound-ambient sound generator", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "S1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 196, Description: "Crate-Crate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CT", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 197, Description: "Door-Andariel's Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 198, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 199, Description: "Dummy-RogueTorch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "T2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 200, Description: "Casket-CasketR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 201, Description: "Casket-CasketL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 202, Description: "Urn-Urn #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 203, Description: "Casket-Casket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 204, Description: "RogueCorpse-Rogue corpse 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 205, Description: "RogueCorpse-Rogue corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 206, Description: "RogueCorpse-rolling rogue corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 207, Description: "CorpseOnStick-rogue on a stick 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 208, Description: "CorpseOnStick-rogue on a stick 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Z4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 209, Description: "Portal-Town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 210, Description: "Portal-Permanent town portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "ON", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 211, Description: "Dummy-Invisible object", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SS", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 212, Description: "Door-Door Cathedral Left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "D9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 213, Description: "Door-Door Cathedral Right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 214, Description: "Door-Door Wooden Left #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 215, Description: "Dummy-invisible river sound1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X1", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 216, Description: "Dummy-invisible river sound2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "X2", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 217, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 218, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 219, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 220, Description: "Dummy-ripple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4R", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 221, Description: "Dummy-forest night sound #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F1", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 222, Description: "Dummy-forest night sound #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F2", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 223, Description: "Dummy-yeti dung", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "YD", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 224, Description: "TrappDoor-Trap Door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 225, Description: "Door-Door by Dock, Act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DD", Mode: "ON", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 226, Description: "Dummy-sewer drip", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SZ", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 227, Description: "Shrine-healthorama", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 228, Description: "Dummy-invisible town sound", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TA", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 229, Description: "Casket-casket #3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "C3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 230, Description: "Obelisk-obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "OB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 231, Description: "Shrine-forest altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "AF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 232, Description: "Dummy-bubbling pool of blood", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 233, Description: "Shrine-horn shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 234, Description: "Shrine-healing well", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HW", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 235, Description: "Shrine-bull shrine,health, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 236, Description: "Dummy-stele,magic shrine, stone, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SG", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 237, Description: "Chest3-tombchest 1, largechestL", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CA", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 238, Description: "Chest3-tombchest 2 largechestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 239, Description: "Sarcophagus-mummy coffinL, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 240, Description: "Obelisk-desert obelisk", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DO", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 241, Description: "Door-tomb door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TL", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 242, Description: "Door-tomb door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TR", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 243, Description: "Shrine-mana shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 244, Description: "LargeUrn-Urn #4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 245, Description: "LargeUrn-Urn #5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "U5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 246, Description: "Shrine-health shrineforinnerhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 247, Description: "Shrine-innershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ix", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 248, Description: "Door-tomb door left 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 249, Description: "Door-tomb door right 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TU", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 250, Description: "Duriel's Lair-Portal to Duriel's Lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 251, Description: "Dummy-Brazier3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "B3", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 252, Description: "Dummy-Floor brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FB", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 253, Description: "Dummy-flies", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FL", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 254, Description: "ArmorStand-Armor Stand 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 255, Description: "ArmorStand-Armor Stand 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 256, Description: "WeaponRack-Weapon Rack 1R", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W1", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 257, Description: "WeaponRack-Weapon Rack 2L", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "W2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 258, Description: "Malus-Malus", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HM", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 259, Description: "Shrine-palace shrine, healthR, harom, arcane Sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "P2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 260, Description: "not used-drinker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n5", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 261, Description: "well-Fountain 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 262, Description: "not used-gesturer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n6", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 263, Description: "well-Fountain 2, well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 264, Description: "not used-turner", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "n7", Mode: "S1", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 265, Description: "well-Fountain 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 266, Description: "Shrine-snake woman, magic shrine, tomb, arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SN", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 267, Description: "Dummy-jungle torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JT", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 268, Description: "Well-Fountain 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "F6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 269, Description: "Waypoint-waypoint portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wp", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 270, Description: "Dummy-healthshrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 271, Description: "jerhyn-placeholder #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 272, Description: "jerhyn-placeholder #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 273, Description: "Shrine-innershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 274, Description: "Shrine-innershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 275, Description: "hidden stash-ihobject3 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "iu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 276, Description: "skull pile-skullpile inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "is", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 277, Description: "hidden stash-ihobject5 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ir", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 278, Description: "hidden stash-hobject4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 279, Description: "Door-secret door 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "h2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 280, Description: "Well-pool act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 281, Description: "Dummy-vile dog afterglow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 282, Description: "Well-cathedralwell act 1 inside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 283, Description: "shrine-shrine1_arcane sanctuary", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 284, Description: "shrine-dshrine2 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zs", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 285, Description: "shrine-desertshrine3 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zr", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 286, Description: "shrine-dshrine1 act 2 shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 287, Description: "Well-desertwell act 2 well, desert, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 288, Description: "Well-cavewell act 1 caves ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 289, Description: "chest-chest-r-large act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 290, Description: "chest-chest-r-tallskinney act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q2", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 291, Description: "chest-chest-r-med act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q3", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 292, Description: "jug-jug1 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 293, Description: "jug-jug2 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 294, Description: "chest-Lchest1 act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q6", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 295, Description: "Waypoint-waypointi inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 296, Description: "chest-dchest2R act 2, desert, tomb, chest-r-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 297, Description: "chest-dchestr act 2, desert, tomb, chest -r large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 298, Description: "chest-dchestL act 2, desert, tomb chest l large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "q8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 299, Description: "taintedsunaltar-tainted sun altar quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "za", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 300, Description: "shrine-dshrine1 act 2 , desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zv", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 301, Description: "shrine-dshrine4 act 2, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ze", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 302, Description: "orifice-Where you place the Horadric staff", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HA", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 303, Description: "Door-tyrael's door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "DX", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 304, Description: "corpse-guard corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 305, Description: "hidden stash-rock act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 306, Description: "Waypoint-waypoint act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 307, Description: "Waypoint-waypoint act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wn", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 308, Description: "skeleton-corpse", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 309, Description: "hidden stash-rockb act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 310, Description: "fire-fire small", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 311, Description: "fire-fire medium", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FY", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 312, Description: "fire-fire large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "FZ", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 313, Description: "hiding spot-cliff act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cf", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 314, Description: "Shrine-mana well1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MB", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 315, Description: "Shrine-mana well2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MD", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 316, Description: "Shrine-mana well3, act 2, tomb, ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 317, Description: "Shrine-mana well4, act 2, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 318, Description: "Shrine-mana well5", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "MJ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 319, Description: "hollow log-log", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 320, Description: "Shrine-jungle healwell act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JH", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 321, Description: "skeleton-corpseb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 322, Description: "Shrine-health well, health shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 323, Description: "Shrine-mana well7, mana shrine, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Mi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 324, Description: "loose rock-rockc act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 325, Description: "loose boulder-rockd act 1 wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "RZ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 326, Description: "chest-chest-L-med", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 327, Description: "chest-chest-L-large", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 328, Description: "GuardCorpse-guard on a stick, desert, tomb, harom", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GS", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 329, Description: "bookshelf-bookshelf1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b4", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 330, Description: "bookshelf-bookshelf2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 331, Description: "chest-jungle chest act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "JC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 332, Description: "coffin-tombcoffin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 333, Description: "chest-chest-L-med, jungle", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 334, Description: "Shrine-jungle shrine2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 335, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 336, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 337, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 338, Description: "stash-jungle object act3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ju", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 339, Description: "Dummy-cain portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "tP", Mode: "OP", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 340, Description: "Shrine-jungle shrine3 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "js", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 341, Description: "Shrine-jungle shrine4 act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 342, Description: "teleport pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 343, Description: "LamTome-Lam Esen's Tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ab", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 344, Description: "stair-stairsl", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sl", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 345, Description: "stair-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 346, Description: "a trap-test data floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "a5", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 347, Description: "Shrine-jungleshrine act 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jq", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 348, Description: "chest-chest-L-tallskinney, general chest r?", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "c0", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 349, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mz", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 350, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "my", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 351, Description: "Shrine-mafistoshrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mx", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 352, Description: "Shrine-mafistomana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 353, Description: "stash-mafistolair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 354, Description: "stash-box", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 355, Description: "stash-altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 356, Description: "Shrine-mafistohealth", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "mr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 357, Description: "dummy-water rocks in act 3 wrok", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 358, Description: "Basket-basket 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 359, Description: "Basket-basket 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 360, Description: "Dummy-water logs in act 3 ne logw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 361, Description: "Dummy-water rocks girl in act 3 wrob", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 362, Description: "Dummy-bubbles in act3 water", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yb", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 363, Description: "Dummy-water logs in act 3 logx", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wd", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 364, Description: "Dummy-water rocks in act 3 rokb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wc", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 365, Description: "Dummy-water rocks girl in act 3 watc", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "we", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 366, Description: "Dummy-water rocks in act 3 waty", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 367, Description: "Dummy-water logs in act 3 logz", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "lx", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 368, Description: "Dummy-web covered tree 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w3", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 369, Description: "Dummy-web covered tree 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w4", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 370, Description: "Dummy-web covered tree 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w5", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 371, Description: "Dummy-web covered tree 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 372, Description: "pillar-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "70", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 373, Description: "cocoon-cacoon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CN", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 374, Description: "cocoon-cacoon 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "CC", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 375, Description: "skullpile-hobject1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ib", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 376, Description: "Shrine-outershrinehell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ia", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 377, Description: "dummy-water rock girl act 3 nw blgb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QX", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 378, Description: "dummy-big log act 3 sw blga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qw", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 379, Description: "door-slimedoor1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SQ", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 380, Description: "door-slimedoor2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "SY", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 381, Description: "Shrine-outershrinehell2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ht", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 382, Description: "Shrine-outershrinehell3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 383, Description: "pillar-hobject2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 384, Description: "dummy-Big log act 3 se blgc ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qy", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 385, Description: "dummy-Big log act 3 nw blgd", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 386, Description: "Shrine-health wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ho", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 387, Description: "Waypoint-act3waypoint town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 388, Description: "Waypoint-waypointh", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wv", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 389, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bz", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 390, Description: "chest-gchest1L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cy", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 391, Description: "chest-gchest2R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cx", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 392, Description: "chest-gchest3R general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cu", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 393, Description: "chest-glchest3L general", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 394, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "rn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 395, Description: "body-burning town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "by", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 396, Description: "ratnest-sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ra", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 397, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qa", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 398, Description: "bed-bed act 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 399, Description: "manashrine-mana wellforhell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hn", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 400, Description: "a trap-exploding cow for Tristan and ACT 3 only??Very Rare 1 or 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ew", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 401, Description: "gidbinn altar-gidbinn altar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ga", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 402, Description: "gidbinn-gidbinn decoy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "gd", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 403, Description: "Dummy-diablo right light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "11", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 404, Description: "Dummy-diablo left light", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "12", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 405, Description: "Dummy-diablo start point", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 406, Description: "Dummy-stool for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s9", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 407, Description: "Dummy-wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wg", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 408, Description: "Dummy-more wood for act 1 cabin", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 409, Description: "Dummy-skeleton spawn for hell facing nw", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "QS", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 410, Description: "Shrine-holyshrine for monastery,catacombs,jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "HL", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 411, Description: "a trap-spikes for tombs floortrap", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "A7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 412, Description: "Shrine-act 1 cathedral", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "s0", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 413, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jb", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 414, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 415, Description: "Shrine-act 1 jail", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jf", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 416, Description: "goo pile-goo pile for sand maggot lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GP", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 417, Description: "bank-bank", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "b6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 418, Description: "wirt's body-wirt's body", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "BP", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 419, Description: "dummy-gold placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1g", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 420, Description: "corpse-guard corpse 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "GF", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 421, Description: "corpse-dead villager 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 422, Description: "corpse-dead villager 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "df", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 423, Description: "Dummy-yet another flame, no damage", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 424, Description: "hidden stash-tiny pixel shaped thingie", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "f9", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 425, Description: "Shrine-health shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ce", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 426, Description: "Shrine-mana shrine for caves", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 427, Description: "Shrine-cave magic shrine", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "cg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 428, Description: "Shrine-manashrine, act 3, dungeun", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "de", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 429, Description: "Shrine-magic shrine, act 3 sewers.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wj", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 430, Description: "Shrine-healthwell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 431, Description: "Shrine-manawell, act 3, sewers", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "wl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 432, Description: "Shrine-magic shrine, act 3 sewers, dungeon.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ws", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 433, Description: "dummy-brazier_celler, act 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bi", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 434, Description: "sarcophagus-anubis coffin, act2, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 435, Description: "dummy-brazier_general, act 2, sewers, tomb, desert", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bm", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 436, Description: "Dummy-brazier_tall, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bo", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 437, Description: "Dummy-brazier_small, act 2, desert, town, tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "bq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 438, Description: "Waypoint-waypoint, celler", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "w7", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 439, Description: "bed-bed for harum", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ub", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 440, Description: "door-iron grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 441, Description: "door-iron grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dn", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 442, Description: "door-wooden grate door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dp", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 443, Description: "door-wooden grate door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dt", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 444, Description: "door-wooden door left", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 445, Description: "door-wooden door right", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "dl", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 446, Description: "Dummy-wall torch left for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qd", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 447, Description: "Dummy-wall torch right for tombs", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qe", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 448, Description: "portal-arcane sanctuary portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ay", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 449, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hb", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 450, Description: "magic shrine-magic shrine, act 2, haram", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hc", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 451, Description: "Dummy-maggot well health", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 452, Description: "manashrine-maggot well mana", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 453, Description: "magic shrine-magic shrine, act 3 arcane sanctuary.", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hd", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 454, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 455, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 456, Description: "teleportation pad-teleportation pad", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "aa", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 457, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7a", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 458, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7b", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 459, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 460, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7d", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 461, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7e", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 462, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7f", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 463, Description: "Dummy-arcane thing", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7g", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 464, Description: "dead guard-harem guard 1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qh", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 465, Description: "dead guard-harem guard 2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qi", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 466, Description: "dead guard-harem guard 3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qj", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 467, Description: "dead guard-harem guard 4", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qk", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 468, Description: "eunuch-harem blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 469, Description: "Dummy-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ax", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 470, Description: "manashrine-healthwell, act 2, arcane", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "au", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 471, Description: "Dummy-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "S1", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 472, Description: "Well-tombwell act 2 well, tomb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "hu", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 473, Description: "Waypoint-waypoint act2 sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qm", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 474, Description: "Waypoint-waypoint act3 travincal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ql", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 475, Description: "magic shrine-magic shrine, act 3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qn", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 476, Description: "dead body-act3, sewer", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 477, Description: "dummy-torch (act 3 sewer) stra", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V1", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 478, Description: "dummy-torch (act 3 kurast) strb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "V2", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 479, Description: "chest-mafistochestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 480, Description: "chest-mafistochestlargeright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 481, Description: "chest-mafistochestmedleft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xd", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 482, Description: "chest-mafistochestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xe", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 483, Description: "chest-spiderlairchestlargeLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 484, Description: "chest-spiderlairchesttallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xg", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 485, Description: "chest-spiderlairchestmedright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xh", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 486, Description: "chest-spiderlairchesttallright", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xi", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 487, Description: "Steeg Stone-steeg stone", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y6", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 488, Description: "Guild Vault-guild vault", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 489, Description: "Trophy Case-trophy case", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y2", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 490, Description: "Message Board-message board", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 491, Description: "Dummy-mephisto bridge", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xj", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 492, Description: "portal-hellgate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "1y", Mode: "ON", Class: "HTH", TR: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 493, Description: "Shrine-manawell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xl", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 494, Description: "Shrine-healthwell, act 3, kurast", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xm", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 495, Description: "Dummy-hellfire1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e3", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 496, Description: "Dummy-hellfire2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e4", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 497, Description: "Dummy-hellfire3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e5", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 498, Description: "Dummy-helllava1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e6", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 499, Description: "Dummy-helllava2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e7", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 500, Description: "Dummy-helllava3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "e8", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 501, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 502, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 503, Description: "Dummy-helllightsource1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 504, Description: "chest-horadric cube chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 505, Description: "chest-horadric scroll chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 506, Description: "chest-staff of kings chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 507, Description: "Tome-yet another tome", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "TT", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 508, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E1", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 509, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "E2", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 510, Description: "RockPIle-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 511, Description: "magic shrine-magic shrine, act 3,dundeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "qo", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 512, Description: "basket-dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 513, Description: "HungSkeleton-outerhell skeleton", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "jw", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 514, Description: "Dummy-guy for dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ea", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 515, Description: "casket-casket for Act 3 dungeon", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vb", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 516, Description: "sewer stairs-stairs for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ve", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 517, Description: "sewer lever-lever for act 3 sewer quest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "vf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 518, Description: "darkwanderer-start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 519, Description: "dummy-trapped soul placeholder", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 520, Description: "Dummy-torch for act3 town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "VG", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 521, Description: "chest-LargeChestR", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "L1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 522, Description: "BoneChest-innerhellbonepile", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y1", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 523, Description: "Dummy-skeleton spawn for hell facing ne", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "Qt", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 524, Description: "Dummy-fog act 3 water rfga", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ud", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 525, Description: "Dummy-Not used", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xx", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 526, Description: "Hellforge-Forge hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ux", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 527, Description: "Guild Portal-Portal to next guild level", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "PP", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 528, Description: "Dummy-hratli start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 529, Description: "Dummy-hratli end", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 530, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "uy", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 531, Description: "TrappedSoul-Burning guy for outer hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "15", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 532, Description: "Dummy-natalya start", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 533, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "18", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 534, Description: "TrappedSoul-guy stuck in hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "19", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 535, Description: "Dummy-cain start position", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 536, Description: "Dummy-stairsr", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "sv", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 537, Description: "chest-arcanesanctuarybigchestLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y7", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 538, Description: "casket-arcanesanctuarycasket", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y8", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 539, Description: "chest-arcanesanctuarybigchestRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "y9", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 540, Description: "chest-arcanesanctuarychestsmallLeft", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ya", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 541, Description: "chest-arcanesanctuarychestsmallRight", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yc", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 542, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "30", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 543, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "31", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 544, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "32", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 545, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "33", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 546, Description: "Seal-Diablo seal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "34", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 547, Description: "chest-sparklychest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yf", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 548, Description: "Waypoint-waypoint pandamonia fortress", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yg", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 549, Description: "fissure-fissure for act 4 inner hell", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "fh", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 550, Description: "Dummy-brazier for act 4, hell mesa", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "he", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 551, Description: "Dummy-smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "35", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 552, Description: "Waypoint-waypoint valleywaypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yi", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 553, Description: "fire-hell brazier", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 554, Description: "compellingorb-compelling orb", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "55", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 555, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 556, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 557, Description: "chest-khalim chest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "xk", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 558, Description: "Dummy-fortress brazier #1", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "98", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 559, Description: "Dummy-fortress brazier #2", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "99", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 560, Description: "Siege Control-To control siege machines", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "zq", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 561, Description: "ptox-Pot O Torch (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "px", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 562, Description: "pyox-fire pit (level 1)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "py", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 563, Description: "chestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 564, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6r", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 565, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 566, Description: "hiddenstash-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 567, Description: "flag wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ym", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 568, Description: "barrel wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yn", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 569, Description: "barrel wilderness-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 570, Description: "woodchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yp", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 571, Description: "Shrine3wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yq", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 572, Description: "manashrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yr", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 573, Description: "healthshrine-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 574, Description: "burialchestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yt", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 575, Description: "burialchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ys", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 576, Description: "well-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yv", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 577, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yw", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 578, Description: "Shrine2wilderness-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yx", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 579, Description: "Waypoint-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yy", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 580, Description: "ChestL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "yz", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 581, Description: "woodchestR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 582, Description: "ChestSL-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 583, Description: "ChestSR-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 584, Description: "etorch1-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 585, Description: "ecfra-camp fire", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2w", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 586, Description: "ettr-town torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 587, Description: "etorch2-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6e", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 588, Description: "burningbodies-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6f", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 589, Description: "burningpit-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", S3: "LIT", S4: "LIT", S5: "LIT", S6: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 590, Description: "tribal flag-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6h", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 591, Description: "eflg-town flag", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 592, Description: "chan-chandeleir", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 593, Description: "jar1-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 594, Description: "jar2-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 595, Description: "jar3-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 596, Description: "swingingheads-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6L", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 597, Description: "pole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6m", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 598, Description: "animated skulland rockpile-expansion no snow", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 599, Description: "gate-town main gate", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 600, Description: "pileofskullsandrocks-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 601, Description: "hellgate-seige", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 602, Description: "banner 1-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ao", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 603, Description: "banner 2-preset in enemy camp", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ap", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 604, Description: "explodingchest-wilderness/siege", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6t", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 605, Description: "chest-specialchest", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 606, Description: "deathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6v", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 607, Description: "Ldeathpole-wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6w", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 608, Description: "Altar-inside of temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6x", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 609, Description: "dummy-Drehya Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 610, Description: "dummy-Drehya Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 611, Description: "dummy-Nihlathak Start In Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 612, Description: "dummy-Nihlathak Start Outside Town", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 613, Description: "hidden stash-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "6y", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 614, Description: "healthshrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 615, Description: "manashrine-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 616, Description: "evilurn-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 617, Description: "icecavejar1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 618, Description: "icecavejar2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 619, Description: "icecavejar3-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 620, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 621, Description: "icecavejar4-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 622, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 623, Description: "cagedwussie1-caged fellow(A5-Prisonner)", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 624, Description: "Ancient Statue 3-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "60", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 625, Description: "Ancient Statue 1-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "61", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 626, Description: "Ancient Statue 2-statue", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "62", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 627, Description: "deadbarbarian-seige/wilderness", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 628, Description: "clientsmoke-client smoke", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "oz", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 629, Description: "icecaveshrine2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8k", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 630, Description: "icecave_torch1-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8L", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 631, Description: "icecave_torch2-icecave_", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 632, Description: "ttor-expansion tiki torch", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2p", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 633, Description: "manashrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8n", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 634, Description: "healthshrine-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8o", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 635, Description: "tomb1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8p", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 636, Description: "tomb2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8q", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 637, Description: "tomb3-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8r", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 638, Description: "magic shrine-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 639, Description: "torch1-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 640, Description: "torch2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8u", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 641, Description: "manashrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8v", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 642, Description: "healthshrine-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8w", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 643, Description: "well-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 644, Description: "Waypoint-baals_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8y", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 645, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "8z", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 646, Description: "Waypoint-wilderness_waypoint", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 647, Description: "magic shrine-snowy_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5b", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 648, Description: "well-baalslair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 649, Description: "magic shrine2-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5d", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 650, Description: "object1-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5e", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 651, Description: "woodchestL-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 652, Description: "woodchestR-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 653, Description: "magic shrine-baals_shrine3", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 654, Description: "woodchest2L-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 655, Description: "woodchest2R-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 656, Description: "swingingheads-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 657, Description: "debris-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5l", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 658, Description: "pene-Pen breakable door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 659, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 660, Description: "mrpole-snowy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5k", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 661, Description: "Waypoint-icecave ", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5a", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 662, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5t", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 663, Description: "well-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 664, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5r", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 665, Description: "torch1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5s", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 666, Description: "object1-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 667, Description: "object2-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 668, Description: "mrbox-baals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5w", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 669, Description: "well-icecave", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 670, Description: "magic shrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5y", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 671, Description: "healthshrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "5z", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 672, Description: "manashrine-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3a", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 673, Description: "red light- (touch me) for blacksmith", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 674, Description: "tomb1L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 675, Description: "tomb2L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3c", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 676, Description: "tomb3L-baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3d", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 677, Description: "ubub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2u", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 678, Description: "sbub-Ice cave bubbles 01", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2s", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 679, Description: "tomb1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3f", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 680, Description: "tomb1L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3g", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 681, Description: "tomb2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3h", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 682, Description: "tomb2L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3i", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 683, Description: "tomb3-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3j", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 684, Description: "tomb3L-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3k", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 685, Description: "mrbox-redbaals", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3L", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 686, Description: "torch1-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3m", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 687, Description: "torch2-redbaal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3n", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 688, Description: "candles-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3o", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 689, Description: "Waypoint-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3p", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 690, Description: "deadperson-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3q", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 691, Description: "groundtomb-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3s", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 692, Description: "Dummy-Larzuk Greeting", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 693, Description: "Dummy-Larzuk Standard", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 694, Description: "groundtombL-temple", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3t", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 695, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 696, Description: "ancientsaltar-ancientsaltar", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4a", Mode: "OP", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 697, Description: "To The Worldstone Keep Level 1-ancientsdoor", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4b", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 698, Description: "eweaponrackR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3x", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 699, Description: "eweaponrackL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 700, Description: "earmorstandR-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 701, Description: "earmorstandL-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4c", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 702, Description: "torch2-summit", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9g", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 703, Description: "funeralpire-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9h", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 704, Description: "burninglogs-outside", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "9i", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 705, Description: "stma-Ice cave steam", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2o", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 706, Description: "deadperson2-everywhere", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "3v", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 707, Description: "Dummy-Baal's lair", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 708, Description: "fana-frozen anya", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "2n", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 709, Description: "BBQB-BBQ Bunny", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "29", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", S2: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 710, Description: "btor-Baal Torch Big", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "25", Mode: "NU", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 711, Description: "Dummy-invisible ancient", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 712, Description: "Dummy-invisible base", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 713, Description: "The Worldstone Chamber-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 714, Description: "Glacial Caves Level 1-summit door", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4u", Mode: "OP", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 715, Description: "strlastcinematic-last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 716, Description: "Harrogath-last last portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "pp", Mode: "NU", Class: "HTH", HD: "LIT", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 717, Description: "Zoo-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 718, Description: "Keeper-test data", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7z", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 719, Description: "Throne of Destruction-baals portal", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "4x", Mode: "ON", Class: "HTH", TR: "LIT", S1: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 720, Description: "Dummy-fire place guy", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "7y", Mode: "NU", Class: "HTH", TR: "LIT", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 721, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, + {Act: 5, Type: d2enum.ObjectTypeItem, Id: 722, Description: "Dummy-door blocker", ObjectsTxtId: -1, MonstatsTxtId: -1, Direction: -1, Base: "/Data/Global/Objects", Token: "ss", Index: -1}, } diff --git a/d2common/d2data/d2datadict/object_query.go b/d2common/d2data/d2datadict/object_query.go index 7cdc677a..eea08384 100644 --- a/d2common/d2data/d2datadict/object_query.go +++ b/d2common/d2data/d2datadict/object_query.go @@ -2,23 +2,19 @@ package d2datadict import ( "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) -type ObjectType int - -const ( - ObjectTypeCharacter ObjectType = 1 - ObjectTypeItem ObjectType = 2 -) - +// ObjectLookupRecord is a representation of a row from objects.txt type ObjectLookupRecord struct { Act int - Type ObjectType - Id int + Type d2enum.ObjectType + Id int //nolint:golint Id is the right key Name string Description string - ObjectsTxtId int - MonstatsTxtId int + ObjectsTxtId int //nolint:golint Id is the right key + MonstatsTxtId int //nolint:golint Id is the right key Direction int Base string Token string @@ -44,6 +40,7 @@ type ObjectLookupRecord struct { Index int } +// LookupObject looks up an object record func LookupObject(act, typ, id int) *ObjectLookupRecord { object := lookupObject(act, typ, id, indexedObjects) if object == nil { @@ -54,14 +51,23 @@ func LookupObject(act, typ, id int) *ObjectLookupRecord { } func lookupObject(act, typ, id int, objects [][][]*ObjectLookupRecord) *ObjectLookupRecord { - if objects[act] != nil && objects[act][typ] != nil && objects[act][typ][id] != nil { - return objects[act][typ][id] + if len(objects) < act { + return nil } - return nil + if len(objects[act]) < typ { + return nil + } + + if len(objects[act][typ]) < id { + return nil + } + + return objects[act][typ][id] } -func init() { +// InitObjectRecords loads ObjectRecords +func InitObjectRecords() { indexedObjects = indexObjects(objectLookups) } @@ -88,7 +94,8 @@ func indexObjects(objects []ObjectLookupRecord) [][][]*ObjectLookupRecord { return indexedObjects } -// Indexed slice of object records for quick lookups. +// IndexedObjects is a slice of object records for quick lookups. // nil checks should be done for uninitialized values at each level. // [Act 1-5][Type 1-2][Id 0-855] +//nolint:gochecknoglobals // Currently global by design var indexedObjects [][][]*ObjectLookupRecord diff --git a/d2common/d2data/d2datadict/object_query_test.go b/d2common/d2data/d2datadict/object_query_test.go index 3f51f7b0..aab509f1 100644 --- a/d2common/d2data/d2datadict/object_query_test.go +++ b/d2common/d2data/d2datadict/object_query_test.go @@ -3,6 +3,8 @@ package d2datadict import ( "testing" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + testify "github.com/stretchr/testify/assert" ) @@ -11,28 +13,28 @@ func TestIndexObjects(t *testing.T) { assert := testify.New(t) testObjects := []ObjectLookupRecord{ - {Act: 1, Type: ObjectTypeCharacter, Id: 0, Description: "Act1CharId0"}, - {Act: 1, Type: ObjectTypeCharacter, Id: 1, Description: "Act1CharId1"}, - {Act: 1, Type: ObjectTypeCharacter, Id: 2, Description: "Act1CharId2"}, - {Act: 1, Type: ObjectTypeCharacter, Id: 3, Description: "Act1CharId3"}, - {Act: 1, Type: ObjectTypeItem, Id: 0, Description: "Act1ItemId0"}, - {Act: 1, Type: ObjectTypeItem, Id: 1, Description: "Act1ItemId1"}, - {Act: 1, Type: ObjectTypeItem, Id: 2, Description: "Act1ItemId2"}, - {Act: 1, Type: ObjectTypeItem, Id: 3, Description: "Act1ItemId3"}, - {Act: 2, Type: ObjectTypeCharacter, Id: 0, Description: "Act2CharId0"}, - {Act: 2, Type: ObjectTypeCharacter, Id: 1, Description: "Act2CharId1"}, - {Act: 2, Type: ObjectTypeCharacter, Id: 2, Description: "Act2CharId2"}, - {Act: 2, Type: ObjectTypeCharacter, Id: 3, Description: "Act2CharId3"}, - {Act: 2, Type: ObjectTypeItem, Id: 0, Description: "Act2ItemId0"}, - {Act: 2, Type: ObjectTypeItem, Id: 1, Description: "Act2ItemId1"}, - {Act: 2, Type: ObjectTypeItem, Id: 2, Description: "Act2ItemId2"}, - {Act: 2, Type: ObjectTypeItem, Id: 3, Description: "Act2ItemId3"}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "Act1CharId0"}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "Act1CharId1"}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "Act1CharId2"}, + {Act: 1, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "Act1CharId3"}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 0, Description: "Act1ItemId0"}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 1, Description: "Act1ItemId1"}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 2, Description: "Act1ItemId2"}, + {Act: 1, Type: d2enum.ObjectTypeItem, Id: 3, Description: "Act1ItemId3"}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 0, Description: "Act2CharId0"}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 1, Description: "Act2CharId1"}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 2, Description: "Act2CharId2"}, + {Act: 2, Type: d2enum.ObjectTypeCharacter, Id: 3, Description: "Act2CharId3"}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 0, Description: "Act2ItemId0"}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 1, Description: "Act2ItemId1"}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 2, Description: "Act2ItemId2"}, + {Act: 2, Type: d2enum.ObjectTypeItem, Id: 3, Description: "Act2ItemId3"}, } indexedTestObjects := indexObjects(testObjects) - typeCharacter := int(ObjectTypeCharacter) - typeItem := int(ObjectTypeItem) + typeCharacter := int(d2enum.ObjectTypeCharacter) + typeItem := int(d2enum.ObjectTypeItem) assert.Equal("Act1CharId2", lookupObject(1, typeCharacter, 2, indexedTestObjects).Description) assert.Equal("Act1ItemId0", lookupObject(1, typeItem, 0, indexedTestObjects).Description) diff --git a/d2common/d2data/d2datadict/object_types.go b/d2common/d2data/d2datadict/object_types.go index 249e71d4..1dc789b5 100644 --- a/d2common/d2data/d2datadict/object_types.go +++ b/d2common/d2data/d2datadict/object_types.go @@ -7,15 +7,17 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// ObjectTypeRecord is a representation of a row from objtype.txt type ObjectTypeRecord struct { Name string Token string } -//nolint:gochecknoglobals // Currently global by design, only written once // ObjectTypes contains the name and token for objects +//nolint:gochecknoglobals // Currently global by design, only written once var ObjectTypes []ObjectTypeRecord +// LoadObjectTypes loads ObjectTypeRecords from objtype.txt func LoadObjectTypes(objectTypeData []byte) { streamReader := d2common.CreateStreamReader(objectTypeData) count := streamReader.GetInt32() diff --git a/d2common/d2data/d2datadict/objects.go b/d2common/d2data/d2datadict/objects.go index 7ac785a2..58fae3c6 100644 --- a/d2common/d2data/d2datadict/objects.go +++ b/d2common/d2data/d2datadict/objects.go @@ -9,14 +9,21 @@ import ( // An ObjectRecord represents the settings for one type of object from objects.txt type ObjectRecord struct { + FrameCount [8]int // how many frames does this mode have, 0 = skip + FrameDelta [8]int // what rate is the animation played at (256 = 100% speed) + LightDiameter [8]int + + StartFrame [8]int + + OrderFlag [8]int // 0 = object, 1 = floor, 2 = wall + Parm [8]int // unknown Name string Description string - Id int Token string // refers to what graphics this object uses - SpawnMax int // unused? - Selectable [8]bool // is this mode selectable - TrapProbability int // unused + Id int //nolint:golint it's ok that it's called Id + SpawnMax int // unused? + TrapProbability int // unused SizeX int SizeY int @@ -26,42 +33,11 @@ type ObjectRecord struct { NTgtBX int // unknown NTgtBY int // unknown - FrameCount [8]int // how many frames does this mode have, 0 = skip - FrameDelta [8]int // what rate is the animation played at (256 = 100% speed) - CycleAnimation [8]bool // probably whether animation loops - LightDiameter [8]int - BlocksLight [8]bool - HasCollision [8]bool - IsAttackable bool // do we kick it when interacting - StartFrame [8]int - - EnvEffect bool // unknown - IsDoor bool - BlockVisibility bool // only works with IsDoor - Orientation int // unknown (1=sw, 2=nw, 3=se, 4=ne) - Trans int // controls palette mapping - - OrderFlag [8]int // 0 = object, 1 = floor, 2 = wall - PreOperate bool // unknown - HasAnimationMode [8]bool // 'Mode' in source, true if this mode is used + Orientation int // unknown (1=sw, 2=nw, 3=se, 4=ne) + Trans int // controls palette mapping XOffset int // in pixels offset YOffset int - Draw bool // if false, object isn't drawn (shadow is still drawn and player can still select though) - - LightRed byte // if lightdiameter is set, rgb of the light - LightGreen byte - LightBlue byte - - SelHD bool // whether these DCC components are selectable - SelTR bool - SelLG bool - SelRA bool - SelLA bool - SelRH bool - SelLH bool - SelSH bool - SelS [8]bool TotalPieces int // selectable DCC components count SubClass int // subclass of object: @@ -79,21 +55,12 @@ type ObjectRecord struct { NameOffset int // pixels to offset the name from the animation pivot - MonsterOk bool // unknown - OperateRange int // distance object can be used from, might be unused - ShrineFunction int // unused - Restore bool // if true, object is stored in memory and will be retained if you leave and re-enter the area + OperateRange int // distance object can be used from, might be unused + ShrineFunction int // unused - Parm [8]int // unknown - Act int // what acts this object can appear in (15 = all three) - Lockable bool - Gore bool // unknown, something with corpses - Sync bool // unknown - Flicker bool // light flickers if true - Damage int // amount of damage done by this (used depending on operatefn) - Beta bool // if true, appeared in the beta? - Overlay bool // unknown - CollisionSubst bool // unknown, controls some kind of special collision checking? + Act int // what acts this object can appear in (15 = all three) + + Damage int // amount of damage done by this (used depending on operatefn) Left int // unknown, clickable bounding box? Top int @@ -110,13 +77,47 @@ type ObjectRecord struct { ClientFn int // controls special audio-visual functions // (see above todo) - RestoreVirgins bool // if true, only restores unused objects (see Restore) - BlockMissile bool // if true, missiles collide with this - DrawUnder bool // if true, drawn as a floor tile is - OpenWarp bool // needs clarification, controls whether highlighting shows // 'To ...' or 'trap door' when highlighting, not sure which is T/F AutoMap int // controls how this object appears on the map // 0 = it doesn't, rest of modes need to be analyzed + + CycleAnimation [8]bool // probably whether animation loops + Selectable [8]bool // is this mode selectable + BlocksLight [8]bool + HasCollision [8]bool + HasAnimationMode [8]bool // 'Mode' in source, true if this mode is used + SelS [8]bool + IsAttackable bool // do we kick it when interacting + EnvEffect bool // unknown + IsDoor bool + BlockVisibility bool // only works with IsDoor + PreOperate bool // unknown + Draw bool // if false, object isn't drawn (shadow is still drawn and player can still select though) + SelHD bool // whether these DCC components are selectable + SelTR bool + SelLG bool + SelRA bool + SelLA bool + SelRH bool + SelLH bool + SelSH bool + MonsterOk bool // unknown + Restore bool // if true, object is stored in memory and will be retained if you leave and re-enter the area + Lockable bool + Gore bool // unknown, something with corpses + Sync bool // unknown + Flicker bool // light flickers if true + Beta bool // if true, appeared in the beta? + Overlay bool // unknown + CollisionSubst bool // unknown, controls some kind of special collision checking? + RestoreVirgins bool // if true, only restores unused objects (see Restore) + BlockMissile bool // if true, missiles collide with this + DrawUnder bool // if true, drawn as a floor tile is + OpenWarp bool // needs clarification, controls whether highlighting shows + + LightRed byte // if lightdiameter is set, rgb of the light + LightGreen byte + LightBlue byte } //nolint:funlen // Makes no sense to split @@ -335,9 +336,11 @@ func createObjectRecord(props []string) ObjectRecord { return result } +// Objects stores all of the ObjectRecords //nolint:gochecknoglobals // Currently global by design, only written once var Objects map[int]*ObjectRecord +// LoadObjects loads all objects from objects.txt func LoadObjects(file []byte) { Objects = make(map[int]*ObjectRecord) data := strings.Split(string(file), "\r\n")[1:] diff --git a/d2common/d2data/d2datadict/sounds.go b/d2common/d2data/d2datadict/sounds.go index 152210a2..aa05b62d 100644 --- a/d2common/d2data/d2datadict/sounds.go +++ b/d2common/d2data/d2datadict/sounds.go @@ -75,9 +75,11 @@ func createSoundEntry(soundLine string) SoundEntry { return result } +// Sounds stores all of the SoundEntries //nolint:gochecknoglobals // Currently global by design, only written once var Sounds map[string]SoundEntry +// LoadSounds loads SoundEntries from sounds.txt func LoadSounds(file []byte) { Sounds = make(map[string]SoundEntry) soundData := strings.Split(string(file), "\r\n")[1:] diff --git a/d2common/d2data/d2datadict/super_uniques.go b/d2common/d2data/d2datadict/super_uniques.go index 09257854..03440479 100644 --- a/d2common/d2data/d2datadict/super_uniques.go +++ b/d2common/d2data/d2datadict/super_uniques.go @@ -1,13 +1,14 @@ package d2datadict import ( - "github.com/OpenDiablo2/OpenDiablo2/d2common" "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" ) // https://d2mods.info/forum/kb/viewarticle?a=162 -// Defines the SuperUnique monsters and their properties. +// SuperUniqueRecord Defines the unique monsters and their properties. // SuperUnique monsters are boss monsters which always appear at the same places // and always have the same base special abilities // with the addition of one or two extra ones per difficulty (Nightmare provides one extra ability, Hell provides two). @@ -118,8 +119,11 @@ type SuperUniqueRecord struct { UTransHell string } +// SuperUniques stores all of the SuperUniqueRecords +//nolint:gochecknoglobals // Currently global by design var SuperUniques map[string]*SuperUniqueRecord +// LoadSuperUniques loads SuperUniqueRecords from superuniques.txt func LoadSuperUniques(file []byte) { dictionary := d2common.LoadDataDictionary(string(file)) SuperUniques = make(map[string]*SuperUniqueRecord, len(dictionary.Data)) diff --git a/d2common/d2data/d2datadict/unique_items.go b/d2common/d2data/d2datadict/unique_items.go index 5a2aa4cb..92244529 100644 --- a/d2common/d2data/d2datadict/unique_items.go +++ b/d2common/d2data/d2datadict/unique_items.go @@ -7,6 +7,7 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common" ) +// UniqueItemRecord is a representation of a row from uniqueitems.txt type UniqueItemRecord struct { Name string Version int // 0 = classic pre 1.07, 1 = 1.07-1.11, 100 = expansion @@ -41,6 +42,7 @@ type UniqueItemRecord struct { Properties [12]UniqueItemProperty } +// UniqueItemProperty is describes a property of a unique item type UniqueItemProperty struct { Property string Parameter d2common.CalcString // depending on the property, this may be an int (usually), or a string @@ -114,8 +116,11 @@ func createUniqueItemProperty(r *[]string, inc func() int) UniqueItemProperty { return result } +// UniqueItems stores all of the UniqueItemRecords +//nolint:gochecknoglobals // Currently global by design var UniqueItems map[string]*UniqueItemRecord +// LoadUniqueItems loadsUniqueItemRecords fro uniqueitems.txt func LoadUniqueItems(file []byte) { UniqueItems = make(map[string]*UniqueItemRecord) data := strings.Split(string(file), "\r\n")[1:] diff --git a/d2common/d2data/d2datadict/weapons.go b/d2common/d2data/d2datadict/weapons.go index acffdeb4..4be5755d 100644 --- a/d2common/d2data/d2datadict/weapons.go +++ b/d2common/d2data/d2datadict/weapons.go @@ -9,6 +9,6 @@ import ( var Weapons map[string]*ItemCommonRecord func LoadWeapons(file []byte) { - Weapons = *LoadCommonItems(file, d2enum.InventoryItemTypeWeapon) + Weapons = LoadCommonItems(file, d2enum.InventoryItemTypeWeapon) log.Printf("Loaded %d weapons", len(Weapons)) } diff --git a/d2common/d2data/object.go b/d2common/d2data/object.go index b9530ae6..5a3e66b5 100644 --- a/d2common/d2data/object.go +++ b/d2common/d2data/object.go @@ -5,9 +5,10 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2common/d2data/d2datadict" ) +// Object is a game world object type Object struct { Type int - Id int + Id int //nolint:golint Id is the right key X int Y int Flags int diff --git a/d2common/d2enum/encoding_type.go b/d2common/d2enum/encoding_type.go new file mode 100644 index 00000000..008341c8 --- /dev/null +++ b/d2common/d2enum/encoding_type.go @@ -0,0 +1,7 @@ +package d2enum + +type EncodingType int + +const ( + EncodeDefault EncodingType = iota +) diff --git a/d2common/d2enum/object_type.go b/d2common/d2enum/object_type.go new file mode 100644 index 00000000..3e4dacb6 --- /dev/null +++ b/d2common/d2enum/object_type.go @@ -0,0 +1,9 @@ +package d2enum + +// ObjectType is the type of an object +type ObjectType int + +const ( + ObjectTypeCharacter ObjectType = iota + 1 + ObjectTypeItem +) diff --git a/d2common/d2enum/operator_type.go b/d2common/d2enum/operator_type.go new file mode 100644 index 00000000..eb7db262 --- /dev/null +++ b/d2common/d2enum/operator_type.go @@ -0,0 +1,76 @@ +package d2enum + +// OperatorType is used for calculating dynamic property values +type OperatorType int // for dynamic properties + +const ( + // OpDefault just adds the stat to the unit directly + OpDefault = OperatorType(iota) + + // Op1 adds opstat.base * statvalue / 100 to the opstat. + Op1 + + // Op2 adds (statvalue * basevalue) / (2 ^ param) to the opstat + // this does not work properly with any stat other then level because of the + // way this is updated, it is only refreshed when you re-equip the item, + // your character is saved or you level up, similar to passive skills, just + // because it looks like it works in the item description + // does not mean it does, the game just recalculates the information in the + // description every frame, while the values remain unchanged serverside. + Op2 + + // Op3 is a percentage based version of op #2 + // look at op #2 for information about the formula behind it, just + // remember the stat is increased by a percentage rather then by adding + // an integer. + Op3 + + // Op4 works the same way op #2 works, however the stat bonus is + // added to the item and not to the player (so that +defense per level + // properly adds the defense to the armor and not to the character + // directly!) + Op4 + + // Op5 works like op #4 but is percentage based, it is used for percentage + // based increase of stats that are found on the item itself, and not stats + // that are found on the character. + Op5 + + // Op6 works like for op #7, however this adds a plain bonus to the stat, and just + // like #7 it also doesn't work so I won't bother to explain the arithmetic + // behind it either. + Op6 + + // Op7 is used to increase a stat based on the current daytime of the game + // world by a percentage, there is no need to explain the arithmetics + // behind it because frankly enough it just doesn't work serverside, it + // only updates clientside so this op is essentially useless. + Op7 + + // Op8 hardcoded to work only with maxmana, this will apply the proper amount + // of mana to your character based on CharStats.txt for the amount of energy + // the stat added (doesn't work for non characters) + Op8 + + // Op9 hardcoded to work only with maxhp and maxstamina, this will apply the + // proper amount of maxhp and maxstamina to your character based on + // CharStats.txt for the amount of vitality the stat added (doesn't work + // for non characters) + Op9 + + // Op10 doesn't do anything, this has no switch case in the op function. + Op10 + + // Op11 adds opstat.base * statvalue / 100 similar to 1 and 13, the code just + // does a few more checks + Op11 + + // Op12 doesn't do anything, this has no switch case in the op function. + Op12 + + // Op13 adds opstat.base * statvalue / 100 to the value of opstat, this is + // useable only on items it will not apply the bonus to other unit types + // (this is why it is used for +% durability, +% level requirement, + // +% damage, +% defense ). + Op13 +) diff --git a/d2core/d2map/d2mapstamp/stamp.go b/d2core/d2map/d2mapstamp/stamp.go index 0bd4b22b..b19e957d 100644 --- a/d2core/d2map/d2mapstamp/stamp.go +++ b/d2core/d2map/d2mapstamp/stamp.go @@ -118,13 +118,13 @@ func (mr *Stamp) Entities(tileOffsetX, tileOffsetY int) []d2mapentity.MapEntity for _, object := range mr.ds1.Objects { switch object.Lookup.Type { - case d2datadict.ObjectTypeCharacter: + case d2enum.ObjectTypeCharacter: if object.Lookup.Base != "" && object.Lookup.Token != "" && object.Lookup.TR != "" { npc := d2mapentity.CreateNPC((tileOffsetX*5)+object.X, (tileOffsetY*5)+object.Y, object.Lookup, 0) npc.SetPaths(convertPaths(tileOffsetX, tileOffsetY, object.Paths)) entities = append(entities, npc) } - case d2datadict.ObjectTypeItem: + case d2enum.ObjectTypeItem: if object.ObjectInfo != nil && object.ObjectInfo.Draw && object.Lookup.Base != "" && object.Lookup.Token != "" { entity, err := d2mapentity.CreateObject((tileOffsetX*5)+object.X, (tileOffsetY*5)+object.Y, object.Lookup, d2resource.PaletteUnits) if err != nil { diff --git a/main.go b/main.go index 5cf6aa02..205c07d7 100644 --- a/main.go +++ b/main.go @@ -449,6 +449,8 @@ func loadDataDict() error { {d2resource.SuperUniques, d2datadict.LoadSuperUniques}, } + d2datadict.InitObjectRecords() + for _, entry := range entries { data, err := d2asset.LoadFile(entry.path) if err != nil {