From 6832a5a0db965725616bcd6681ce0bad79eeb337 Mon Sep 17 00:00:00 2001 From: Tim Sarbin Date: Sun, 26 Jan 2020 00:39:13 -0500 Subject: [PATCH] merged d2shared into the core package (#275) --- d2asset/animation.go | 9 +- d2asset/archive_manager.go | 2 +- d2asset/asset_manager.go | 10 +- d2asset/composite.go | 8 +- d2asset/file_manager.go | 2 +- d2asset/palette_manager.go | 2 +- d2audio/sound_effect.go | 2 +- d2common/bitmuncher.go | 85 + d2common/bitstream.go | 64 + d2common/bitstream_test.go | 33 + d2common/build_info.go | 20 + d2common/calcstring.go | 9 + d2common/d2enum/animation_frame.go | 11 + d2common/d2enum/animation_mode.go | 52 + d2common/d2enum/animation_mode_string.go | 66 + d2common/d2enum/composite_type.go | 23 + d2common/d2enum/draw_effect.go | 15 + d2common/d2enum/hero.go | 41 + d2common/d2enum/hero_stance.go | 11 + d2common/d2enum/hero_string.go | 30 + d2common/d2enum/hero_string2enum.go | 18 + d2common/d2enum/inventory_item_type.go | 9 + d2common/d2enum/layer_stream_type.go | 18 + d2common/d2enum/palette_defs.go | 43 + d2common/d2enum/readme.md | 17 + d2common/d2enum/region_id.go | 41 + d2common/d2enum/region_layer.go | 9 + d2common/d2enum/tiletype.go | 44 + d2common/d2enum/weapon_class.go | 24 + d2common/d2enum/weapon_class_string.go | 37 + d2common/d2enum/weapon_class_string2enum.go | 18 + d2common/d2interface/file_provider.go | 7 + d2common/d2interface/inventory_item.go | 16 + d2common/d2resource/resource_paths.go | 282 + d2common/data_dictionary.go | 47 + d2common/path.go | 7 + d2common/rectangle.go | 20 + d2common/stream_reader.go | 134 + d2common/stream_reader_test.go | 56 + d2common/stream_writer.go | 69 + d2common/stream_writer_test.go | 44 + d2common/text_dictionary.go | 110 + d2core/d2scene/blizzard_intro.go | 2 +- d2core/d2scene/character_select.go | 7 +- d2core/d2scene/credits.go | 7 +- d2core/d2scene/game.go | 4 +- d2core/d2scene/main_menu.go | 4 +- d2core/d2scene/map_engine_testing.go | 2 +- d2core/d2scene/select_hero_class.go | 9 +- d2core/engine.go | 11 +- d2core/game_state.go | 4 +- d2core/hero.go | 6 +- d2core/hero_objects.go | 2 +- d2core/inventory_item_armor.go | 4 +- d2core/inventory_item_weapon.go | 4 +- d2core/npc.go | 7 +- d2corecommon/configuration.go | 2 +- d2data/animation_data.go | 52 + d2data/d2cof/cof.go | 65 + d2data/d2cof/coflayer.go | 12 + d2data/d2compression/huffman.go | 371 + d2data/d2compression/wav.go | 131 + d2data/d2datadict/armor.go | 18 + d2data/d2datadict/item_common.go | 416 + d2data/d2datadict/level_presets.go | 93 + d2data/d2datadict/level_types.go | 56 + d2data/d2datadict/level_warp.go | 53 + d2data/d2datadict/map_helper.go | 43 + d2data/d2datadict/misc.go | 18 + d2data/d2datadict/missiles.go | 411 + d2data/d2datadict/monstats.go | 13 + d2data/d2datadict/object_lookup.go | 7896 +++++++++++++++++++ d2data/d2datadict/object_query.go | 90 + d2data/d2datadict/object_query_test.go | 40 + d2data/d2datadict/object_types.go | 35 + d2data/d2datadict/objects.go | 357 + d2data/d2datadict/palette.go | 50 + d2data/d2datadict/sounds.go | 107 + d2data/d2datadict/unique_items.go | 139 + d2data/d2datadict/weapons.go | 18 + d2data/d2dc6/dc6.go | 136 + d2data/d2dc6/dc6.ksy | 73 + d2data/d2dcc/common_data.go | 11 + d2data/d2dcc/dcc.go | 40 + d2data/d2dcc/dcc_cell.go | 12 + d2data/d2dcc/dcc_direction.go | 361 + d2data/d2dcc/dcc_direction_frame.go | 108 + d2data/d2dcc/dcc_pixel_buffer_entry.go | 7 + d2data/d2ds1/common_data.go | 7 + d2data/d2ds1/ds1.go | 247 + d2data/d2ds1/floor_shadow_record.go | 13 + d2data/d2ds1/substitution_group.go | 9 + d2data/d2ds1/substitution_record.go | 5 + d2data/d2ds1/tilerecord.go | 8 + d2data/d2ds1/wallrecord.go | 16 + d2data/d2dt1/block.go | 12 + d2data/d2dt1/dt1.go | 83 + d2data/d2dt1/material.go | 30 + d2data/d2dt1/subtile.go | 25 + d2data/d2dt1/subtile_test.go | 24 + d2data/d2dt1/tile.go | 17 + d2data/d2mpq/crypto_buff.go | 20 + d2data/d2mpq/hash_entry_map.go | 30 + d2data/d2mpq/mpq.go | 314 + d2data/d2mpq/mpq_file_record.go | 7 + d2data/d2mpq/mpq_stream.go | 273 + d2data/d2video/binkdecoder.go | 111 + d2data/object.go | 17 + d2helper/math.go | 105 + d2helper/stringutils.go | 159 + d2helper/timeutils.go | 7 + d2player/game_controls.go | 2 +- d2player/inventory.go | 2 +- d2player/inventory_grid.go | 2 +- d2render/animated_entity.go | 7 +- d2render/d2mapengine/engine.go | 2 +- d2render/d2mapengine/region.go | 16 +- d2render/d2mapengine/viewport.go | 2 +- d2render/d2ui/button.go | 2 +- d2render/d2ui/checkbox.go | 2 +- d2render/d2ui/font.go | 2 +- d2render/d2ui/manager.go | 2 +- d2render/d2ui/scrollbar.go | 2 +- d2render/d2ui/textbox.go | 2 +- d2render/sprite.go | 2 +- d2term/terminal.go | 2 +- go.mod | 3 +- go.sum | 4 +- main.go | 5 +- 129 files changed, 14391 insertions(+), 81 deletions(-) create mode 100644 d2common/bitmuncher.go create mode 100644 d2common/bitstream.go create mode 100644 d2common/bitstream_test.go create mode 100644 d2common/build_info.go create mode 100644 d2common/calcstring.go create mode 100644 d2common/d2enum/animation_frame.go create mode 100644 d2common/d2enum/animation_mode.go create mode 100644 d2common/d2enum/animation_mode_string.go create mode 100644 d2common/d2enum/composite_type.go create mode 100644 d2common/d2enum/draw_effect.go create mode 100644 d2common/d2enum/hero.go create mode 100644 d2common/d2enum/hero_stance.go create mode 100644 d2common/d2enum/hero_string.go create mode 100644 d2common/d2enum/hero_string2enum.go create mode 100644 d2common/d2enum/inventory_item_type.go create mode 100644 d2common/d2enum/layer_stream_type.go create mode 100644 d2common/d2enum/palette_defs.go create mode 100644 d2common/d2enum/readme.md create mode 100644 d2common/d2enum/region_id.go create mode 100644 d2common/d2enum/region_layer.go create mode 100644 d2common/d2enum/tiletype.go create mode 100644 d2common/d2enum/weapon_class.go create mode 100644 d2common/d2enum/weapon_class_string.go create mode 100644 d2common/d2enum/weapon_class_string2enum.go create mode 100644 d2common/d2interface/file_provider.go create mode 100644 d2common/d2interface/inventory_item.go create mode 100644 d2common/d2resource/resource_paths.go create mode 100644 d2common/data_dictionary.go create mode 100644 d2common/path.go create mode 100644 d2common/rectangle.go create mode 100644 d2common/stream_reader.go create mode 100644 d2common/stream_reader_test.go create mode 100644 d2common/stream_writer.go create mode 100644 d2common/stream_writer_test.go create mode 100644 d2common/text_dictionary.go create mode 100644 d2data/animation_data.go create mode 100644 d2data/d2cof/cof.go create mode 100644 d2data/d2cof/coflayer.go create mode 100644 d2data/d2compression/huffman.go create mode 100644 d2data/d2compression/wav.go create mode 100644 d2data/d2datadict/armor.go create mode 100644 d2data/d2datadict/item_common.go create mode 100644 d2data/d2datadict/level_presets.go create mode 100644 d2data/d2datadict/level_types.go create mode 100644 d2data/d2datadict/level_warp.go create mode 100644 d2data/d2datadict/map_helper.go create mode 100644 d2data/d2datadict/misc.go create mode 100644 d2data/d2datadict/missiles.go create mode 100644 d2data/d2datadict/monstats.go create mode 100644 d2data/d2datadict/object_lookup.go create mode 100644 d2data/d2datadict/object_query.go create mode 100644 d2data/d2datadict/object_query_test.go create mode 100644 d2data/d2datadict/object_types.go create mode 100644 d2data/d2datadict/objects.go create mode 100644 d2data/d2datadict/palette.go create mode 100644 d2data/d2datadict/sounds.go create mode 100644 d2data/d2datadict/unique_items.go create mode 100644 d2data/d2datadict/weapons.go create mode 100644 d2data/d2dc6/dc6.go create mode 100644 d2data/d2dc6/dc6.ksy create mode 100644 d2data/d2dcc/common_data.go create mode 100644 d2data/d2dcc/dcc.go create mode 100644 d2data/d2dcc/dcc_cell.go create mode 100644 d2data/d2dcc/dcc_direction.go create mode 100644 d2data/d2dcc/dcc_direction_frame.go create mode 100644 d2data/d2dcc/dcc_pixel_buffer_entry.go create mode 100644 d2data/d2ds1/common_data.go create mode 100644 d2data/d2ds1/ds1.go create mode 100644 d2data/d2ds1/floor_shadow_record.go create mode 100644 d2data/d2ds1/substitution_group.go create mode 100644 d2data/d2ds1/substitution_record.go create mode 100644 d2data/d2ds1/tilerecord.go create mode 100644 d2data/d2ds1/wallrecord.go create mode 100644 d2data/d2dt1/block.go create mode 100644 d2data/d2dt1/dt1.go create mode 100644 d2data/d2dt1/material.go create mode 100644 d2data/d2dt1/subtile.go create mode 100644 d2data/d2dt1/subtile_test.go create mode 100644 d2data/d2dt1/tile.go create mode 100644 d2data/d2mpq/crypto_buff.go create mode 100644 d2data/d2mpq/hash_entry_map.go create mode 100644 d2data/d2mpq/mpq.go create mode 100644 d2data/d2mpq/mpq_file_record.go create mode 100644 d2data/d2mpq/mpq_stream.go create mode 100644 d2data/d2video/binkdecoder.go create mode 100644 d2data/object.go create mode 100644 d2helper/math.go create mode 100644 d2helper/stringutils.go create mode 100644 d2helper/timeutils.go diff --git a/d2asset/animation.go b/d2asset/animation.go index caf0589f..79cdf43c 100644 --- a/d2asset/animation.go +++ b/d2asset/animation.go @@ -5,10 +5,11 @@ import ( "image/color" "math" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" - "github.com/OpenDiablo2/D2Shared/d2data/d2dc6" - "github.com/OpenDiablo2/D2Shared/d2data/d2dcc" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" + + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dc6" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dcc" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/hajimehoshi/ebiten" diff --git a/d2asset/archive_manager.go b/d2asset/archive_manager.go index 25cbd12d..42646a15 100644 --- a/d2asset/archive_manager.go +++ b/d2asset/archive_manager.go @@ -5,8 +5,8 @@ import ( "path" "sync" - "github.com/OpenDiablo2/D2Shared/d2data/d2mpq" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2mpq" ) type archiveEntry struct { diff --git a/d2asset/asset_manager.go b/d2asset/asset_manager.go index 94547bff..218a9a69 100644 --- a/d2asset/asset_manager.go +++ b/d2asset/asset_manager.go @@ -4,12 +4,12 @@ import ( "errors" "log" - "github.com/OpenDiablo2/D2Shared/d2data/d2cof" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" - "github.com/OpenDiablo2/D2Shared/d2data/d2dc6" - "github.com/OpenDiablo2/D2Shared/d2data/d2dcc" - "github.com/OpenDiablo2/D2Shared/d2data/d2mpq" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2cof" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dc6" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dcc" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2mpq" "github.com/OpenDiablo2/OpenDiablo2/d2term" ) diff --git a/d2asset/composite.go b/d2asset/composite.go index 074107d5..43d0b8e3 100644 --- a/d2asset/composite.go +++ b/d2asset/composite.go @@ -5,10 +5,10 @@ import ( "fmt" "strings" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2data" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" - "github.com/OpenDiablo2/D2Shared/d2data/d2dcc" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2data" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dcc" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2asset/file_manager.go b/d2asset/file_manager.go index ea8176c5..3caba598 100644 --- a/d2asset/file_manager.go +++ b/d2asset/file_manager.go @@ -3,7 +3,7 @@ package d2asset import ( "strings" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon" ) diff --git a/d2asset/palette_manager.go b/d2asset/palette_manager.go index de9f3c02..8e76e6d0 100644 --- a/d2asset/palette_manager.go +++ b/d2asset/palette_manager.go @@ -1,7 +1,7 @@ package d2asset import ( - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" ) type paletteManager struct { diff --git a/d2audio/sound_effect.go b/d2audio/sound_effect.go index eeb7ba49..5559ab30 100644 --- a/d2audio/sound_effect.go +++ b/d2audio/sound_effect.go @@ -3,8 +3,8 @@ package d2audio import ( "log" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" "github.com/OpenDiablo2/OpenDiablo2/d2asset" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" "github.com/hajimehoshi/ebiten/audio/wav" diff --git a/d2common/bitmuncher.go b/d2common/bitmuncher.go new file mode 100644 index 00000000..eff22ce3 --- /dev/null +++ b/d2common/bitmuncher.go @@ -0,0 +1,85 @@ +package d2common + +type BitMuncher struct { + data []byte + Offset int + BitsRead int +} + +func CreateBitMuncher(data []byte, offset int) *BitMuncher { + return &BitMuncher{ + data: data, + Offset: offset, + BitsRead: 0, + } +} + +func CopyBitMuncher(source *BitMuncher) *BitMuncher { + return &BitMuncher{ + source.data, + source.Offset, + 0, + } +} + +func (v *BitMuncher) GetBit() uint32 { + result := uint32(v.data[v.Offset/8]>>uint(v.Offset%8)) & 0x01 + v.Offset++ + v.BitsRead++ + return result +} + +func (v *BitMuncher) SkipBits(bits int) { + v.Offset += bits + v.BitsRead += bits +} + +func (v *BitMuncher) GetByte() byte { + return byte(v.GetBits(8)) +} + +func (v *BitMuncher) GetInt32() int32 { + return v.MakeSigned(v.GetBits(32), 32) +} + +func (v *BitMuncher) GetUInt32() uint32 { + return v.GetBits(32) +} + +func (v *BitMuncher) GetBits(bits int) uint32 { + if bits == 0 { + return 0 + } + result := uint32(0) + for i := 0; i < bits; i++ { + result |= v.GetBit() << uint(i) + } + return result +} + +func (v *BitMuncher) GetSignedBits(bits int) int { + return int(v.MakeSigned(v.GetBits(bits), bits)) +} + +func (v *BitMuncher) MakeSigned(value uint32, bits int) int32 { + if bits == 0 { + return 0 + } + // If its a single bit, a value of 1 is -1 automagically + if bits == 1 { + return -int32(value) + } + // If there is no sign bit, return the value as is + if (value & (1 << uint(bits-1))) == 0 { + return int32(value) + } + // We need to extend the signed bit out so that the negative value representation still works with the 2s compliment rule. + result := uint32(4294967295) + for i := byte(0); i < byte(bits); i++ { + if ((value >> uint(i)) & 1) == 0 { + result -= uint32(1 << uint(i)) + } + } + // Force casting to a signed value + return int32(result) +} diff --git a/d2common/bitstream.go b/d2common/bitstream.go new file mode 100644 index 00000000..cb588bff --- /dev/null +++ b/d2common/bitstream.go @@ -0,0 +1,64 @@ +package d2common + +import "log" + +// BitStream is a utility class for reading groups of bits from a stream +type BitStream struct { + data []byte + dataPosition int + current int + bitCount int +} + +// CreateBitStream creates a new BitStream +func CreateBitStream(newData []byte) *BitStream { + result := &BitStream{ + data: newData, + dataPosition: 0, + current: 0, + bitCount: 0, + } + return result +} + +// ReadBits reads the specified number of bits and returns the value +func (v *BitStream) ReadBits(bitCount int) int { + if bitCount > 16 { + log.Panic("Maximum BitCount is 16") + } + if !v.EnsureBits(bitCount) { + return -1 + } + result := v.current & (0xffff >> uint(16-bitCount)) + v.WasteBits(bitCount) + return result +} + +// PeekByte returns the current byte without adjusting the position +func (v *BitStream) PeekByte() int { + if !v.EnsureBits(8) { + return -1 + } + return v.current & 0xff +} + +// EnsureBits ensures that the specified number of bits are available +func (v *BitStream) EnsureBits(bitCount int) bool { + if bitCount <= v.bitCount { + return true + } + if v.dataPosition >= len(v.data) { + return false + } + nextValue := v.data[v.dataPosition] + v.dataPosition++ + v.current |= int(nextValue) << uint(v.bitCount) + v.bitCount += 8 + return true +} + +// WasteBits dry-reads the specified number of bits +func (v *BitStream) WasteBits(bitCount int) { + v.current >>= uint(bitCount) + v.bitCount -= bitCount +} diff --git a/d2common/bitstream_test.go b/d2common/bitstream_test.go new file mode 100644 index 00000000..d6878be1 --- /dev/null +++ b/d2common/bitstream_test.go @@ -0,0 +1,33 @@ +package d2common + +import ( + "testing" +) + +func TestBitStreamBits(t *testing.T) { + data := []byte{0xAA} + bitStream := CreateBitStream(data) + shouldBeOne := 0 + for i := 0; i < 8; i++ { + bit := bitStream.ReadBits(1) + if bit != shouldBeOne { + t.Fatalf("Expected %d but got %d on iteration %d", shouldBeOne, bit, i) + } + if shouldBeOne == 1 { + shouldBeOne = 0 + } else { + shouldBeOne = 1 + } + } +} + +func TestBitStreamBytes(t *testing.T) { + data := []byte{0xAA, 0xBB, 0xCC, 0xDD, 0x12, 0x34, 0x56, 0x78} + bitStream := CreateBitStream(data) + for i := 0; i < 8; i++ { + b := byte(bitStream.ReadBits(8)) + if b != data[i] { + t.Fatalf("Expected %d but got %d on iteration %d", data[i], b, i) + } + } +} diff --git a/d2common/build_info.go b/d2common/build_info.go new file mode 100644 index 00000000..a5e679f9 --- /dev/null +++ b/d2common/build_info.go @@ -0,0 +1,20 @@ +package d2common + +// BuildInfoRecord is the structure used to hold information about the current build +type BuildInfoRecord struct { + // Branch is the branch this build is based on (or 'Local' if built locally) + Branch string + // Commit is the commit hash of the build (or blank if built locally) + Commit string +} + +// BuildInfo contains information about the build currently being ran +var BuildInfo BuildInfoRecord + +// SetBuildInfo is called at the start of the application to generate the global BuildInfo value +func SetBuildInfo(branch, commit string) { + BuildInfo = BuildInfoRecord{ + Branch: branch, + Commit: commit, + } +} diff --git a/d2common/calcstring.go b/d2common/calcstring.go new file mode 100644 index 00000000..9f5372db --- /dev/null +++ b/d2common/calcstring.go @@ -0,0 +1,9 @@ +package d2common + +// a calcstring is a type of string often used in datafiles to specify +// a value that is calculated dynamically based on the stats of the relevant +// source, for instance a missile might have a movement speed of lvl*2 + +type CalcString string + +// todo: the logic for parsing these should exist here \ No newline at end of file diff --git a/d2common/d2enum/animation_frame.go b/d2common/d2enum/animation_frame.go new file mode 100644 index 00000000..9c12f90f --- /dev/null +++ b/d2common/d2enum/animation_frame.go @@ -0,0 +1,11 @@ +package d2enum + +type AnimationFrame int + +const ( + AnimationFrameNoEvent AnimationFrame = 0 + AnimationFrameAttack AnimationFrame = 1 + AnimationFrameMissile AnimationFrame = 2 + AnimationFrameSound AnimationFrame = 3 + AnimationFrameSkill AnimationFrame = 4 +) diff --git a/d2common/d2enum/animation_mode.go b/d2common/d2enum/animation_mode.go new file mode 100644 index 00000000..0b236437 --- /dev/null +++ b/d2common/d2enum/animation_mode.go @@ -0,0 +1,52 @@ +package d2enum + +type AnimationMode int + +const ( + AnimationModePlayerDeath AnimationMode = 0 // DT + AnimationModePlayerNeutral AnimationMode = 1 // NU + AnimationModePlayerWalk AnimationMode = 2 // WL + AnimationModePlayerRun AnimationMode = 3 // RN + AnimationModePlayerGetHit AnimationMode = 4 // GH + AnimationModePlayerTownNeutral AnimationMode = 5 // TN + AnimationModePlayerTownWalk AnimationMode = 6 // TW + AnimationModePlayerAttack1 AnimationMode = 7 // A1 + AnimationModePlayerAttack2 AnimationMode = 8 // A2 + AnimationModePlayerBlock AnimationMode = 9 // BL + AnimationModePlayerCast AnimationMode = 10 // SC + AnimationModePlayerThrow AnimationMode = 11 // TH + AnimationModePlayerKick AnimationMode = 12 // KK + AnimationModePlayerSkill1 AnimationMode = 13 // S1 + AnimationModePlayerSkill2 AnimationMode = 14 // S2 + AnimationModePlayerSkill3 AnimationMode = 15 // S3 + AnimationModePlayerSkill4 AnimationMode = 16 // S4 + AnimationModePlayerDead AnimationMode = 17 // DD + AnimationModePlayerSequence AnimationMode = 18 // GH + AnimationModePlayerKnockBack AnimationMode = 19 // GH + AnimationModeMonsterDeath AnimationMode = 20 // DT + AnimationModeMonsterNeutral AnimationMode = 21 // NU + AnimationModeMonsterWalk AnimationMode = 22 // WL + AnimationModeMonsterGetHit AnimationMode = 23 // GH + AnimationModeMonsterAttack1 AnimationMode = 24 // A1 + AnimationModeMonsterAttack2 AnimationMode = 25 // A2 + AnimationModeMonsterBlock AnimationMode = 26 // BL + AnimationModeMonsterCast AnimationMode = 27 // SC + AnimationModeMonsterSkill1 AnimationMode = 28 // S1 + AnimationModeMonsterSkill2 AnimationMode = 29 // S2 + AnimationModeMonsterSkill3 AnimationMode = 30 // S3 + AnimationModeMonsterSkill4 AnimationMode = 31 // S4 + AnimationModeMonsterDead AnimationMode = 32 // DD + AnimationModeMonsterKnockback AnimationMode = 33 // GH + AnimationModeMonsterSequence AnimationMode = 34 // xx + AnimationModeMonsterRun AnimationMode = 35 // RN + AnimationModeObjectNeutral AnimationMode = 36 // NU + AnimationModeObjectOperating AnimationMode = 37 // OP + AnimationModeObjectOpened AnimationMode = 38 // ON + AnimationModeObjectSpecial1 AnimationMode = 39 // S1 + AnimationModeObjectSpecial2 AnimationMode = 40 // S2 + AnimationModeObjectSpecial3 AnimationMode = 41 // S3 + AnimationModeObjectSpecial4 AnimationMode = 42 // S4 + AnimationModeObjectSpecial5 AnimationMode = 43 // S5 +) + +//go:generate stringer -linecomment -type AnimationMode diff --git a/d2common/d2enum/animation_mode_string.go b/d2common/d2enum/animation_mode_string.go new file mode 100644 index 00000000..2b655afb --- /dev/null +++ b/d2common/d2enum/animation_mode_string.go @@ -0,0 +1,66 @@ +// Code generated by "stringer -linecomment -type AnimationMode"; DO NOT EDIT. + +package d2enum + +import "strconv" + +func _() { + // An "invalid array index" compiler error signifies that the constant values have changed. + // Re-run the stringer command to generate them again. + var x [1]struct{} + _ = x[AnimationModePlayerDeath-0] + _ = x[AnimationModePlayerNeutral-1] + _ = x[AnimationModePlayerWalk-2] + _ = x[AnimationModePlayerRun-3] + _ = x[AnimationModePlayerGetHit-4] + _ = x[AnimationModePlayerTownNeutral-5] + _ = x[AnimationModePlayerTownWalk-6] + _ = x[AnimationModePlayerAttack1-7] + _ = x[AnimationModePlayerAttack2-8] + _ = x[AnimationModePlayerBlock-9] + _ = x[AnimationModePlayerCast-10] + _ = x[AnimationModePlayerThrow-11] + _ = x[AnimationModePlayerKick-12] + _ = x[AnimationModePlayerSkill1-13] + _ = x[AnimationModePlayerSkill2-14] + _ = x[AnimationModePlayerSkill3-15] + _ = x[AnimationModePlayerSkill4-16] + _ = x[AnimationModePlayerDead-17] + _ = x[AnimationModePlayerSequence-18] + _ = x[AnimationModePlayerKnockBack-19] + _ = x[AnimationModeMonsterDeath-20] + _ = x[AnimationModeMonsterNeutral-21] + _ = x[AnimationModeMonsterWalk-22] + _ = x[AnimationModeMonsterGetHit-23] + _ = x[AnimationModeMonsterAttack1-24] + _ = x[AnimationModeMonsterAttack2-25] + _ = x[AnimationModeMonsterBlock-26] + _ = x[AnimationModeMonsterCast-27] + _ = x[AnimationModeMonsterSkill1-28] + _ = x[AnimationModeMonsterSkill2-29] + _ = x[AnimationModeMonsterSkill3-30] + _ = x[AnimationModeMonsterSkill4-31] + _ = x[AnimationModeMonsterDead-32] + _ = x[AnimationModeMonsterKnockback-33] + _ = x[AnimationModeMonsterSequence-34] + _ = x[AnimationModeMonsterRun-35] + _ = x[AnimationModeObjectNeutral-36] + _ = x[AnimationModeObjectOperating-37] + _ = x[AnimationModeObjectOpened-38] + _ = x[AnimationModeObjectSpecial1-39] + _ = x[AnimationModeObjectSpecial2-40] + _ = x[AnimationModeObjectSpecial3-41] + _ = x[AnimationModeObjectSpecial4-42] + _ = x[AnimationModeObjectSpecial5-43] +} + +const _AnimationMode_name = "DTNUWLRNGHTNTWA1A2BLSCTHKKS1S2S3S4DDGHGHDTNUWLGHA1A2BLSCS1S2S3S4DDGHxxRNNUOPONS1S2S3S4S5" + +var _AnimationMode_index = [...]uint8{0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88} + +func (i AnimationMode) String() string { + if i < 0 || i >= AnimationMode(len(_AnimationMode_index)-1) { + return "AnimationMode(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _AnimationMode_name[_AnimationMode_index[i]:_AnimationMode_index[i+1]] +} diff --git a/d2common/d2enum/composite_type.go b/d2common/d2enum/composite_type.go new file mode 100644 index 00000000..9e43a93e --- /dev/null +++ b/d2common/d2enum/composite_type.go @@ -0,0 +1,23 @@ +package d2enum + +type CompositeType int + +const ( + CompositeTypeHead CompositeType = 0 + CompositeTypeTorso CompositeType = 1 + CompositeTypeLegs CompositeType = 2 + CompositeTypeRightArm CompositeType = 3 + CompositeTypeLeftArm CompositeType = 4 + CompositeTypeRightHand CompositeType = 5 + CompositeTypeLeftHand CompositeType = 6 + CompositeTypeShield CompositeType = 7 + CompositeTypeSpecial1 CompositeType = 8 + CompositeTypeSpecial2 CompositeType = 9 + CompositeTypeSpecial3 CompositeType = 10 + CompositeTypeSpecial4 CompositeType = 11 + CompositeTypeSpecial5 CompositeType = 12 + CompositeTypeSpecial6 CompositeType = 13 + CompositeTypeSpecial7 CompositeType = 14 + CompositeTypeSpecial8 CompositeType = 15 + CompositeTypeMax CompositeType = 16 +) diff --git a/d2common/d2enum/draw_effect.go b/d2common/d2enum/draw_effect.go new file mode 100644 index 00000000..ae244385 --- /dev/null +++ b/d2common/d2enum/draw_effect.go @@ -0,0 +1,15 @@ +package d2enum + +type DrawEffect int + +// Names courtesy of Necrolis +const ( + DrawEffectPctTransparency25 = 0 //GL_MODULATE; GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA 25 % transparency (colormaps 49-304 in a .pl2) + DrawEffectPctTransparency50 = 1 //GL_MODULATE; GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA 50 % transparency (colormaps 305-560 in a .pl2) + DrawEffectPctTransparency75 = 2 //GL_MODULATE; GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA 75 % transparency (colormaps 561-816 in a .pl2) + DrawEffectModulate = 3 //GL_MODULATE; GL_SRC_ALPHA, GL_DST_ALPHA (colormaps 817-1072 in a .pl2) + DrawEffectBurn = 4 //GL_MODULATE; GL_DST_COLOR, GL_ONE_MINUS_SRC_ALPHA (colormaps 1073-1328 in a .pl2) + DrawEffectNormal = 5 //GL_MODULATE; GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA (colormaps 1457-1712 in a .pl2) + DrawEffectMod2XTrans = 6 //GL_MODULATE; GL_SRC_COLOR, GL_DST_ALPHA (colormaps 1457-1712 in a .pl2) + DrawEffectMod2X = 7 //GL_COMBINE_ARB; GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA (colormaps 1457-1712 in a .pl2) +) diff --git a/d2common/d2enum/hero.go b/d2common/d2enum/hero.go new file mode 100644 index 00000000..e04c97d2 --- /dev/null +++ b/d2common/d2enum/hero.go @@ -0,0 +1,41 @@ +package d2enum + +import "log" + +type Hero int + +const ( + HeroNone Hero = 0 // + HeroBarbarian Hero = 1 // Barbarian + HeroNecromancer Hero = 2 // Necromancer + HeroPaladin Hero = 3 // Paladin + HeroAssassin Hero = 4 // Assassin + HeroSorceress Hero = 5 // Sorceress + HeroAmazon Hero = 6 // Amazon + HeroDruid Hero = 7 // Druid +) + +func (v Hero) GetToken() string { + switch v { + case HeroBarbarian: + return "BA" + case HeroNecromancer: + return "NE" + case HeroPaladin: + return "PA" + case HeroAssassin: + return "AI" + case HeroSorceress: + return "SO" + case HeroAmazon: + return "AM" + case HeroDruid: + return "DZ" + default: + log.Fatalf("Unknown hero token: %d", v) + } + return "" +} + +//go:generate stringer -linecomment -type Hero +//go:generate string2enum -samepkg -linecomment -type Hero diff --git a/d2common/d2enum/hero_stance.go b/d2common/d2enum/hero_stance.go new file mode 100644 index 00000000..d2c64385 --- /dev/null +++ b/d2common/d2enum/hero_stance.go @@ -0,0 +1,11 @@ +package d2enum + +type HeroStance int + +const ( + HeroStanceIdle HeroStance = 0 + HeroStanceIdleSelected HeroStance = 1 + HeroStanceApproaching HeroStance = 2 + HeroStanceSelected HeroStance = 3 + HeroStanceRetreating HeroStance = 4 +) diff --git a/d2common/d2enum/hero_string.go b/d2common/d2enum/hero_string.go new file mode 100644 index 00000000..d185b15c --- /dev/null +++ b/d2common/d2enum/hero_string.go @@ -0,0 +1,30 @@ +// Code generated by "stringer -linecomment -type Hero"; DO NOT EDIT. + +package d2enum + +import "strconv" + +func _() { + // An "invalid array index" compiler error signifies that the constant values have changed. + // Re-run the stringer command to generate them again. + var x [1]struct{} + _ = x[HeroNone-0] + _ = x[HeroBarbarian-1] + _ = x[HeroNecromancer-2] + _ = x[HeroPaladin-3] + _ = x[HeroAssassin-4] + _ = x[HeroSorceress-5] + _ = x[HeroAmazon-6] + _ = x[HeroDruid-7] +} + +const _Hero_name = "BarbarianNecromancerPaladinAssassinSorceressAmazonDruid" + +var _Hero_index = [...]uint8{0, 0, 9, 20, 27, 35, 44, 50, 55} + +func (i Hero) String() string { + if i < 0 || i >= Hero(len(_Hero_index)-1) { + return "Hero(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _Hero_name[_Hero_index[i]:_Hero_index[i+1]] +} diff --git a/d2common/d2enum/hero_string2enum.go b/d2common/d2enum/hero_string2enum.go new file mode 100644 index 00000000..992ac5f3 --- /dev/null +++ b/d2common/d2enum/hero_string2enum.go @@ -0,0 +1,18 @@ +// Code generated by "string2enum -samepkg -linecomment -type Hero"; DO NOT EDIT. + +package d2enum + +import "fmt" + +// HeroFromString returns the Hero enum corresponding to s. +func HeroFromString(s string) Hero { + if len(s) == 0 { + return 0 + } + for i := range _Hero_index[:len(_Hero_index)-1] { + if s == _Hero_name[_Hero_index[i]:_Hero_index[i+1]] { + return Hero(i) + } + } + panic(fmt.Errorf("unable to locate Hero enum corresponding to %q", s)) +} diff --git a/d2common/d2enum/inventory_item_type.go b/d2common/d2enum/inventory_item_type.go new file mode 100644 index 00000000..85eab5f1 --- /dev/null +++ b/d2common/d2enum/inventory_item_type.go @@ -0,0 +1,9 @@ +package d2enum + +type InventoryItemType int + +const ( + InventoryItemTypeItem InventoryItemType = 0 // Item + InventoryItemTypeWeapon InventoryItemType = 1 // Weapon + InventoryItemTypeArmor InventoryItemType = 2 // Armor +) diff --git a/d2common/d2enum/layer_stream_type.go b/d2common/d2enum/layer_stream_type.go new file mode 100644 index 00000000..9b2857ba --- /dev/null +++ b/d2common/d2enum/layer_stream_type.go @@ -0,0 +1,18 @@ +package d2enum + +type LayerStreamType int + +const ( + LayerStreamWall1 LayerStreamType = 0 + LayerStreamWall2 LayerStreamType = 1 + LayerStreamWall3 LayerStreamType = 2 + LayerStreamWall4 LayerStreamType = 3 + LayerStreamOrientation1 LayerStreamType = 4 + LayerStreamOrientation2 LayerStreamType = 5 + LayerStreamOrientation3 LayerStreamType = 6 + LayerStreamOrientation4 LayerStreamType = 7 + LayerStreamFloor1 LayerStreamType = 8 + LayerStreamFloor2 LayerStreamType = 9 + LayerStreamShadow LayerStreamType = 10 + LayerStreamSubstitute LayerStreamType = 11 +) diff --git a/d2common/d2enum/palette_defs.go b/d2common/d2enum/palette_defs.go new file mode 100644 index 00000000..805cf100 --- /dev/null +++ b/d2common/d2enum/palette_defs.go @@ -0,0 +1,43 @@ +package d2enum + +// PaletteType represents a named palette +type PaletteType string + +const ( + // Act1 palette + Act1 PaletteType = "act1" + // Act2 palette + Act2 PaletteType = "act2" + // Act3 palette + Act3 PaletteType = "act3" + // Act4 palette + Act4 PaletteType = "act4" + // Act5 palette + Act5 PaletteType = "act5" + // EndGame palette + EndGame PaletteType = "endgame" + // EndGame2 palette + EndGame2 PaletteType = "endgame2" + // Fechar palette + Fechar PaletteType = "fechar" + // Loading palette + Loading PaletteType = "loading" + // Menu0 palette + Menu0 PaletteType = "menu0" + // Menu1 palette + Menu1 PaletteType = "menu1" + // Menu2 palette + Menu2 PaletteType = "menu2" + // Menu3 palette + Menu3 PaletteType = "menu3" + // Menu4 palette + Menu4 PaletteType = "menu4" + // Sky palette + Sky PaletteType = "sky" + // Static palette + Static PaletteType = "static" + // Trademark palette + Trademark PaletteType = "trademark" + // Units palette + Units PaletteType = "units" +) diff --git a/d2common/d2enum/readme.md b/d2common/d2enum/readme.md new file mode 100644 index 00000000..c5ce2e73 --- /dev/null +++ b/d2common/d2enum/readme.md @@ -0,0 +1,17 @@ +# OpenDiablo2 Enums +Items in this folder are compiled with two programs. You can obtain them +by running the following: +``` +go get golang.org/x/tools/cmd/stringer +go get github.com/mewspring/tools/cmd/string2enum +``` +Once you have the tools installed, simply run the following command in this +folder to regenerate the support files: +``` +go generate +``` +If you add any enums (e.g. `AnimationMode`), make sure to add the following to the end of the +file: +```go +//go:generate stringer -linecomment -type AnimationMode +``` diff --git a/d2common/d2enum/region_id.go b/d2common/d2enum/region_id.go new file mode 100644 index 00000000..2bd4f23b --- /dev/null +++ b/d2common/d2enum/region_id.go @@ -0,0 +1,41 @@ +package d2enum + +type RegionIdType int + +const ( + RegionAct1Town RegionIdType = 1 + RegionAct1Wilderness RegionIdType = 2 + RegionAct1Cave RegionIdType = 3 + RegionAct1Crypt RegionIdType = 4 + RegionAct1Monestary RegionIdType = 5 + RegionAct1Courtyard RegionIdType = 6 + RegionAct1Barracks RegionIdType = 7 + RegionAct1Jail RegionIdType = 8 + RegionAct1Cathedral RegionIdType = 9 + RegionAct1Catacombs RegionIdType = 10 + RegionAct1Tristram RegionIdType = 11 + RegionAct2Town RegionIdType = 12 + RegionAct2Sewer RegionIdType = 13 + RegionAct2Harem RegionIdType = 14 + RegionAct2Basement RegionIdType = 15 + RegionAct2Desert RegionIdType = 16 + RegionAct2Tomb RegionIdType = 17 + RegionAct2Lair RegionIdType = 18 + RegionAct2Arcane RegionIdType = 19 + RegionAct3Town RegionIdType = 20 + RegionAct3Jungle RegionIdType = 21 + RegionAct3Kurast RegionIdType = 22 + RegionAct3Spider RegionIdType = 23 + RegionAct3Dungeon RegionIdType = 24 + RegionAct3Sewer RegionIdType = 25 + RegionAct4Town RegionIdType = 26 + RegionAct4Mesa RegionIdType = 27 + RegionAct4Lava RegionIdType = 28 + RegonAct5Town RegionIdType = 29 + RegionAct5Siege RegionIdType = 30 + RegionAct5Barricade RegionIdType = 31 + RegionAct5Temple RegionIdType = 32 + RegionAct5IceCaves RegionIdType = 33 + RegionAct5Baal RegionIdType = 34 + RegionAct5Lava RegionIdType = 35 +) diff --git a/d2common/d2enum/region_layer.go b/d2common/d2enum/region_layer.go new file mode 100644 index 00000000..749f7739 --- /dev/null +++ b/d2common/d2enum/region_layer.go @@ -0,0 +1,9 @@ +package d2enum + +type RegionLayerType int + +const ( + RegionLayerTypeFloors RegionLayerType = 0 + RegionLayerTypeWalls RegionLayerType = 1 + RegionLayerTypeShadows RegionLayerType = 2 +) diff --git a/d2common/d2enum/tiletype.go b/d2common/d2enum/tiletype.go new file mode 100644 index 00000000..01b9a54c --- /dev/null +++ b/d2common/d2enum/tiletype.go @@ -0,0 +1,44 @@ +package d2enum + +type TileType byte + +const ( + Floor TileType = 0 + LeftWall TileType = 1 + RightWall TileType = 2 + RightPartOfNorthCornerWall TileType = 3 + LeftPartOfNorthCornerWall TileType = 4 + LeftEndWall TileType = 5 + RightEndWall TileType = 6 + SouthCornerWall TileType = 7 + LeftWallWithDoor TileType = 8 + RightWallWithDoor TileType = 9 + SpecialTile1 TileType = 10 + SpecialTile2 TileType = 11 + PillarsColumnsAndStandaloneObjects TileType = 12 + Shadow TileType = 13 + Tree TileType = 14 + Roof TileType = 15 + LowerWallsEquivalentToLeftWall TileType = 16 + LowerWallsEquivalentToRightWall TileType = 17 + LowerWallsEquivalentToRightLeftNorthCornerWall TileType = 18 + LowerWallsEquivalentToSouthCornerwall TileType = 19 +) + +func (tile TileType) LowerWall() bool { + switch tile { + case 16, 17, 18, 19: + return true + default: + return false + } +} + +func (tile TileType) UpperWall() bool { + switch tile { + case 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 14: + return true + default: + return false + } +} diff --git a/d2common/d2enum/weapon_class.go b/d2common/d2enum/weapon_class.go new file mode 100644 index 00000000..4baa32d0 --- /dev/null +++ b/d2common/d2enum/weapon_class.go @@ -0,0 +1,24 @@ +package d2enum + +type WeaponClass int + +const ( + WeaponClassNone WeaponClass = 0 // + WeaponClassHandToHand WeaponClass = 1 // hth + WeaponClassBow WeaponClass = 2 // bow + WeaponClassOneHandSwing WeaponClass = 3 // 1hs + WeaponClassOneHandThrust WeaponClass = 4 // 1ht + WeaponClassStaff WeaponClass = 5 // stf + WeaponClassTwoHandSwing WeaponClass = 6 // 2hs + WeaponClassTwoHandThrust WeaponClass = 7 // 2ht + WeaponClassCrossbow WeaponClass = 8 // xbw + WeaponClassLeftJabRightSwing WeaponClass = 9 // 1js + WeaponClassLeftJabRightThrust WeaponClass = 10 // 1jt + WeaponClassLeftSwingRightSwing WeaponClass = 11 // 1ss + WeaponClassLeftSwingRightThrust WeaponClass = 12 // 1st + WeaponClassOneHandToHand WeaponClass = 13 // ht1 + WeaponClassTwoHandToHand WeaponClass = 14 // ht2 +) + +//go:generate stringer -linecomment -type WeaponClass +//go:generate string2enum -samepkg -linecomment -type WeaponClass diff --git a/d2common/d2enum/weapon_class_string.go b/d2common/d2enum/weapon_class_string.go new file mode 100644 index 00000000..84a331fd --- /dev/null +++ b/d2common/d2enum/weapon_class_string.go @@ -0,0 +1,37 @@ +// Code generated by "stringer -linecomment -type WeaponClass"; DO NOT EDIT. + +package d2enum + +import "strconv" + +func _() { + // An "invalid array index" compiler error signifies that the constant values have changed. + // Re-run the stringer command to generate them again. + var x [1]struct{} + _ = x[WeaponClassNone-0] + _ = x[WeaponClassHandToHand-1] + _ = x[WeaponClassBow-2] + _ = x[WeaponClassOneHandSwing-3] + _ = x[WeaponClassOneHandThrust-4] + _ = x[WeaponClassStaff-5] + _ = x[WeaponClassTwoHandSwing-6] + _ = x[WeaponClassTwoHandThrust-7] + _ = x[WeaponClassCrossbow-8] + _ = x[WeaponClassLeftJabRightSwing-9] + _ = x[WeaponClassLeftJabRightThrust-10] + _ = x[WeaponClassLeftSwingRightSwing-11] + _ = x[WeaponClassLeftSwingRightThrust-12] + _ = x[WeaponClassOneHandToHand-13] + _ = x[WeaponClassTwoHandToHand-14] +} + +const _WeaponClass_name = "hthbow1hs1htstf2hs2htxbw1js1jt1ss1stht1ht2" + +var _WeaponClass_index = [...]uint8{0, 0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42} + +func (i WeaponClass) String() string { + if i < 0 || i >= WeaponClass(len(_WeaponClass_index)-1) { + return "WeaponClass(" + strconv.FormatInt(int64(i), 10) + ")" + } + return _WeaponClass_name[_WeaponClass_index[i]:_WeaponClass_index[i+1]] +} diff --git a/d2common/d2enum/weapon_class_string2enum.go b/d2common/d2enum/weapon_class_string2enum.go new file mode 100644 index 00000000..382e899d --- /dev/null +++ b/d2common/d2enum/weapon_class_string2enum.go @@ -0,0 +1,18 @@ +// Code generated by "string2enum -samepkg -linecomment -type WeaponClass"; DO NOT EDIT. + +package d2enum + +import "fmt" + +// WeaponClassFromString returns the WeaponClass enum corresponding to s. +func WeaponClassFromString(s string) WeaponClass { + if len(s) == 0 { + return 0 + } + for i := range _WeaponClass_index[:len(_WeaponClass_index)-1] { + if s == _WeaponClass_name[_WeaponClass_index[i]:_WeaponClass_index[i+1]] { + return WeaponClass(i) + } + } + panic(fmt.Errorf("unable to locate WeaponClass enum corresponding to %q", s)) +} diff --git a/d2common/d2interface/file_provider.go b/d2common/d2interface/file_provider.go new file mode 100644 index 00000000..08ff5f22 --- /dev/null +++ b/d2common/d2interface/file_provider.go @@ -0,0 +1,7 @@ +package d2interface + +// FileProvider is an instance that can provide different types of files +type FileProvider interface { + LoadFile(fileName string) []byte + //LoadSprite(fileName string, palette enums.PaletteType) *d2render.Sprite +} diff --git a/d2common/d2interface/inventory_item.go b/d2common/d2interface/inventory_item.go new file mode 100644 index 00000000..8ce67d57 --- /dev/null +++ b/d2common/d2interface/inventory_item.go @@ -0,0 +1,16 @@ +package d2interface + +import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + +type InventoryItem interface { + // GetInventoryItemName returns the name of this inventory item + GetInventoryItemName() string + // GetInventoryItemType returns the type of item this is + GetInventoryItemType() d2enum.InventoryItemType + // GetInventoryGridSize returns the width/height grid size of this inventory item + GetInventoryGridSize() (int, int) + // Returns the item code + GetItemCode() string + // Serializes the object for transport + Serialize() []byte +} diff --git a/d2common/d2resource/resource_paths.go b/d2common/d2resource/resource_paths.go new file mode 100644 index 00000000..ccd7a317 --- /dev/null +++ b/d2common/d2resource/resource_paths.go @@ -0,0 +1,282 @@ +package d2resource + +var LanguageCode string + +const ( + // --- Screens --- + + LoadingScreen = "/data/global/ui/Loading/loadingscreen.dc6" + + // --- Main Menu --- + + TrademarkScreen = "/data/global/ui/FrontEnd/trademarkscreenEXP.dc6" + GameSelectScreen = "/data/global/ui/FrontEnd/gameselectscreenEXP.dc6" + Diablo2LogoFireLeft = "/data/global/ui/FrontEnd/D2logoFireLeft.DC6" + Diablo2LogoFireRight = "/data/global/ui/FrontEnd/D2logoFireRight.DC6" + Diablo2LogoBlackLeft = "/data/global/ui/FrontEnd/D2logoBlackLeft.DC6" + Diablo2LogoBlackRight = "/data/global/ui/FrontEnd/D2logoBlackRight.DC6" + + // --- Credits --- + + CreditsBackground = "/data/global/ui/CharSelect/creditsbckgexpand.dc6" + CreditsText = "/data/local/ui/{LANG}/ExpansionCredits.txt" + + // --- Character Select Screen --- + + CharacterSelectBackground = "/data/global/ui/FrontEnd/charactercreationscreenEXP.dc6" + CharacterSelectCampfire = "/data/global/ui/FrontEnd/fire.DC6" + + CharacterSelectBarbarianUnselected = "/data/global/ui/FrontEnd/barbarian/banu1.DC6" + CharacterSelectBarbarianUnselectedH = "/data/global/ui/FrontEnd/barbarian/banu2.DC6" + CharacterSelectBarbarianSelected = "/data/global/ui/FrontEnd/barbarian/banu3.DC6" + CharacterSelectBarbarianForwardWalk = "/data/global/ui/FrontEnd/barbarian/bafw.DC6" + CharacterSelectBarbarianForwardWalkOverlay = "/data/global/ui/FrontEnd/barbarian/BAFWs.DC6" + CharacterSelectBarbarianBackWalk = "/data/global/ui/FrontEnd/barbarian/babw.DC6" + + CharacterSelecSorceressUnselected = "/data/global/ui/FrontEnd/sorceress/SONU1.DC6" + CharacterSelecSorceressUnselectedH = "/data/global/ui/FrontEnd/sorceress/SONU2.DC6" + CharacterSelecSorceressSelected = "/data/global/ui/FrontEnd/sorceress/SONU3.DC6" + CharacterSelecSorceressSelectedOverlay = "/data/global/ui/FrontEnd/sorceress/SONU3s.DC6" + CharacterSelecSorceressForwardWalk = "/data/global/ui/FrontEnd/sorceress/SOFW.DC6" + CharacterSelecSorceressForwardWalkOverlay = "/data/global/ui/FrontEnd/sorceress/SOFWs.DC6" + CharacterSelecSorceressBackWalk = "/data/global/ui/FrontEnd/sorceress/SOBW.DC6" + CharacterSelecSorceressBackWalkOverlay = "/data/global/ui/FrontEnd/sorceress/SOBWs.DC6" + + CharacterSelectNecromancerUnselected = "/data/global/ui/FrontEnd/necromancer/NENU1.DC6" + CharacterSelectNecromancerUnselectedH = "/data/global/ui/FrontEnd/necromancer/NENU2.DC6" + CharacterSelecNecromancerSelected = "/data/global/ui/FrontEnd/necromancer/NENU3.DC6" + CharacterSelecNecromancerSelectedOverlay = "/data/global/ui/FrontEnd/necromancer/NENU3s.DC6" + CharacterSelecNecromancerForwardWalk = "/data/global/ui/FrontEnd/necromancer/NEFW.DC6" + CharacterSelecNecromancerForwardWalkOverlay = "/data/global/ui/FrontEnd/necromancer/NEFWs.DC6" + CharacterSelecNecromancerBackWalk = "/data/global/ui/FrontEnd/necromancer/NEBW.DC6" + CharacterSelecNecromancerBackWalkOverlay = "/data/global/ui/FrontEnd/necromancer/NEBWs.DC6" + + CharacterSelectPaladinUnselected = "/data/global/ui/FrontEnd/paladin/PANU1.DC6" + CharacterSelectPaladinUnselectedH = "/data/global/ui/FrontEnd/paladin/PANU2.DC6" + CharacterSelecPaladinSelected = "/data/global/ui/FrontEnd/paladin/PANU3.DC6" + CharacterSelecPaladinForwardWalk = "/data/global/ui/FrontEnd/paladin/PAFW.DC6" + CharacterSelecPaladinForwardWalkOverlay = "/data/global/ui/FrontEnd/paladin/PAFWs.DC6" + CharacterSelecPaladinBackWalk = "/data/global/ui/FrontEnd/paladin/PABW.DC6" + + CharacterSelectAmazonUnselected = "/data/global/ui/FrontEnd/amazon/AMNU1.DC6" + CharacterSelectAmazonUnselectedH = "/data/global/ui/FrontEnd/amazon/AMNU2.DC6" + CharacterSelecAmazonSelected = "/data/global/ui/FrontEnd/amazon/AMNU3.DC6" + CharacterSelecAmazonForwardWalk = "/data/global/ui/FrontEnd/amazon/AMFW.DC6" + CharacterSelecAmazonForwardWalkOverlay = "/data/global/ui/FrontEnd/amazon/AMFWs.DC6" + CharacterSelecAmazonBackWalk = "/data/global/ui/FrontEnd/amazon/AMBW.DC6" + + CharacterSelectAssassinUnselected = "/data/global/ui/FrontEnd/assassin/ASNU1.DC6" + CharacterSelectAssassinUnselectedH = "/data/global/ui/FrontEnd/assassin/ASNU2.DC6" + CharacterSelectAssassinSelected = "/data/global/ui/FrontEnd/assassin/ASNU3.DC6" + CharacterSelectAssassinForwardWalk = "/data/global/ui/FrontEnd/assassin/ASFW.DC6" + CharacterSelectAssassinBackWalk = "/data/global/ui/FrontEnd/assassin/ASBW.DC6" + + CharacterSelectDruidUnselected = "/data/global/ui/FrontEnd/druid/DZNU1.dc6" + CharacterSelectDruidUnselectedH = "/data/global/ui/FrontEnd/druid/DZNU2.dc6" + CharacterSelectDruidSelected = "/data/global/ui/FrontEnd/druid/DZNU3.DC6" + CharacterSelectDruidForwardWalk = "/data/global/ui/FrontEnd/druid/DZFW.DC6" + CharacterSelectDruidBackWalk = "/data/global/ui/FrontEnd/druid/DZBW.DC6" + + // -- Character Selection + + CharacterSelectionBackground = "/data/global/ui/CharSelect/characterselectscreenEXP.dc6" + CharacterSelectionSelectBox = "/data/global/ui/CharSelect/charselectbox.dc6" + PopUpOkCancel = "/data/global/ui/FrontEnd/PopUpOKCancel.dc6" + + // --- Game --- + + GamePanels = "/data/global/ui/PANEL/800ctrlpnl7.dc6" + GameGlobeOverlap = "/data/global/ui/PANEL/overlap.DC6" + HealthMana = "/data/global/ui/PANEL/hlthmana.DC6" + GameSmallMenuButton = "/data/global/ui/PANEL/menubutton.DC6" // TODO: Used for inventory popout + SkillIcon = "/data/global/ui/PANEL/Skillicon.DC6" // TODO: Used for skill icon button + AddSkillButton = "/data/global/ui/PANEL/level.DC6" + + // --- Mouse Pointers --- + + CursorDefault = "/data/global/ui/CURSOR/ohand.DC6" + + // --- Fonts --- + + Font6 = "/data/local/font/{LANG_FONT}/font6" + Font8 = "/data/local/font/{LANG_FONT}/font8" + Font16 = "/data/local/font/{LANG_FONT}/font16" + Font24 = "/data/local/font/{LANG_FONT}/font24" + Font30 = "/data/local/font/{LANG_FONT}/font30" + Font42 = "/data/local/font/{LANG_FONT}/font42" + FontFormal12 = "/data/local/font/{LANG_FONT}/fontformal12" + FontFormal11 = "/data/local/font/{LANG_FONT}/fontformal11" + FontFormal10 = "/data/local/font/{LANG_FONT}/fontformal10" + FontExocet10 = "/data/local/font/{LANG_FONT}/fontexocet10" + FontExocet8 = "/data/local/font/{LANG_FONT}/fontexocet8" + FontSucker = "/data/local/font/{LANG_FONT}/ReallyTheLastSucker" + FontRediculous = "/data/local/font/{LANG_FONT}/fontridiculous" + + // --- UI --- + + WideButtonBlank = "/data/global/ui/FrontEnd/WideButtonBlank.dc6" + MediumButtonBlank = "/data/global/ui/FrontEnd/MediumButtonBlank.dc6" + CancelButton = "/data/global/ui/FrontEnd/CancelButtonBlank.dc6" + NarrowButtonBlank = "/data/global/ui/FrontEnd/NarrowButtonBlank.dc6" + ShortButtonBlank = "/data/global/ui/CharSelect/ShortButtonBlank.dc6" + TextBox2 = "/data/global/ui/FrontEnd/textbox2.dc6" + TallButtonBlank = "/data/global/ui/CharSelect/TallButtonBlank.dc6" + Checkbox = "/data/global/ui/FrontEnd/clickbox.dc6" + Scrollbar = "/data/global/ui/PANEL/scrollbar.dc6" + + // --- GAME UI --- + + PentSpin = "/data/global/ui/CURSOR/pentspin.DC6" + MinipanelSmall = "/data/global/ui/PANEL/minipanel_s.dc6" + MinipanelButton = "/data/global/ui/PANEL/minipanelbtn.DC6" + + Frame = "/data/global/ui/PANEL/800borderframe.dc6" + InventoryCharacterPanel = "/data/global/ui/PANEL/invchar6.DC6" + InventoryWeaponsTab = "/data/global/ui/PANEL/invchar6Tab.DC6" + SkillsPanelAmazon = "/data/global/ui/SPELLS/skltree_a_back.DC6" + SkillsPanelBarbarian = "/data/global/ui/SPELLS/skltree_b_back.DC6" + SkillsPanelDruid = "/data/global/ui/SPELLS/skltree_d_back.DC6" + SkillsPanelAssassin = "/data/global/ui/SPELLS/skltree_i_back.DC6" + SkillsPanelNecromancer = "/data/global/ui/SPELLS/skltree_n_back.DC6" + SkillsPanelPaladin = "/data/global/ui/SPELLS/skltree_p_back.DC6" + SkillsPanelSorcerer = "/data/global/ui/SPELLS/skltree_s_back.DC6" + + GenericSkills = "/data/global/ui/SPELLS/Skillicon.DC6" + AmazonSkills = "/data/global/ui/SPELLS/AmSkillicon.DC6" + BarbarianSkills = "/data/global/ui/SPELLS/BaSkillicon.DC6" + DruidSkills = "/data/global/ui/SPELLS/DrSkillicon.DC6" + AssassinSkills = "/data/global/ui/SPELLS/AsSkillicon.DC6" + NecromancerSkills = "/data/global/ui/SPELLS/NeSkillicon.DC6" + PaladinSkills = "/data/global/ui/SPELLS/PaSkillicon.DC6" + SorcererSkills = "/data/global/ui/SPELLS/SoSkillicon.DC6" + + RunButton = "/data/global/ui/PANEL/runbutton.dc6" + MenuButton = "/data/global/ui/PANEL/menubutton.DC6" + GoldCoinButton = "/data/global/ui/panel/goldcoinbtn.dc6" + SquareButton = "/data/global/ui/panel/buysellbtn.dc6" + + ArmorPlaceholder = "/data/global/ui/PANEL/inv_armor.DC6" + BeltPlaceholder = "/data/global/ui/PANEL/inv_belt.DC6" + BootsPlaceholder = "/data/global/ui/PANEL/inv_boots.DC6" + HelmGlovePlaceholder = "/data/global/ui/PANEL/inv_helm_glove.DC6" + RingAmuletPlaceholder = "/data/global/ui/PANEL/inv_ring_amulet.DC6" + WeaponsPlaceholder = "/data/global/ui/PANEL/inv_weapons.DC6" + + // --- Data --- + + ExpansionStringTable = "/data/local/lng/{LANG}/expansionstring.tbl" + StringTable = "/data/local/lng/{LANG}/string.tbl" + PatchStringTable = "/data/local/lng/{LANG}/patchstring.tbl" + LevelPreset = "/data/global/excel/LvlPrest.txt" + LevelType = "/data/global/excel/LvlTypes.txt" + ObjectType = "/data/global/excel/objtype.bin" + LevelWarp = "/data/global/excel/LvlWarp.bin" + LevelDetails = "/data/global/excel/Levels.bin" + ObjectDetails = "/data/global/excel/Objects.txt" + SoundSettings = "/data/global/excel/Sounds.txt" + + // --- Animations --- + + ObjectData = "/data/global/objects" + AnimationData = "/data/global/animdata.d2" + PlayerAnimationBase = "/data/global/CHARS" + + // --- Inventory Data --- + + Weapons = "/data/global/excel/weapons.txt" + Armor = "/data/global/excel/armor.txt" + Misc = "/data/global/excel/misc.txt" + UniqueItems = "/data/global/excel/UniqueItems.txt" + + // --- Character Data --- + + Experience = "/data/global/excel/experience.txt" + CharStats = "/data/global/excel/charstats.txt" + + // --- Music --- + + BGMTitle = "/data/global/music/introedit.wav" + BGMOptions = "/data/global/music/Common/options.wav" + BGMAct1AndarielAction = "/data/global/music/Act1/andarielaction.wav" + BGMAct1BloodRavenResolution = "/data/global/music/Act1/bloodravenresolution.wav" + BGMAct1Caves = "/data/global/music/Act1/caves.wav" + BGMAct1Crypt = "/data/global/music/Act1/crypt.wav" + BGMAct1DenOfEvilAction = "/data/global/music/Act1/denofevilaction.wav" + BGMAct1Monastery = "/data/global/music/Act1/monastery.wav" + BGMAct1Town1 = "/data/global/music/Act1/town1.wav" + BGMAct1Tristram = "/data/global/music/Act1/tristram.wav" + BGMAct1Wild = "/data/global/music/Act1/wild.wav" + BGMAct2Desert = "/data/global/music/Act2/desert.wav" + BGMAct2Harem = "/data/global/music/Act2/harem.wav" + BGMAct2HoradricAction = "/data/global/music/Act2/horadricaction.wav" + BGMAct2Lair = "/data/global/music/Act2/lair.wav" + BGMAct2RadamentResolution = "/data/global/music/Act2/radamentresolution.wav" + BGMAct2Sanctuary = "/data/global/music/Act2/sanctuary.wav" + BGMAct2Sewer = "/data/global/music/Act2/sewer.wav" + BGMAct2TaintedSunAction = "/data/global/music/Act2/taintedsunaction.wav" + BGMAct2Tombs = "/data/global/music/Act2/tombs.wav" + BGMAct2Town2 = "/data/global/music/Act2/town2.wav" + BGMAct2Valley = "/data/global/music/Act2/valley.wav" + BGMAct3Jungle = "/data/global/music/Act3/jungle.wav" + BGMAct3Kurast = "/data/global/music/Act3/kurast.wav" + BGMAct3KurastSewer = "/data/global/music/Act3/kurastsewer.wav" + BGMAct3MefDeathAction = "/data/global/music/Act3/mefdeathaction.wav" + BGMAct3OrbAction = "/data/global/music/Act3/orbaction.wav" + BGMAct3Spider = "/data/global/music/Act3/spider.wav" + BGMAct3Town3 = "/data/global/music/Act3/town3.wav" + BGMAct4Diablo = "/data/global/music/Act4/diablo.wav" + BGMAct4DiabloAction = "/data/global/music/Act4/diabloaction.wav" + BGMAct4ForgeAction = "/data/global/music/Act4/forgeaction.wav" + BGMAct4IzualAction = "/data/global/music/Act4/izualaction.wav" + BGMAct4Mesa = "/data/global/music/Act4/mesa.wav" + BGMAct4Town4 = "/data/global/music/Act4/town4.wav" + BGMAct5Baal = "/data/global/music/Act5/baal.wav" + BGMAct5XTown = "/data/global/music/Act5/xtown.wav" + + // --- Sound Effects --- + + SFXButtonClick = "cursor_button_click" + SFXAmazonDeselect = "cursor_amazon_deselect" + SFXAmazonSelect = "cursor_amazon_select" + SFXAssassinDeselect = "/data/global/sfx/Cursor/intro/assassin deselect.wav" + SFXAssassinSelect = "/data/global/sfx/Cursor/intro/assassin select.wav" + SFXBarbarianDeselect = "cursor_barbarian_deselect" + SFXBarbarianSelect = "cursor_barbarian_select" + SFXDruidDeselect = "/data/global/sfx/Cursor/intro/druid deselect.wav" + SFXDruidSelect = "/data/global/sfx/Cursor/intro/druid select.wav" + SFXNecromancerDeselect = "cursor_necromancer_deselect" + SFXNecromancerSelect = "cursor_necromancer_select" + SFXPaladinDeselect = "cursor_paladin_deselect" + SFXPaladinSelect = "cursor_paladin_select" + SFXSorceressDeselect = "cursor_sorceress_deselect" + SFXSorceressSelect = "cursor_sorceress_select" + + // --- Enemy Data --- + + MonStats = "/data/global/excel/monstats.txt" + + // --- Skill Data --- + + Missiles = "/data/global/excel/Missiles.txt" + + // --- Palettes --- + + PaletteAct1 = "/data/global/palette/act1/pal.dat" + PaletteAct2 = "/data/global/palette/act2/pal.dat" + PaletteAct3 = "/data/global/palette/act3/pal.dat" + PaletteAct4 = "/data/global/palette/act4/pal.dat" + PaletteAct5 = "/data/global/palette/act5/pal.dat" + PaletteEndGame = "/data/global/palette/endgame/pal.dat" + PaletteEndGame2 = "/data/global/palette/endgame2/pal.dat" + PaletteFechar = "/data/global/palette/fechar/pal.dat" + PaletteLoading = "/data/global/palette/loading/pal.dat" + PaletteMenu0 = "/data/global/palette/menu0/pal.dat" + PaletteMenu1 = "/data/global/palette/menu1/pal.dat" + PaletteMenu2 = "/data/global/palette/menu2/pal.dat" + PaletteMenu3 = "/data/global/palette/menu3/pal.dat" + PaletteMenu4 = "/data/global/palette/menu4/pal.dat" + PaletteSky = "/data/global/palette/sky/pal.dat" + PaletteStatic = "/data/global/palette/static/pal.dat" + PaletteTrademark = "/data/global/palette/trademark/pal.dat" + PaletteUnits = "/data/global/palette/units/pal.dat" +) diff --git a/d2common/data_dictionary.go b/d2common/data_dictionary.go new file mode 100644 index 00000000..01a7b766 --- /dev/null +++ b/d2common/data_dictionary.go @@ -0,0 +1,47 @@ +package d2common + +import ( + "log" + "strconv" + "strings" +) + +// DataDictionary represents a data file (Excel) +type DataDictionary struct { + FieldNameLookup map[string]int + Data [][]string +} + +func LoadDataDictionary(text string) *DataDictionary { + result := &DataDictionary{} + lines := strings.Split(text, "\r\n") + fileNames := strings.Split(lines[0], "\t") + result.FieldNameLookup = make(map[string]int) + for i, fieldName := range fileNames { + result.FieldNameLookup[fieldName] = i + } + result.Data = make([][]string, len(lines)-1) + for i, line := range lines[1:] { + if len(strings.TrimSpace(line)) == 0 { + continue + } + values := strings.Split(line, "\t") + if len(values) != len(result.FieldNameLookup) { + continue + } + result.Data[i] = values + } + return result +} + +func (v *DataDictionary) GetString(fieldName string, index int) string { + return v.Data[index][v.FieldNameLookup[fieldName]] +} + +func (v *DataDictionary) GetNumber(fieldName string, index int) int { + result, err := strconv.Atoi(v.GetString(fieldName, index)) + if err != nil { + log.Panic(err) + } + return result +} diff --git a/d2common/path.go b/d2common/path.go new file mode 100644 index 00000000..7e3a706e --- /dev/null +++ b/d2common/path.go @@ -0,0 +1,7 @@ +package d2common + +type Path struct { + X int32 + Y int32 + Action int32 +} diff --git a/d2common/rectangle.go b/d2common/rectangle.go new file mode 100644 index 00000000..347f7283 --- /dev/null +++ b/d2common/rectangle.go @@ -0,0 +1,20 @@ +package d2common + +type Rectangle struct { + Left int + Top int + Width int + Height int +} + +func (v *Rectangle) Bottom() int { + return v.Top + v.Height +} + +func (v *Rectangle) Right() int { + return v.Left + v.Width +} + +func (v *Rectangle) IsInRect(x, y int) bool { + return x >= v.Left && x < v.Left+v.Width && y >= v.Top && y < v.Top+v.Height +} diff --git a/d2common/stream_reader.go b/d2common/stream_reader.go new file mode 100644 index 00000000..436670e3 --- /dev/null +++ b/d2common/stream_reader.go @@ -0,0 +1,134 @@ +package d2common + +import ( + "io" +) + +// StreamReader allows you to read data from a byte array in various formats +type StreamReader struct { + data []byte + position uint64 +} + +// CreateStreamReader creates an instance of the stream reader +func CreateStreamReader(source []byte) *StreamReader { + result := &StreamReader{ + data: source, + position: 0, + } + return result +} + +// GetPosition returns the current stream position +func (v *StreamReader) GetPosition() uint64 { + return v.position +} + +// GetSize returns the total size of the stream in bytes +func (v *StreamReader) GetSize() uint64 { + return uint64(len(v.data)) +} + +// GetByte returns a byte from the stream +func (v *StreamReader) GetByte() byte { + result := v.data[v.position] + v.position++ + return result +} + +// GetUInt16 returns a uint16 word from the stream +func (v *StreamReader) GetUInt16() uint16 { + result := uint16(v.data[v.position]) + result += uint16(v.data[v.position+1]) << 8 + v.position += 2 + return result +} + +// GetInt16 returns a int16 word from the stream +func (v *StreamReader) GetInt16() int16 { + result := (int16(v.data[v.position+1]) << uint(8)) + int16(v.data[v.position]) + v.position += 2 + return result +} + +func (v *StreamReader) SetPosition(newPosition uint64) { + v.position = newPosition +} + +// GetUInt32 returns a uint32 dword from the stream +func (v *StreamReader) GetUInt32() uint32 { + result := (uint32(v.data[v.position+3]) << uint(24)) + (uint32(v.data[v.position+2]) << uint(16)) + (uint32(v.data[v.position+1]) << uint(8)) + uint32(v.data[v.position]) + v.position += 4 + return result +} + +// GetInt32 returns an int32 dword from the stream +func (v *StreamReader) GetInt32() int32 { + result := (int32(v.data[v.position+3]) << uint(24)) + (int32(v.data[v.position+2]) << uint(16)) + (int32(v.data[v.position+1]) << uint(8)) + int32(v.data[v.position]) + v.position += 4 + return result +} + +// GetUint64 returns a uint64 qword from the stream +func (v *StreamReader) GetUint64() uint64 { + result := (uint64(v.data[v.position+7]) << uint(56)) + + (uint64(v.data[v.position+6]) << uint(48)) + + (uint64(v.data[v.position+5]) << uint(40)) + + (uint64(v.data[v.position+4]) << uint(32)) + + (uint64(v.data[v.position+3]) << uint(24)) + + (uint64(v.data[v.position+2]) << uint(16)) + + (uint64(v.data[v.position+1]) << uint(8)) + + uint64(v.data[v.position]) + v.position += 8 + return result +} + +// GetInt64 returns a uint64 qword from the stream +func (v *StreamReader) GetInt64() int64 { + result := (uint64(v.data[v.position+7]) << uint(56)) + + (uint64(v.data[v.position+6]) << uint(48)) + + (uint64(v.data[v.position+5]) << uint(40)) + + (uint64(v.data[v.position+4]) << uint(32)) + + (uint64(v.data[v.position+3]) << uint(24)) + + (uint64(v.data[v.position+2]) << uint(16)) + + (uint64(v.data[v.position+1]) << uint(8)) + + uint64(v.data[v.position]) + v.position += 8 + return int64(result) +} + +// ReadByte implements io.ByteReader +func (v *StreamReader) ReadByte() (byte, error) { + return v.GetByte(), nil +} + +// ReadBytes reads multiple bytes +func (v *StreamReader) ReadBytes(count int) ([]byte, error) { + result := make([]byte, count) + for i := 0; i < count; i++ { + result[i] = v.GetByte() + } + return result, nil +} + +func (v *StreamReader) SkipBytes(count int) { + v.position += uint64(count) +} + +// Read implements io.Reader +func (v *StreamReader) Read(p []byte) (n int, err error) { + streamLength := v.GetSize() + for i := 0; ; i++ { + if v.GetPosition() >= streamLength { + return i, io.EOF + } + if i >= len(p) { + return i, nil + } + p[i] = v.GetByte() + } +} + +func (v *StreamReader) Eof() bool { + return v.position >= uint64(len(v.data)) +} diff --git a/d2common/stream_reader_test.go b/d2common/stream_reader_test.go new file mode 100644 index 00000000..6c4b4872 --- /dev/null +++ b/d2common/stream_reader_test.go @@ -0,0 +1,56 @@ +package d2common + +import ( + "testing" +) + +func TestStreamReaderByte(t *testing.T) { + data := []byte{0x78, 0x56, 0x34, 0x12} + sr := CreateStreamReader(data) + if sr.GetPosition() != 0 { + t.Fatal("StreamReader.GetPosition() did not start at 0") + } + if ss := sr.GetSize(); ss != 4 { + t.Fatalf("StreamREader.GetSize() was expected to return %d, but returned %d instead", 4, ss) + } + for i := 0; i < len(data); i++ { + ret := sr.GetByte() + if ret != data[i] { + t.Fatalf("StreamReader.GetDword() was expected to return %X, but returned %X instead", data[i], ret) + } + if pos := sr.GetPosition(); pos != uint64(i+1) { + t.Fatalf("StreamReader.GetPosition() should be at %d, but was at %d instead", i, pos) + } + } +} + +func TestStreamReaderWord(t *testing.T) { + data := []byte{0x78, 0x56, 0x34, 0x12} + sr := CreateStreamReader(data) + ret := sr.GetUInt16() + if ret != 0x5678 { + t.Fatalf("StreamReader.GetDword() was expected to return %X, but returned %X instead", 0x5678, ret) + } + if pos := sr.GetPosition(); pos != 2 { + t.Fatalf("StreamReader.GetPosition() should be at %d, but was at %d instead", 2, pos) + } + ret = sr.GetUInt16() + if ret != 0x1234 { + t.Fatalf("StreamReader.GetDword() was expected to return %X, but returned %X instead", 0x1234, ret) + } + if pos := sr.GetPosition(); pos != 4 { + t.Fatalf("StreamReader.GetPosition() should be at %d, but was at %d instead", 4, pos) + } +} + +func TestStreamReaderDword(t *testing.T) { + data := []byte{0x78, 0x56, 0x34, 0x12} + sr := CreateStreamReader(data) + ret := sr.GetUInt32() + if ret != 0x12345678 { + t.Fatalf("StreamReader.GetDword() was expected to return %X, but returned %X instead", 0x12345678, ret) + } + if pos := sr.GetPosition(); pos != 4 { + t.Fatalf("StreamReader.GetPosition() should be at %d, but was at %d instead", 4, pos) + } +} diff --git a/d2common/stream_writer.go b/d2common/stream_writer.go new file mode 100644 index 00000000..6c10530b --- /dev/null +++ b/d2common/stream_writer.go @@ -0,0 +1,69 @@ +package d2common + +// StreamWriter allows you to create a byte array by streaming in writes of various sizes +type StreamWriter struct { + data []byte +} + +// CreateStreamWriter creates a new StreamWriter instance +func CreateStreamWriter() *StreamWriter { + result := &StreamWriter{ + data: make([]byte, 0), + } + return result +} + +// PushByte writes a byte to the stream +func (v *StreamWriter) PushByte(val byte) { + v.data = append(v.data, val) +} + +// PushUint16 writes an uint16 word to the stream +func (v *StreamWriter) PushUint16(val uint16) { + v.data = append(v.data, byte(val&0xFF)) + v.data = append(v.data, byte((val>>8)&0xFF)) +} + +// PushInt16 writes a int16 word to the stream +func (v *StreamWriter) PushInt16(val int16) { + v.data = append(v.data, byte(val&0xFF)) + v.data = append(v.data, byte((val>>8)&0xFF)) +} + +// PushUint32 writes a uint32 dword to the stream +func (v *StreamWriter) PushUint32(val uint32) { + v.data = append(v.data, byte(val&0xFF)) + v.data = append(v.data, byte((val>>8)&0xFF)) + v.data = append(v.data, byte((val>>16)&0xFF)) + v.data = append(v.data, byte((val>>24)&0xFF)) +} + +// PushUint64 writes a uint64 qword to the stream +func (v *StreamWriter) PushUint64(val uint64) { + v.data = append(v.data, byte(val&0xFF)) + v.data = append(v.data, byte((val>>8)&0xFF)) + v.data = append(v.data, byte((val>>16)&0xFF)) + v.data = append(v.data, byte((val>>24)&0xFF)) + v.data = append(v.data, byte((val>>32)&0xFF)) + v.data = append(v.data, byte((val>>40)&0xFF)) + v.data = append(v.data, byte((val>>48)&0xFF)) + v.data = append(v.data, byte((val>>56)&0xFF)) +} + +// PushInt64 writes a uint64 qword to the stream +func (v *StreamWriter) PushInt64(val int64) { + result := uint64(val) + v.data = append(v.data, byte(result&0xFF)) + v.data = append(v.data, byte((result>>8)&0xFF)) + v.data = append(v.data, byte((result>>16)&0xFF)) + v.data = append(v.data, byte((result>>24)&0xFF)) + v.data = append(v.data, byte((result>>32)&0xFF)) + v.data = append(v.data, byte((result>>40)&0xFF)) + v.data = append(v.data, byte((result>>48)&0xFF)) + v.data = append(v.data, byte((result>>56)&0xFF)) +} + +// GetBytes returns the the byte slice of the underlying data +func (v *StreamWriter) GetBytes() []byte { + return v.data +} diff --git a/d2common/stream_writer_test.go b/d2common/stream_writer_test.go new file mode 100644 index 00000000..084404f5 --- /dev/null +++ b/d2common/stream_writer_test.go @@ -0,0 +1,44 @@ +package d2common + +import ( + "testing" +) + +func TestStreamWriterByte(t *testing.T) { + sr := CreateStreamWriter() + data := []byte{0x12, 0x34, 0x56, 0x78} + for _, d := range data { + sr.PushByte(d) + } + output := sr.GetBytes() + for i, d := range data { + if output[i] != d { + t.Fatalf("sr.PushByte() pushed %X, but wrote %X instead", d, output[i]) + } + } +} + +func TestStreamWriterWord(t *testing.T) { + sr := CreateStreamWriter() + data := []byte{0x12, 0x34, 0x56, 0x78} + sr.PushUint16(0x3412) + sr.PushUint16(0x7856) + output := sr.GetBytes() + for i, d := range data { + if output[i] != d { + t.Fatalf("sr.PushWord() pushed byte %X to %d, but %X was expected instead", output[i], i, d) + } + } +} + +func TestStreamWriterDword(t *testing.T) { + sr := CreateStreamWriter() + data := []byte{0x12, 0x34, 0x56, 0x78} + sr.PushUint32(0x78563412) + output := sr.GetBytes() + for i, d := range data { + if output[i] != d { + t.Fatalf("sr.PushDword() pushed byte %X to %d, but %X was expected instead", output[i], i, d) + } + } +} diff --git a/d2common/text_dictionary.go b/d2common/text_dictionary.go new file mode 100644 index 00000000..2a488f31 --- /dev/null +++ b/d2common/text_dictionary.go @@ -0,0 +1,110 @@ +package d2common + +import ( + "log" + "strconv" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" +) + +type textDictionaryHashEntry struct { + IsActive bool + Index uint16 + HashValue uint32 + IndexString uint32 + NameString uint32 + NameLength uint16 +} + +var lookupTable map[string]string + +func TranslateString(key string) string { + result, ok := lookupTable[key] + if !ok { + log.Panicf("Could not find a string for the key '%s'", key) + } + return result +} + +func LoadTextDictionary(fileProvider d2interface.FileProvider) { + lookupTable = make(map[string]string) + loadDictionary(fileProvider, d2resource.PatchStringTable) + loadDictionary(fileProvider, d2resource.ExpansionStringTable) + loadDictionary(fileProvider, d2resource.StringTable) + log.Printf("Loaded %d entries from the string table", len(lookupTable)) +} + +func loadDictionary(fileProvider d2interface.FileProvider, dictionaryName string) { + dictionaryData := fileProvider.LoadFile(dictionaryName) + br := CreateStreamReader(dictionaryData) + // CRC + if _, err := br.ReadBytes(2); err != nil { + log.Fatal("Error reading CRC") + } + numberOfElements := br.GetUInt16() + hashTableSize := br.GetUInt32() + // Version (always 0) + if _, err := br.ReadByte(); err != nil { + log.Fatal("Error reading Version record") + } + br.GetUInt32() // StringOffset + br.GetUInt32() // When the number of times you have missed a match with a hash key equals this value, you give up because it is not there. + br.GetUInt32() // FileSize + + elementIndex := make([]uint16, numberOfElements) + for i := 0; i < int(numberOfElements); i++ { + elementIndex[i] = br.GetUInt16() + } + + hashEntries := make([]textDictionaryHashEntry, hashTableSize) + for i := 0; i < int(hashTableSize); i++ { + hashEntries[i] = textDictionaryHashEntry{ + br.GetByte() == 1, + br.GetUInt16(), + br.GetUInt32(), + br.GetUInt32(), + br.GetUInt32(), + br.GetUInt16(), + } + } + + for idx, hashEntry := range hashEntries { + if !hashEntry.IsActive { + continue + } + br.SetPosition(uint64(hashEntry.NameString)) + nameVal, _ := br.ReadBytes(int(hashEntry.NameLength - 1)) + value := string(nameVal) + br.SetPosition(uint64(hashEntry.IndexString)) + key := "" + for { + b := br.GetByte() + if b == 0 { + break + } + key += string(b) + } + if key == "x" || key == "X" { + key = "#" + strconv.Itoa(idx) + } + _, exists := lookupTable[key] + if !exists { + lookupTable[key] = value + + } + // Use the following code to write out the values + /* + f, err := os.OpenFile(`C:\Users\lunat\Desktop\D2\langdict.txt`, + os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) + if err != nil { + log.Println(err) + } + defer f.Close() + if _, err := f.WriteString("\n[" + key + "] " + value); err != nil { + log.Println(err) + } + */ + } +} diff --git a/d2core/d2scene/blizzard_intro.go b/d2core/d2scene/blizzard_intro.go index e0b0932d..18056d3d 100644 --- a/d2core/d2scene/blizzard_intro.go +++ b/d2core/d2scene/blizzard_intro.go @@ -1,9 +1,9 @@ package d2scene import ( - "github.com/OpenDiablo2/D2Shared/d2data/d2video" "github.com/OpenDiablo2/OpenDiablo2/d2asset" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2video" "github.com/hajimehoshi/ebiten" ) diff --git a/d2core/d2scene/character_select.go b/d2core/d2scene/character_select.go index db4cce62..66c567be 100644 --- a/d2core/d2scene/character_select.go +++ b/d2core/d2scene/character_select.go @@ -6,12 +6,13 @@ import ( "os" "strings" - "github.com/OpenDiablo2/D2Shared/d2common" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" - dh "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2audio" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2ui" diff --git a/d2core/d2scene/credits.go b/d2core/d2scene/credits.go index aebb6b5e..c439c652 100644 --- a/d2core/d2scene/credits.go +++ b/d2core/d2scene/credits.go @@ -8,16 +8,17 @@ import ( "path" "strings" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2asset" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" - "github.com/OpenDiablo2/D2Shared/d2common" - dh "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2audio" + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2ui" ) diff --git a/d2core/d2scene/game.go b/d2core/d2scene/game.go index 80143d1f..a38a7cb0 100644 --- a/d2core/d2scene/game.go +++ b/d2core/d2scene/game.go @@ -3,8 +3,8 @@ package d2scene import ( "image/color" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2audio" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" diff --git a/d2core/d2scene/main_menu.go b/d2core/d2scene/main_menu.go index 62267127..315e33c7 100644 --- a/d2core/d2scene/main_menu.go +++ b/d2core/d2scene/main_menu.go @@ -10,14 +10,14 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2core" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" - "github.com/OpenDiablo2/D2Shared/d2common" "github.com/OpenDiablo2/OpenDiablo2/d2audio" + "github.com/OpenDiablo2/OpenDiablo2/d2common" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2ui" ) diff --git a/d2core/d2scene/map_engine_testing.go b/d2core/d2scene/map_engine_testing.go index 7b11e2ea..77552b6a 100644 --- a/d2core/d2scene/map_engine_testing.go +++ b/d2core/d2scene/map_engine_testing.go @@ -9,7 +9,7 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" "github.com/OpenDiablo2/OpenDiablo2/d2audio" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2mapengine" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2core/d2scene/select_hero_class.go b/d2core/d2scene/select_hero_class.go index 5af30ea8..883990a7 100644 --- a/d2core/d2scene/select_hero_class.go +++ b/d2core/d2scene/select_hero_class.go @@ -6,16 +6,17 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2core" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" - "github.com/OpenDiablo2/D2Shared/d2common" - dh "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2audio" + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2ui" ) diff --git a/d2core/engine.go b/d2core/engine.go index 0d0d9275..bcc20042 100644 --- a/d2core/engine.go +++ b/d2core/engine.go @@ -6,9 +6,9 @@ import ( "runtime" "strconv" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon/d2coreinterface" "github.com/OpenDiablo2/OpenDiablo2/d2input" @@ -16,13 +16,14 @@ import ( "github.com/OpenDiablo2/OpenDiablo2/d2render" - "github.com/OpenDiablo2/D2Shared/d2data" + "github.com/OpenDiablo2/OpenDiablo2/d2data" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" "github.com/OpenDiablo2/OpenDiablo2/d2audio" - "github.com/OpenDiablo2/D2Shared/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2asset" "github.com/OpenDiablo2/OpenDiablo2/d2corecommon" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2core/game_state.go b/d2core/game_state.go index 311e857c..5d15e888 100644 --- a/d2core/game_state.go +++ b/d2core/game_state.go @@ -9,9 +9,9 @@ import ( "strings" "time" - "github.com/OpenDiablo2/D2Shared/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2common" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) /* diff --git a/d2core/hero.go b/d2core/hero.go index 2b1e95cc..6f322db9 100644 --- a/d2core/hero.go +++ b/d2core/hero.go @@ -1,9 +1,9 @@ package d2core import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2core/hero_objects.go b/d2core/hero_objects.go index b1c36226..155b0533 100644 --- a/d2core/hero_objects.go +++ b/d2core/hero_objects.go @@ -1,7 +1,7 @@ package d2core import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" ) var HeroObjects map[d2enum.Hero]CharacterEquipment diff --git a/d2core/inventory_item_armor.go b/d2core/inventory_item_armor.go index f1e11dbb..2aa027f6 100644 --- a/d2core/inventory_item_armor.go +++ b/d2core/inventory_item_armor.go @@ -3,8 +3,8 @@ package d2core import ( "log" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" ) type InventoryItemArmor struct { diff --git a/d2core/inventory_item_weapon.go b/d2core/inventory_item_weapon.go index 2ad94974..6fc77f2f 100644 --- a/d2core/inventory_item_weapon.go +++ b/d2core/inventory_item_weapon.go @@ -3,8 +3,8 @@ package d2core import ( "log" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" ) type InventoryItemWeapon struct { diff --git a/d2core/npc.go b/d2core/npc.go index 0a7a6caa..9637f237 100644 --- a/d2core/npc.go +++ b/d2core/npc.go @@ -1,9 +1,10 @@ package d2core import ( - "github.com/OpenDiablo2/D2Shared/d2common" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2corecommon/configuration.go b/d2corecommon/configuration.go index 2d28a534..27438e0a 100644 --- a/d2corecommon/configuration.go +++ b/d2corecommon/configuration.go @@ -100,7 +100,7 @@ func getDefaultConfiguration() *Configuration { "d2xmusic.mpq", "d2xtalk.mpq", "d2xvideo.mpq", - "d2data.mpq", + "github.com/OpenDiablo2/OpenDiablo2/d2data.mpq", "d2char.mpq", "d2music.mpq", "d2sfx.mpq", diff --git a/d2data/animation_data.go b/d2data/animation_data.go new file mode 100644 index 00000000..c1342c45 --- /dev/null +++ b/d2data/animation_data.go @@ -0,0 +1,52 @@ +package d2data + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +// AnimationDataRecord represents a single entry in the animation data dictionary file +type AnimationDataRecord struct { + // COFName is the name of the COF file used for this animation + COFName string + // FramesPerDirection specifies how many frames are in each direction + FramesPerDirection int + // AnimationSpeed represents a value of X where the rate is a ration of (x/255) at 25FPS + AnimationSpeed int + // Flags are used in keyframe triggers + Flags []byte +} + +// AnimationData represents all of the animation data records, mapped by the COF index +var AnimationData map[string][]*AnimationDataRecord + +// LoadAnimationData loads the animation data table into the global AnimationData dictionary +func LoadAnimationData(fileProvider d2interface.FileProvider) { + AnimationData = make(map[string][]*AnimationDataRecord) + rawData := fileProvider.LoadFile(d2resource.AnimationData) + streamReader := d2common.CreateStreamReader(rawData) + for !streamReader.Eof() { + dataCount := int(streamReader.GetInt32()) + for i := 0; i < dataCount; i++ { + cofNameBytes, _ := streamReader.ReadBytes(8) + data := &AnimationDataRecord{ + COFName: strings.ReplaceAll(string(cofNameBytes), string(0), ""), + FramesPerDirection: int(streamReader.GetInt32()), + AnimationSpeed: int(streamReader.GetInt32()), + } + 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/d2data/d2cof/cof.go b/d2data/d2cof/cof.go new file mode 100644 index 00000000..9e1c81d9 --- /dev/null +++ b/d2data/d2cof/cof.go @@ -0,0 +1,65 @@ +package d2cof + +import ( + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type COF struct { + NumberOfDirections int + FramesPerDirection int + NumberOfLayers int + Speed int + CofLayers []CofLayer + CompositeLayers map[d2enum.CompositeType]int + AnimationFrames []d2enum.AnimationFrame + Priority [][][]d2enum.CompositeType +} + +func LoadCOF(fileData []byte) (*COF, error) { + result := &COF{} + streamReader := d2common.CreateStreamReader(fileData) + result.NumberOfLayers = int(streamReader.GetByte()) + result.FramesPerDirection = int(streamReader.GetByte()) + result.NumberOfDirections = int(streamReader.GetByte()) + streamReader.SkipBytes(21) // Skip 21 unknown bytes... + result.Speed = int(streamReader.GetByte()) + streamReader.SkipBytes(3) + result.CofLayers = make([]CofLayer, result.NumberOfLayers) + result.CompositeLayers = make(map[d2enum.CompositeType]int, 0) + for i := 0; i < result.NumberOfLayers; i++ { + layer := CofLayer{} + layer.Type = d2enum.CompositeType(streamReader.GetByte()) + layer.Shadow = streamReader.GetByte() + layer.Selectable = streamReader.GetByte() != 0 + layer.Transparent = streamReader.GetByte() != 0 + layer.DrawEffect = d2enum.DrawEffect(streamReader.GetByte()) + weaponClassStr, _ := streamReader.ReadBytes(4) + layer.WeaponClass = d2enum.WeaponClassFromString(strings.TrimSpace(strings.ReplaceAll(string(weaponClassStr), string(0), ""))) + result.CofLayers[i] = layer + result.CompositeLayers[layer.Type] = i + } + animationFrameBytes, _ := streamReader.ReadBytes(result.FramesPerDirection) + result.AnimationFrames = make([]d2enum.AnimationFrame, result.FramesPerDirection) + for i := range animationFrameBytes { + result.AnimationFrames[i] = d2enum.AnimationFrame(animationFrameBytes[i]) + } + priorityLen := result.FramesPerDirection * result.NumberOfDirections * result.NumberOfLayers + result.Priority = make([][][]d2enum.CompositeType, result.NumberOfDirections) + priorityBytes, _ := streamReader.ReadBytes(priorityLen) + priorityIndex := 0 + for direction := 0; direction < result.NumberOfDirections; direction++ { + result.Priority[direction] = make([][]d2enum.CompositeType, result.FramesPerDirection) + for frame := 0; frame < result.FramesPerDirection; frame++ { + result.Priority[direction][frame] = make([]d2enum.CompositeType, result.NumberOfLayers) + for i := 0; i < result.NumberOfLayers; i++ { + result.Priority[direction][frame][i] = d2enum.CompositeType(priorityBytes[priorityIndex]) + priorityIndex++ + } + } + } + return result, nil +} diff --git a/d2data/d2cof/coflayer.go b/d2data/d2cof/coflayer.go new file mode 100644 index 00000000..d453f0a5 --- /dev/null +++ b/d2data/d2cof/coflayer.go @@ -0,0 +1,12 @@ +package d2cof + +import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + +type CofLayer struct { + Type d2enum.CompositeType + Shadow byte + Selectable bool + Transparent bool + DrawEffect d2enum.DrawEffect + WeaponClass d2enum.WeaponClass +} diff --git a/d2data/d2compression/huffman.go b/d2data/d2compression/huffman.go new file mode 100644 index 00000000..a092ce13 --- /dev/null +++ b/d2data/d2compression/huffman.go @@ -0,0 +1,371 @@ +// +// MpqHuffman.go based on the origina CS file +// +// Authors: +// Foole (fooleau@gmail.com) +// Tim Sarbin (tim.sarbin@gmail.com) (go translation) +// +// (C) 2006 Foole (fooleau@gmail.com) +// Based on code from StormLib by Ladislav Zezula and ShadowFlare +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// 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" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +// 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 +} + +func CreateLinkedNode(decompVal, weight int) *linkedNode { + result := &linkedNode{ + DecompressedValue: decompVal, + Weight: weight, + } + return result +} + +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 { + // insert before + if v.Next != nil { + v.Next.Prev = other + other.Next = v.Next + } + v.Next = other + other.Prev = v + return other + } + if v.Prev == nil { + // Insert after + other.Prev = nil + v.Prev = other + other.Next = v + } else { + v.Prev.Insert(other) + } + + return v +} + +var sPrime = [][]byte{ + { // 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, + 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, 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, + 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, 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, + 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + }, { // 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, + 0x0D, 0x07, 0x09, 0x06, 0x06, 0x04, 0x03, 0x02, 0x04, 0x03, 0x03, 0x03, 0x03, 0x03, 0x02, 0x02, + 0x09, 0x06, 0x04, 0x04, 0x04, 0x04, 0x03, 0x02, 0x03, 0x02, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, + 0x08, 0x03, 0x04, 0x07, 0x09, 0x05, 0x03, 0x03, 0x03, 0x03, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02, + 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x02, + 0x06, 0x0A, 0x08, 0x08, 0x06, 0x07, 0x04, 0x03, 0x04, 0x04, 0x02, 0x02, 0x04, 0x02, 0x03, 0x03, + 0x04, 0x03, 0x07, 0x07, 0x09, 0x06, 0x04, 0x03, 0x03, 0x02, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, + 0x0A, 0x02, 0x02, 0x03, 0x02, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x06, 0x03, 0x05, 0x02, 0x03, + 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x04, 0x04, 0x07, 0x09, 0x08, 0x0C, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x03, + 0x04, 0x01, 0x02, 0x04, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 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 + 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, + 0x06, 0x08, 0x05, 0x04, 0x04, 0x03, 0x03, 0x02, 0x02, 0x03, 0x03, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x04, 0x02, 0x04, 0x02, 0x02, 0x02, 0x01, 0x01, 0x04, 0x01, 0x01, 0x02, 0x03, 0x03, 0x02, + 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 + 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, + 0x02, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x0A, 0x04, 0x02, 0x01, 0x06, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, + 0x05, 0x02, 0x03, 0x04, 0x03, 0x03, 0x03, 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x03, 0x03, + 0x01, 0x03, 0x01, 0x01, 0x02, 0x05, 0x01, 0x01, 0x04, 0x03, 0x05, 0x01, 0x03, 0x01, 0x03, 0x03, + 0x02, 0x01, 0x04, 0x03, 0x0A, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x02, 0x01, 0x0A, 0x02, 0x05, 0x01, 0x01, 0x02, 0x07, 0x02, 0x17, 0x01, 0x05, 0x01, 0x01, + 0x0E, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x06, 0x02, 0x01, 0x04, 0x05, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, + 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 + 0xFF, 0xFB, 0x98, 0x9A, 0x84, 0x85, 0x63, 0x64, 0x3E, 0x3E, 0x22, 0x22, 0x13, 0x13, 0x18, 0x17, + }, { // Compression type 5 + 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 + 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, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xBF, 0xCC, 0xF2, 0x40, 0xFD, 0x7C, 0xF7, 0x22, 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, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x7A, 0x46, + }, { // 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, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xBD, 0xD9, 0xEC, 0x3D, 0xF5, 0x7D, 0xE8, 0x1D, 0xFB, 0xAE, 0xF0, 0x2C, 0xFB, 0x5C, 0xFF, 0x18, + 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x70, 0x6C, + }, { // Compression type 8 + 0xBA, 0xC5, 0xDA, 0x33, 0xE3, 0x6D, 0xD8, 0x18, 0xE5, 0x94, 0xDA, 0x23, 0xDF, 0x4A, 0xD1, 0x10, + 0xEE, 0xAF, 0xE4, 0x2C, 0xEA, 0x5A, 0xDE, 0x15, 0xF4, 0x87, 0xE9, 0x21, 0xF6, 0x43, 0xFC, 0x12, + 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, + 0xB0, 0xC7, 0xD8, 0x33, 0xE3, 0x6B, 0xD6, 0x18, 0xE7, 0x95, 0xD8, 0x23, 0xDB, 0x49, 0xD0, 0x11, + 0xE9, 0xB2, 0xE2, 0x2B, 0xE8, 0x5C, 0xDD, 0x15, 0xF1, 0x87, 0xE7, 0x20, 0xF7, 0x44, 0xFF, 0x13, + 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, + 0x5F, 0x9E, + }, +} + +func decode(input *d2common.BitStream, head *linkedNode) *linkedNode { + node := head + + for node.Child0 != nil { + bit := input.ReadBits(1) + if bit == -1 { + log.Fatal("unexpected end of file") + } + if bit == 0 { + node = node.Child0 + continue + } + node = node.GetChild1() + } + return node +} + +func buildList(primeData []byte) *linkedNode { + root := CreateLinkedNode(256, 1) + root = root.Insert(CreateLinkedNode(257, 1)) + + for i := 0; i < len(primeData); i++ { + if primeData[i] != 0 { + root = root.Insert(CreateLinkedNode(i, int(primeData[i]))) + } + } + return root +} + +func insertNode(tail *linkedNode, decomp int) *linkedNode { + parent := tail + result := tail.Prev // This will be the new tail after the tree is updated + + temp := CreateLinkedNode(parent.DecompressedValue, parent.Weight) + temp.Parent = parent + + newnode := CreateLinkedNode(decomp, 0) + newnode.Parent = parent + + parent.Child0 = newnode + + tail.Next = temp + temp.Prev = tail + newnode.Prev = temp + temp.Next = newnode + + adjustTree(newnode) + // TODO: For compression type 0, AdjustTree should be called + // once for every value written and only once here + adjustTree(newnode) + return result +} + +// This increases the weight of the new node and its antecendants +// and adjusts the tree if needed +func adjustTree(newNode *linkedNode) { + current := newNode + + for current != nil { + current.Weight++ + var insertpoint *linkedNode + var prev *linkedNode + // Go backwards thru the list looking for the insertion point + insertpoint = current + for true { + prev = insertpoint.Prev + if prev == nil { + break + } + if prev.Weight >= current.Weight { + break + } + insertpoint = prev + } + + // No insertion point found + if insertpoint == current { + current = current.Parent + continue + } + + // The following code basicly swaps insertpoint with current + + // remove insert point + if insertpoint.Prev != nil { + insertpoint.Prev.Next = insertpoint.Next + } + insertpoint.Next.Prev = insertpoint.Prev + + // Insert insertpoint after current + insertpoint.Next = current.Next + insertpoint.Prev = current + if current.Next != nil { + current.Next.Prev = insertpoint + } + current.Next = insertpoint + + // remove current + 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 + + // Set up parent/child links + currentparent := current.Parent + insertparent := insertpoint.Parent + + if currentparent.Child0 == current { + currentparent.Child0 = insertpoint + } + + if currentparent != insertparent && insertparent.Child0 == insertpoint { + insertparent.Child0 = current + } + + current.Parent = insertparent + insertpoint.Parent = currentparent + + current = current.Parent + } +} + +func buildTree(tail *linkedNode) *linkedNode { + current := tail + + for current != nil { + child0 := current + child1 := current.Prev + if child1 == nil { + break + } + + parent := CreateLinkedNode(0, child0.Weight+child1.Weight) + parent.Child0 = child0 + child0.Parent = parent + child1.Parent = parent + + current.Insert(parent) + current = current.Prev.Prev + } + return current +} + +func HuffmanDecompress(data []byte) []byte { + comptype := data[0] + + if comptype == 0 { + log.Panic("compression type 0 is not currently supported") + } + + tail := buildList(sPrime[comptype]) + head := buildTree(tail) + + outputstream := d2common.CreateStreamWriter() + bitstream := d2common.CreateBitStream(data[1:]) + var decoded int + for true { + node := decode(bitstream, head) + decoded = node.DecompressedValue + switch decoded { + case 256: + break + case 257: + newvalue := bitstream.ReadBits(8) + outputstream.PushByte(byte(newvalue)) + tail = insertNode(tail, newvalue) + break + default: + outputstream.PushByte(byte(decoded)) + break + } + if decoded == 256 { + break + } + } + + return outputstream.GetBytes() +} diff --git a/d2data/d2compression/wav.go b/d2data/d2compression/wav.go new file mode 100644 index 00000000..2b5474f4 --- /dev/null +++ b/d2data/d2compression/wav.go @@ -0,0 +1,131 @@ +package d2compression + +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 { + Array1 := []int{0x2c, 0x2c} + Array2 := make([]int, channelCount) + + input := d2common.CreateStreamReader(data) + output := d2common.CreateStreamWriter() + input.GetByte() + + shift := input.GetByte() + + for i := 0; i < channelCount; i++ { + temp := input.GetInt16() + Array2[i] = int(temp) + output.PushInt16(temp) + } + + channel := channelCount - 1 + for input.GetPosition() < input.GetSize() { + value := input.GetByte() + + if channelCount == 2 { + channel = 1 - channel + } + + if (value & 0x80) != 0 { + switch value & 0x7f { + case 0: + if Array1[channel] != 0 { + Array1[channel]-- + } + output.PushInt16(int16(Array2[channel])) + break + case 1: + Array1[channel] += 8 + if Array1[channel] > 0x58 { + Array1[channel] = 0x58 + } + if channelCount == 2 { + channel = 1 - channel + } + break + case 2: + break + default: + Array1[channel] -= 8 + if Array1[channel] < 0 { + Array1[channel] = 0 + } + if channelCount == 2 { + channel = 1 - channel + } + break + } + } else { + temp1 := sLookup[Array1[channel]] + temp2 := temp1 >> shift + + if (value & 1) != 0 { + temp2 += temp1 >> 0 + } + if (value & 2) != 0 { + temp2 += temp1 >> 1 + } + if (value & 4) != 0 { + temp2 += temp1 >> 2 + } + if (value & 8) != 0 { + temp2 += temp1 >> 3 + } + if (value & 0x10) != 0 { + temp2 += temp1 >> 4 + } + if (value & 0x20) != 0 { + temp2 += temp1 >> 5 + } + + temp3 := Array2[channel] + if (value & 0x40) != 0 { + temp3 -= temp2 + if temp3 <= -32768 { + temp3 = -32768 + } + } else { + temp3 += temp2 + if temp3 >= 32767 { + temp3 = 32767 + } + } + Array2[channel] = temp3 + output.PushInt16(int16(temp3)) + Array1[channel] += sLookup2[value&0x1f] + + if Array1[channel] < 0 { + Array1[channel] = 0 + } else { + if Array1[channel] > 0x58 { + Array1[channel] = 0x58 + } + } + } + } + return output.GetBytes() +} diff --git a/d2data/d2datadict/armor.go b/d2data/d2datadict/armor.go new file mode 100644 index 00000000..d74c7827 --- /dev/null +++ b/d2data/d2datadict/armor.go @@ -0,0 +1,18 @@ +package d2datadict + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" +) + +var Armors map[string]*ItemCommonRecord + +func LoadArmors(fileProvider d2interface.FileProvider) { + Armors = *LoadCommonItems(fileProvider, d2resource.Armor, d2enum.InventoryItemTypeArmor) + log.Printf("Loaded %d armors", len(Armors)) +} diff --git a/d2data/d2datadict/item_common.go b/d2data/d2datadict/item_common.go new file mode 100644 index 00000000..712ebfe3 --- /dev/null +++ b/d2data/d2datadict/item_common.go @@ -0,0 +1,416 @@ +package d2datadict + +import ( + "strconv" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" +) + +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 + + 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 + // 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 + AnimLeftArm int + AnimTorso int + AnimLegs int + 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? + + 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 + // 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 + // 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 + + 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 +} + +type ItemUsageStat struct { + Stat string // name of the stat to add to + Calc d2common.CalcString // calc string representing the amount to add +} + +type ItemVendorParams struct { + Min int // minimum of this item they can stock + Max int // max they can stock + MagicMin int + MagicMax int + MagicLevel uint8 +} + + + +// Loading Functions +var CommonItems map[string]*ItemCommonRecord + +func LoadCommonItems(fileProvider d2interface.FileProvider, filepath string, source d2enum.InventoryItemType) *map[string]*ItemCommonRecord { + if CommonItems == nil { + CommonItems = make(map[string]*ItemCommonRecord) + } + items := make(map[string]*ItemCommonRecord) + data := strings.Split(string(fileProvider.LoadFile(filepath)), "\r\n") + mapping := MapHeaders(data[0]) + for lineno, line := range data { + if lineno == 0 { + continue + } + if len(line) == 0 { + continue + } + rec := createCommonItemRecord(line, &mapping, source) + items[rec.Code] = &rec + CommonItems[rec.Code] = &rec + } + return &items +} + +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"), + + 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"), + + 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"), + + 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"), + + 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"), + + 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"), + + 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"), + + 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"), + + 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"), + + 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"), + + SkipName: MapLoadBool(&r, mapping, "SkipName"), + NightmareUpgrade: MapLoadString(&r, mapping, "NightmareUpgrade"), + HellUpgrade: MapLoadString(&r, mapping, "HellUpgrade"), + + 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"), + + RequiredDexterity: MapLoadInt(&r, mapping, "reqdex"), + + WeaponClass: MapLoadString(&r, mapping, "wclass"), + WeaponClass2Hand: MapLoadString(&r, mapping, "2handedwclass"), + + HitClass: MapLoadString(&r, mapping, "hit class"), + SpawnStack: MapLoadInt(&r, mapping, "spawnstack"), + + SpecialFeature: MapLoadString(&r, mapping, "special"), + + QuestDifficultyCheck: MapLoadBool(&r, mapping, "questdiffcheck"), + + PermStoreItem: MapLoadBool(&r, mapping, "PermStoreItem"), + + // misc params + 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"), + + AutoBelt: MapLoadBool(&r, mapping, "autobelt"), + + 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"), + }, + EffectLength: MapLoadInt(&r, mapping, "len"), + UsageStats: createItemUsageStats(&r, mapping), + + 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")), + + BetterGem: MapLoadString(&r, mapping, "BetterGem"), + + Multibuy: MapLoadBool(&r, mapping, "multibuy"), + } + return result +} + +func createItemVendorParams(r *[]string, mapping *map[string]int) map[string]*ItemVendorParams { + vs := make([]string, 17) + vs[0] = "Charsi" + vs[1] = "Gheed" + vs[2] = "Akara" + vs[3] = "Fara" + vs[4] = "Lysander" + vs[5] = "Drognan" + vs[6] = "Hralti" + vs[7] = "Alkor" + vs[8] = "Ormus" + vs[9] = "Elzix" + vs[10] = "Asheara" + vs[11] = "Cain" + vs[12] = "Halbu" + vs[13] = "Jamella" + vs[14] = "Larzuk" + vs[15] = "Malah" + vs[16] = "Drehya" + + result := make(map[string]*ItemVendorParams) + + 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"), + } + result[name] = &wvp + } + return result +} + +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))) + } + return result +} diff --git a/d2data/d2datadict/level_presets.go b/d2data/d2datadict/level_presets.go new file mode 100644 index 00000000..2cbcd59e --- /dev/null +++ b/d2data/d2datadict/level_presets.go @@ -0,0 +1,93 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type LevelPresetRecord struct { + Name string + DefinitionId int + LevelId int + 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 +} + +// CreateLevelPresetRecord parses a row from lvlprest.txt into a LevelPresetRecord +func createLevelPresetRecord(props []string) LevelPresetRecord { + i := -1 + inc := func() int { + i++ + return i + } + result := LevelPresetRecord{ + Name: props[inc()], + DefinitionId: dh.StringToInt(props[inc()]), + LevelId: dh.StringToInt(props[inc()]), + Populate: dh.StringToUint8(props[inc()]) == 1, + Logicals: dh.StringToUint8(props[inc()]) == 1, + Outdoors: dh.StringToUint8(props[inc()]) == 1, + Animate: dh.StringToUint8(props[inc()]) == 1, + KillEdge: dh.StringToUint8(props[inc()]) == 1, + FillBlanks: dh.StringToUint8(props[inc()]) == 1, + SizeX: dh.StringToInt(props[inc()]), + SizeY: dh.StringToInt(props[inc()]), + AutoMap: dh.StringToUint8(props[inc()]) == 1, + Scan: dh.StringToUint8(props[inc()]) == 1, + Pops: dh.StringToInt(props[inc()]), + PopPad: dh.StringToInt(props[inc()]), + FileCount: dh.StringToInt(props[inc()]), + Files: [6]string{ + props[inc()], + props[inc()], + props[inc()], + props[inc()], + props[inc()], + props[inc()], + }, + Dt1Mask: dh.StringToUint(props[inc()]), + Beta: dh.StringToUint8(props[inc()]) == 1, + Expansion: dh.StringToUint8(props[inc()]) == 1, + } + return result +} + +var LevelPresets map[int]LevelPresetRecord + +func LoadLevelPresets(fileProvider d2interface.FileProvider) { + LevelPresets = make(map[int]LevelPresetRecord) + data := strings.Split(string(fileProvider.LoadFile(d2resource.LevelPreset)), "\r\n")[1:] + for _, line := range data { + if len(line) == 0 { + continue + } + props := strings.Split(line, "\t") + if props[1] == "" { + continue // any line without a definition id is skipped (e.g. the "Expansion" line) + } + rec := createLevelPresetRecord(props) + LevelPresets[rec.DefinitionId] = rec + } + log.Printf("Loaded %d level presets", len(LevelPresets)) +} diff --git a/d2data/d2datadict/level_types.go b/d2data/d2datadict/level_types.go new file mode 100644 index 00000000..192d717f --- /dev/null +++ b/d2data/d2datadict/level_types.go @@ -0,0 +1,56 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type LevelTypeRecord struct { + Name string + Id int + Files [32]string + Beta bool + Act int + Expansion bool +} + +var LevelTypes []LevelTypeRecord + +func LoadLevelTypes(fileProvider d2interface.FileProvider) { + data := strings.Split(string(fileProvider.LoadFile(d2resource.LevelType)), "\r\n")[1:] + LevelTypes = make([]LevelTypeRecord, len(data)) + for i, j := 0, 0; i < len(data); i, j = i+1, j+1 { + idx := -1 + inc := func() int { + idx++ + return idx + } + if len(data[i]) == 0 { + continue + } + parts := strings.Split(data[i], "\t") + if parts[0] == "Expansion" { + j-- + continue + } + LevelTypes[j].Name = parts[inc()] + LevelTypes[j].Id = dh.StringToInt(parts[inc()]) + for fileIdx := range LevelTypes[i].Files { + LevelTypes[j].Files[fileIdx] = parts[inc()] + if LevelTypes[j].Files[fileIdx] == "0" { + LevelTypes[j].Files[fileIdx] = "" + } + + } + LevelTypes[j].Beta = parts[inc()] != "1" + LevelTypes[j].Act = dh.StringToInt(parts[inc()]) + LevelTypes[j].Expansion = parts[inc()] != "1" + } + log.Printf("Loaded %d LevelType records", len(LevelTypes)) +} diff --git a/d2data/d2datadict/level_warp.go b/d2data/d2datadict/level_warp.go new file mode 100644 index 00000000..8e221f1c --- /dev/null +++ b/d2data/d2datadict/level_warp.go @@ -0,0 +1,53 @@ +package d2datadict + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type LevelWarpRecord struct { + Id int32 + SelectX int32 + SelectY int32 + SelectDX int32 + SelectDY int32 + ExitWalkX int32 + ExitWalkY int32 + OffsetX int32 + OffsetY int32 + LitVersion bool + Tiles int32 + Direction string +} + +var LevelWarps map[int]*LevelWarpRecord + +func LoadLevelWarps(fileProvider d2interface.FileProvider) { + LevelWarps = make(map[int]*LevelWarpRecord) + levelWarpData := fileProvider.LoadFile(d2resource.LevelWarp) + streamReader := d2common.CreateStreamReader(levelWarpData) + numRecords := int(streamReader.GetInt32()) + for i := 0; i < numRecords; i++ { + id := int(streamReader.GetInt32()) + LevelWarps[id] = &LevelWarpRecord{} + LevelWarps[id].Id = int32(id) + LevelWarps[id].SelectX = streamReader.GetInt32() + LevelWarps[id].SelectY = streamReader.GetInt32() + LevelWarps[id].SelectDX = streamReader.GetInt32() + LevelWarps[id].SelectDY = streamReader.GetInt32() + LevelWarps[id].ExitWalkX = streamReader.GetInt32() + LevelWarps[id].ExitWalkY = streamReader.GetInt32() + LevelWarps[id].OffsetX = streamReader.GetInt32() + LevelWarps[id].OffsetY = streamReader.GetInt32() + LevelWarps[id].LitVersion = streamReader.GetInt32() == 1 + LevelWarps[id].Tiles = streamReader.GetInt32() + LevelWarps[id].Direction = string(streamReader.GetByte()) + streamReader.SkipBytes(3) + } + log.Printf("Loaded %d level warps", len(LevelWarps)) +} diff --git a/d2data/d2datadict/map_helper.go b/d2data/d2datadict/map_helper.go new file mode 100644 index 00000000..8b523504 --- /dev/null +++ b/d2data/d2datadict/map_helper.go @@ -0,0 +1,43 @@ +package d2datadict + +import ( + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" + "strings" +) + +func MapHeaders(line string) map[string]int { + m := make(map[string]int) + r := strings.Split(line, "\t") + for index, header := range r { + m[header] = index + } + return m +} + +func MapLoadInt(r *[]string, mapping *map[string]int, field string) int { + index, ok := (*mapping)[field] + if ok { + return dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty((*r)[index]))) + } + return 0 +} + +func MapLoadString(r *[]string, mapping *map[string]int, field string) string { + index, ok := (*mapping)[field] + if ok { + return dh.AsterToEmpty((*r)[index]) + } + return "" +} + +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] + if ok { + return dh.StringToUint8(dh.EmptyToZero(dh.AsterToEmpty((*r)[index]))) + } + return 0 +} diff --git a/d2data/d2datadict/misc.go b/d2data/d2datadict/misc.go new file mode 100644 index 00000000..2540605a --- /dev/null +++ b/d2data/d2datadict/misc.go @@ -0,0 +1,18 @@ +package d2datadict + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" +) + +var MiscItems map[string]*ItemCommonRecord + +func LoadMiscItems(fileProvider d2interface.FileProvider) { + MiscItems = *LoadCommonItems(fileProvider, d2resource.Misc, d2enum.InventoryItemTypeItem) + log.Printf("Loaded %d misc items", len(MiscItems)) +} diff --git a/d2data/d2datadict/missiles.go b/d2data/d2datadict/missiles.go new file mode 100644 index 00000000..555a6896 --- /dev/null +++ b/d2data/d2datadict/missiles.go @@ -0,0 +1,411 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type MissileCalcParam struct { + Param int + Desc string +} + +type MissileCalc struct { + Calc d2common.CalcString + Desc string + Params []MissileCalcParam +} + +type MissileLight struct { + Diameter int + Flicker int + Red uint8 + Green uint8 + Blue uint8 +} + +type MissileAnimation struct { + 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 + SubStartingFrame int + SubEndingFrame int +} + +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 + DestroyedUponCollision bool + FriendlyFire bool + LastCollide bool // unknown + Collision bool // unknown + ClientCollision bool // unknown + ClientSend bool // unclear + UseCollisionTimer bool // after hit, use timer before dying + TimerFrames int // how many frames to persist +} + +type MissileDamage struct { + MinDamage int + MaxDamage int + MinLevelDamage [5]int // additional damage per missile level + // [0]: lvs 2-8, [1]: lvs 9-16, [2]: lvs 17-22, [3]: lvs 23-28, [4]: lv 29+ + MaxLevelDamage [5]int // see above + DamageSynergyPerCalc d2common.CalcString // works like synergy in skills.txt, not clear +} + +type MissileElementalDamage struct { + Damage MissileDamage + ElementType string + Duration int // frames, 25 = 1 second + LevelDuration [3]int // 0,1,2, unknown level intervals, bonus duration per level +} + +type MissileRecord struct { + Name string + Id int + + ClientMovementFunc int + ClientCollisionFunc int + ServerMovementFunc int + ServerCollisionFunc int + ServerDamageFunc int + ServerMovementCalc MissileCalc + ClientMovementCalc MissileCalc + ServerCollisionCalc MissileCalc + ClientCollisionCalc MissileCalc + ServerDamageCalc MissileCalc + + Velocity int + MaxVelocity int + LevelVelocityBonus int + Accel int + 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 + + UseAttackRating bool // if true, uses 'attack rating' to determine if it hits or misses + // if false, has a 95% chance to hit. + AlwaysExplode bool // if true, always calls its collision function when it is destroyed, even if it doesn't hit anything + // note that some collision functions (lightning fury) seem to ignore this and always explode regardless of setting (requires investigation) + + ClientExplosion bool // if true, does not really exist + // is only aesthetic / client side + TownSafe bool // if true, doesn't vanish when spawned in town + // 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" + + 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 { + r := strings.Split(line, "\t") + i := -1 + inc := func() int { + i++ + return i + } + // note: in this file, empties are equivalent to zero, so all numerical conversions should + // be wrapped in an dh.EmptyToZero transform + result := MissileRecord{ + Name: r[inc()], + Id: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + ClientMovementFunc: dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty(r[inc()]))), + ClientCollisionFunc: dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty(r[inc()]))), + ServerMovementFunc: dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty(r[inc()]))), + ServerCollisionFunc: dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty(r[inc()]))), + ServerDamageFunc: dh.StringToInt(dh.EmptyToZero(dh.AsterToEmpty(r[inc()]))), + + ServerMovementCalc: loadMissileCalc(&r, inc, 5), + ClientMovementCalc: loadMissileCalc(&r, inc, 5), + ServerCollisionCalc: loadMissileCalc(&r, inc, 3), + ClientCollisionCalc: loadMissileCalc(&r, inc, 3), + ServerDamageCalc: loadMissileCalc(&r, inc, 2), + + Velocity: dh.StringToInt(dh.EmptyToZero(r[inc()])), + MaxVelocity: dh.StringToInt(dh.EmptyToZero(r[inc()])), + LevelVelocityBonus: dh.StringToInt(dh.EmptyToZero(r[inc()])), + Accel: dh.StringToInt(dh.EmptyToZero(r[inc()])), + Range: dh.StringToInt(dh.EmptyToZero(r[inc()])), + LevelRangeBonus: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + Light: loadMissileLight(&r, inc), + + Animation: loadMissileAnimation(&r, inc), + + Collision: loadMissileCollision(&r, inc), + + XOffset: dh.StringToInt(dh.EmptyToZero(r[inc()])), + YOffset: dh.StringToInt(dh.EmptyToZero(r[inc()])), + ZOffset: dh.StringToInt(dh.EmptyToZero(r[inc()])), + Size: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + DestroyedByTP: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + DestroyedByTPFrame: dh.StringToInt(dh.EmptyToZero(r[inc()])), + CanDestroy: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + + UseAttackRating: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + AlwaysExplode: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + + ClientExplosion: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + TownSafe: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + IgnoreBossModifiers: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + IgnoreMultishot: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + HolyFilterType: dh.StringToInt(dh.EmptyToZero(r[inc()])), + CanBeSlowed: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + TriggersHitEvents: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + TriggersGetHit: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + SoftHit: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + KnockbackPercent: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + TransparencyMode: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + UseQuantity: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + AffectedByPierce: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + SpecialSetup: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + + MissileSkill: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + SkillName: r[inc()], + + ResultFlags: dh.StringToInt(dh.EmptyToZero(r[inc()])), + HitFlags: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + HitShift: dh.StringToInt(dh.EmptyToZero(r[inc()])), + ApplyMastery: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + SourceDamage: dh.StringToInt(dh.EmptyToZero(r[inc()])), + HalfDamageForTwoHander: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + SourceMissDamage: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + Damage: loadMissileDamage(&r, inc), + ElementalDamage: loadMissileElementalDamage(&r, inc), + + HitClass: dh.StringToInt(dh.EmptyToZero(r[inc()])), + NumDirections: dh.StringToInt(dh.EmptyToZero(r[inc()])), + LocalBlood: dh.StringToInt(dh.EmptyToZero(r[inc()])), + DamageReductionRate: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + TravelSound: r[inc()], + HitSound: r[inc()], + ProgSound: r[inc()], + ProgOverlay: r[inc()], + ExplosionMissile: r[inc()], + + SubMissile: [3]string{r[inc()], r[inc()], r[inc()]}, + HitSubMissile: [4]string{r[inc()], r[inc()], r[inc()], r[inc()]}, + ClientSubMissile: [3]string{r[inc()], r[inc()], r[inc()]}, + ClientHitSubMissile: [4]string{r[inc()], r[inc()], r[inc()], r[inc()]}, + } + return result +} + +var Missiles map[int]*MissileRecord + +func LoadMissiles(fileProvider d2interface.FileProvider) { + Missiles = make(map[int]*MissileRecord) + data := strings.Split(string(fileProvider.LoadFile(d2resource.Missiles)), "\r\n")[1:] + for _, line := range data { + if len(line) == 0 { + continue + } + rec := createMissileRecord(line) + Missiles[rec.Id] = &rec + } + log.Printf("Loaded %d missiles", len(Missiles)) +} + +func loadMissileCalcParam(r *[]string, inc func() int) MissileCalcParam { + result := MissileCalcParam{ + Param: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + Desc: (*r)[inc()], + } + return result +} + +func loadMissileCalc(r *[]string, inc func() int, params int) MissileCalc { + result := MissileCalc{ + Calc: d2common.CalcString((*r)[inc()]), + Desc: (*r)[inc()], + } + result.Params = make([]MissileCalcParam, params) + for p := 0; p < params; p++ { + result.Params[p] = loadMissileCalcParam(r, inc) + } + return result +} + +func loadMissileLight(r *[]string, inc func() int) MissileLight { + result := MissileLight{ + Diameter: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + Flicker: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + Red: dh.StringToUint8(dh.EmptyToZero((*r)[inc()])), + Green: dh.StringToUint8(dh.EmptyToZero((*r)[inc()])), + Blue: dh.StringToUint8(dh.EmptyToZero((*r)[inc()])), + } + return result +} + +func loadMissileAnimation(r *[]string, inc func() int) MissileAnimation { + result := MissileAnimation{ + StepsBeforeVisible: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + StepsBeforeActive: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + LoopAnimation: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + CelFileName: (*r)[inc()], + AnimationRate: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + AnimationLength: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + AnimationSpeed: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + StartingFrame: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + HasSubLoop: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + SubStartingFrame: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + SubEndingFrame: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + } + return result +} + +func loadMissileCollision(r *[]string, inc func() int) MissileCollision { + result := MissileCollision{ + CollisionType: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + DestroyedUponCollision: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + FriendlyFire: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + LastCollide: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + Collision: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + ClientCollision: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + ClientSend: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + UseCollisionTimer: dh.StringToInt(dh.EmptyToZero((*r)[inc()])) == 1, + TimerFrames: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + } + return result +} + +func loadMissileDamage(r *[]string, inc func() int) MissileDamage { + result := MissileDamage{ + MinDamage: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + MinLevelDamage: [5]int{ + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + }, + MaxDamage: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + MaxLevelDamage: [5]int{ + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + }, + DamageSynergyPerCalc: d2common.CalcString((*r)[inc()]), + } + return result +} + +func loadMissileElementalDamage(r *[]string, inc func() int) MissileElementalDamage { + result := MissileElementalDamage{ + ElementType: (*r)[inc()], + Damage: loadMissileDamage(r, inc), + Duration: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + LevelDuration: [3]int{ + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + }, + } + return result +} diff --git a/d2data/d2datadict/monstats.go b/d2data/d2datadict/monstats.go new file mode 100644 index 00000000..47f5be6f --- /dev/null +++ b/d2data/d2datadict/monstats.go @@ -0,0 +1,13 @@ +package d2datadict + +import ( + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" +) + +var MonStatsDictionary *d2common.DataDictionary + +func LoadMonStats(fileProvider d2interface.FileProvider) { + MonStatsDictionary = d2common.LoadDataDictionary(string(fileProvider.LoadFile(d2resource.MonStats))) +} diff --git a/d2data/d2datadict/object_lookup.go b/d2data/d2datadict/object_lookup.go new file mode 100644 index 00000000..214e499a --- /dev/null +++ b/d2data/d2datadict/object_lookup.go @@ -0,0 +1,7896 @@ +package d2datadict + + +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}, +} diff --git a/d2data/d2datadict/object_query.go b/d2data/d2datadict/object_query.go new file mode 100644 index 00000000..f9009d97 --- /dev/null +++ b/d2data/d2datadict/object_query.go @@ -0,0 +1,90 @@ +package d2datadict + +import ( + "log" +) + +type ObjectType int + +const ( + ObjectTypeCharacter ObjectType = 1 + ObjectTypeItem ObjectType = 2 +) + +type ObjectLookupRecord struct { + Act int + Type ObjectType + Id int + Description string + ObjectsTxtId int + MonstatsTxtId int + Direction int + Base string + Token string + Mode string + Class string + HD string + TR string + LG string + RA string + LA string + RH string + LH string + SH string + S1 string + S2 string + S3 string + S4 string + S5 string + S6 string + S7 string + S8 string + ColorMap string + Index int +} + +func LookupObject(act, typ, id int) *ObjectLookupRecord { + object := lookupObject(act, typ, id, indexedObjects) + if object == nil { + log.Panicf("Failed to look up object Act: %d, Type: %d, Id: %d", act, typ, id) + } + return object +} + +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] + } + return nil +} + +func init() { + indexedObjects = indexObjects(objectLookups) +} + +func indexObjects(objects []ObjectLookupRecord) [][][]*ObjectLookupRecord { + // Allocating 6 to allow Acts 1-5 without requiring a -1 at every read. + indexedObjects = make([][][]*ObjectLookupRecord, 6) + for i, _ := range objects { + record := &objects[i] + if indexedObjects[record.Act] == nil { + // Likewise allocating 3 so a -1 isn't necessary. + indexedObjects[record.Act] = make([][]*ObjectLookupRecord, 3) + } + + if indexedObjects[record.Act][record.Type] == nil { + // For simplicity, allocating with length 1000 then filling the values in by index. + // If ids in the dictionary ever surpass 1000, raise this number. + indexedObjects[record.Act][record.Type] = make([]*ObjectLookupRecord, 1000) + } + + indexedObjects[record.Act][record.Type][record.Id] = record + } + + return indexedObjects +} + +// Indexed 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] +var indexedObjects [][][]*ObjectLookupRecord diff --git a/d2data/d2datadict/object_query_test.go b/d2data/d2datadict/object_query_test.go new file mode 100644 index 00000000..9aef5985 --- /dev/null +++ b/d2data/d2datadict/object_query_test.go @@ -0,0 +1,40 @@ +package d2datadict + +import ( + testify "github.com/stretchr/testify/assert" + "testing" +) + +// Verify the lookup returns the right object after indexing. +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"}, + } + + indexedTestObjects := indexObjects(testObjects) + + typeCharacter := int(ObjectTypeCharacter) + typeItem := int(ObjectTypeItem) + + assert.Equal("Act1CharId2", lookupObject(1, typeCharacter, 2, indexedTestObjects).Description) + assert.Equal("Act1ItemId0", lookupObject(1, typeItem, 0, indexedTestObjects).Description) + assert.Equal("Act2CharId3", lookupObject(2, typeCharacter, 3, indexedTestObjects).Description) + assert.Equal("Act2ItemId1", lookupObject(2, typeItem, 1, indexedTestObjects).Description) +} diff --git a/d2data/d2datadict/object_types.go b/d2data/d2datadict/object_types.go new file mode 100644 index 00000000..5df5f5c1 --- /dev/null +++ b/d2data/d2datadict/object_types.go @@ -0,0 +1,35 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type ObjectTypeRecord struct { + Name string + Token string +} + +var ObjectTypes []ObjectTypeRecord + +func LoadObjectTypes(fileProvider d2interface.FileProvider) { + objectTypeData := fileProvider.LoadFile(d2resource.ObjectType) + streamReader := d2common.CreateStreamReader(objectTypeData) + count := streamReader.GetInt32() + ObjectTypes = make([]ObjectTypeRecord, count) + for i := range ObjectTypes { + nameBytes, _ := streamReader.ReadBytes(32) + tokenBytes, _ := streamReader.ReadBytes(20) + ObjectTypes[i] = ObjectTypeRecord{ + Name: strings.TrimSpace(strings.ReplaceAll(string(nameBytes), string(0), "")), + Token: strings.TrimSpace(strings.ReplaceAll(string(tokenBytes), string(0), "")), + } + } + log.Printf("Loaded %d object types", len(ObjectTypes)) +} diff --git a/d2data/d2datadict/objects.go b/d2data/d2datadict/objects.go new file mode 100644 index 00000000..f9c8b54a --- /dev/null +++ b/d2data/d2datadict/objects.go @@ -0,0 +1,357 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +// An ObjectRecord represents the settings for one type of object from objects.txt +type ObjectRecord struct { + 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 + + SizeX int + SizeY int + + NTgtFX int // unknown + NTgtFY int // unknown + 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 + + 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: + // 1 = shrine + // 2 = obelisk + // 4 = portal + // 8 = container + // 16 = arcane sanctuary gateway + // 32 = well + // 64 = waypoint + // 128 = secret jails door + + XSpace int // unknown + YSpace int + + 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 + + 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? + + Left int // unknown, clickable bounding box? + Top int + Width int + Height int + + OperateFn int // what function is called when the player clicks on the object + // (todo: we should enumerate all the functions somewhere, but probably not here + // b/c it's a very long list) + PopulateFn int // what function is used to spawn this object? + // (see above todo) + InitFn int // what function is run when the object is initialized? + // (see above todo) + 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 +} + +// CreateObjectRecord parses a row from objects.txt into an object record +func createObjectRecord(props []string) ObjectRecord { + i := -1 + inc := func() int { + i++ + return i + } + result := ObjectRecord{ + Name: props[inc()], + Description: props[inc()], + Id: dh.StringToInt(props[inc()]), + Token: props[inc()], + + SpawnMax: dh.StringToInt(props[inc()]), + Selectable: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + TrapProbability: dh.StringToInt(props[inc()]), + + SizeX: dh.StringToInt(props[inc()]), + SizeY: dh.StringToInt(props[inc()]), + + NTgtFX: dh.StringToInt(props[inc()]), + NTgtFY: dh.StringToInt(props[inc()]), + NTgtBX: dh.StringToInt(props[inc()]), + NTgtBY: dh.StringToInt(props[inc()]), + + FrameCount: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + FrameDelta: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + CycleAnimation: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + LightDiameter: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + BlocksLight: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + HasCollision: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + IsAttackable: dh.StringToUint8(props[inc()]) == 1, + StartFrame: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + + EnvEffect: dh.StringToUint8(props[inc()]) == 1, + IsDoor: dh.StringToUint8(props[inc()]) == 1, + BlockVisibility: dh.StringToUint8(props[inc()]) == 1, + Orientation: dh.StringToInt(props[inc()]), + Trans: dh.StringToInt(props[inc()]), + + OrderFlag: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + PreOperate: dh.StringToUint8(props[inc()]) == 1, + HasAnimationMode: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + + XOffset: dh.StringToInt(props[inc()]), + YOffset: dh.StringToInt(props[inc()]), + Draw: dh.StringToUint8(props[inc()]) == 1, + + LightRed: dh.StringToUint8(props[inc()]), + LightGreen: dh.StringToUint8(props[inc()]), + LightBlue: dh.StringToUint8(props[inc()]), + + SelHD: dh.StringToUint8(props[inc()]) == 1, + SelTR: dh.StringToUint8(props[inc()]) == 1, + SelLG: dh.StringToUint8(props[inc()]) == 1, + SelRA: dh.StringToUint8(props[inc()]) == 1, + SelLA: dh.StringToUint8(props[inc()]) == 1, + SelRH: dh.StringToUint8(props[inc()]) == 1, + SelLH: dh.StringToUint8(props[inc()]) == 1, + SelSH: dh.StringToUint8(props[inc()]) == 1, + SelS: [8]bool{ + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + dh.StringToUint8(props[inc()]) == 1, + }, + + TotalPieces: dh.StringToInt(props[inc()]), + SubClass: dh.StringToInt(props[inc()]), + + XSpace: dh.StringToInt(props[inc()]), + YSpace: dh.StringToInt(props[inc()]), + + NameOffset: dh.StringToInt(props[inc()]), + + MonsterOk: dh.StringToUint8(props[inc()]) == 1, + OperateRange: dh.StringToInt(props[inc()]), + ShrineFunction: dh.StringToInt(props[inc()]), + Restore: dh.StringToUint8(props[inc()]) == 1, + + Parm: [8]int{ + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + dh.StringToInt(props[inc()]), + }, + Act: dh.StringToInt(props[inc()]), + Lockable: dh.StringToUint8(props[inc()]) == 1, + Gore: dh.StringToUint8(props[inc()]) == 1, + Sync: dh.StringToUint8(props[inc()]) == 1, + Flicker: dh.StringToUint8(props[inc()]) == 1, + Damage: dh.StringToInt(props[inc()]), + Beta: dh.StringToUint8(props[inc()]) == 1, + Overlay: dh.StringToUint8(props[inc()]) == 1, + CollisionSubst: dh.StringToUint8(props[inc()]) == 1, + + Left: dh.StringToInt(props[inc()]), + Top: dh.StringToInt(props[inc()]), + Width: dh.StringToInt(props[inc()]), + Height: dh.StringToInt(props[inc()]), + + OperateFn: dh.StringToInt(props[inc()]), + PopulateFn: dh.StringToInt(props[inc()]), + InitFn: dh.StringToInt(props[inc()]), + ClientFn: dh.StringToInt(props[inc()]), + + RestoreVirgins: dh.StringToUint8(props[inc()]) == 1, + BlockMissile: dh.StringToUint8(props[inc()]) == 1, + DrawUnder: dh.StringToUint8(props[inc()]) == 1, + OpenWarp: dh.StringToUint8(props[inc()]) == 1, + + AutoMap: dh.StringToInt(props[inc()]), + } + return result +} + +var Objects map[int]*ObjectRecord + +func LoadObjects(fileProvider d2interface.FileProvider) { + Objects = make(map[int]*ObjectRecord) + data := strings.Split(string(fileProvider.LoadFile(d2resource.ObjectDetails)), "\r\n")[1:] + for _, line := range data { + if len(line) == 0 { + continue + } + props := strings.Split(line, "\t") + if props[2] == "" { + continue // skip a line that doesn't have an id + } + rec := createObjectRecord(props) + Objects[rec.Id] = &rec + } + log.Printf("Loaded %d objects", len(Objects)) +} diff --git a/d2data/d2datadict/palette.go b/d2data/d2datadict/palette.go new file mode 100644 index 00000000..499fceff --- /dev/null +++ b/d2data/d2datadict/palette.go @@ -0,0 +1,50 @@ +package d2datadict + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" +) + +// PaletteRGB represents a color in a palette +type PaletteRGB struct { + R, G, B uint8 +} + +// PaletteType represents a palette +type PaletteRec struct { + Name d2enum.PaletteType + Colors [256]PaletteRGB +} + +var Palettes map[d2enum.PaletteType]PaletteRec + +// CreatePalette creates a palette +func CreatePalette(name d2enum.PaletteType, data []byte) PaletteRec { + result := PaletteRec{Name: name} + + for i := 0; i <= 255; i++ { + result.Colors[i] = PaletteRGB{ + B: data[i*3], + G: data[(i*3)+1], + R: data[(i*3)+2], + } + } + return result +} + +func LoadPalettes(mpqFiles map[string]string, fileProvider d2interface.FileProvider) { + Palettes = make(map[d2enum.PaletteType]PaletteRec) + for _, pal := range []string{ + "act1", "act2", "act3", "act4", "act5", "endgame", "endgame2", "fechar", "loading", + "menu0", "menu1", "menu2", "menu3", "menu4", "sky", "static", "trademark", "units", + } { + filePath := `data\global\palette\` + pal + `\pal.dat` + paletteName := d2enum.PaletteType(pal) + palette := CreatePalette(paletteName, fileProvider.LoadFile(filePath)) + Palettes[paletteName] = palette + } + log.Printf("Loaded %d palettes", len(Palettes)) +} diff --git a/d2data/d2datadict/sounds.go b/d2data/d2datadict/sounds.go new file mode 100644 index 00000000..e6f6a3fc --- /dev/null +++ b/d2data/d2datadict/sounds.go @@ -0,0 +1,107 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +// SoundEntry represents a sound entry +type SoundEntry struct { + Handle string + Index int + FileName string + Volume byte + GroupSize uint8 + Loop bool + FadeIn uint8 + FadeOut uint8 + DeferInst uint8 + StopInst uint8 + Duration uint8 + Compound int8 + Reverb bool + Falloff uint8 + Cache uint8 + AsyncOnly bool + Priority uint8 + Stream uint8 + Stereo uint8 + Tracking uint8 + Solo uint8 + MusicVol uint8 + Block1 int + Block2 int + Block3 int +} + +// CreateSoundEntry creates a sound entry based on a sound row on sounds.txt +func createSoundEntry(soundLine string) SoundEntry { + props := strings.Split(soundLine, "\t") + i := -1 + inc := func() int { + i++ + return i + } + result := SoundEntry{ + Handle: props[inc()], + Index: dh.StringToInt(props[inc()]), + FileName: props[inc()], + Volume: dh.StringToUint8(props[inc()]), + GroupSize: dh.StringToUint8(props[inc()]), + Loop: dh.StringToUint8(props[inc()]) == 1, + FadeIn: dh.StringToUint8(props[inc()]), + FadeOut: dh.StringToUint8(props[inc()]), + DeferInst: dh.StringToUint8(props[inc()]), + StopInst: dh.StringToUint8(props[inc()]), + Duration: dh.StringToUint8(props[inc()]), + Compound: dh.StringToInt8(props[inc()]), + Reverb: dh.StringToUint8(props[inc()]) == 1, + Falloff: dh.StringToUint8(props[inc()]), + Cache: dh.StringToUint8(props[inc()]), + AsyncOnly: dh.StringToUint8(props[inc()]) == 1, + Priority: dh.StringToUint8(props[inc()]), + Stream: dh.StringToUint8(props[inc()]), + Stereo: dh.StringToUint8(props[inc()]), + Tracking: dh.StringToUint8(props[inc()]), + Solo: dh.StringToUint8(props[inc()]), + MusicVol: dh.StringToUint8(props[inc()]), + Block1: dh.StringToInt(props[inc()]), + Block2: dh.StringToInt(props[inc()]), + Block3: dh.StringToInt(props[inc()]), + } + return result +} + +var Sounds map[string]SoundEntry + +func LoadSounds(fileProvider d2interface.FileProvider) { + Sounds = make(map[string]SoundEntry) + soundData := strings.Split(string(fileProvider.LoadFile(d2resource.SoundSettings)), "\r\n")[1:] + for _, line := range soundData { + if len(line) == 0 { + continue + } + soundEntry := createSoundEntry(line) + soundEntry.FileName = "/data/global/sfx/" + strings.ReplaceAll(soundEntry.FileName, `\`, "/") + Sounds[soundEntry.Handle] = soundEntry + /* + // Use the following code to write out the values + f, err := os.OpenFile(`C:\Users\lunat\Desktop\D2\sounds.txt`, + os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) + if err != nil { + log.Println(err) + } + defer f.Close() + if _, err := f.WriteString("\n[" + soundEntry.Handle + "] " + soundEntry.FileName); err != nil { + log.Println(err) + } + */ + } + log.Printf("Loaded %d sound definitions", len(Sounds)) +} diff --git a/d2data/d2datadict/unique_items.go b/d2data/d2datadict/unique_items.go new file mode 100644 index 00000000..7500d2cb --- /dev/null +++ b/d2data/d2datadict/unique_items.go @@ -0,0 +1,139 @@ +package d2datadict + +import ( + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" + + dh "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type UniqueItemRecord struct { + Name string + Version int // 0 = classic pre 1.07, 1 = 1.07-1.11, 100 = expansion + Enabled bool // if false, this record won't be loaded (should always be true...) + Ladder bool // if true, can only be found on ladder and not in single player / tcp/ip + Rarity int // 1-255, higher is more common (ironically...) + NoLimit bool // if true, can drop more than once per game + // (if false, can only drop once per game; if it would drop, + // instead a rare item with enhanced durability drops) + + Level int // item's level, can only be dropped by monsters / recipes / vendors / objects of this level or higher + // otherwise they would drop a rare item with enhanced durability + RequiredLevel int // character must have this level to use this item + Code string // three letter code, points to a record in Weapons, Armor, or Misc + + TypeDescription string + UberDescription string + SingleCopy bool // if true, player can only hold one of these. can't trade it or pick it up + CostMultiplier int // base price is multiplied by this when sold, repaired or bought + CostAdd int // after multiplied by above, this much is added to the price + + CharacterGfxTransform string // palette shift applied to this items gfx when held and when + // on the ground (flippy). Points to a record in Colors.txt + InventoryGfxTransform string // palette shift applied to the inventory gfx + FlippyFile string // if non-empty, overrides the base item's dropped gfx + InventoryFile string // if non-empty, overrides the base item's inventory gfx + + DropSound string // if non-empty, overrides the base item's drop sound + DropSfxFrame int // if non-empty, overrides the base item's frame at which the drop sound plays + UseSound string // if non-empty, overrides the sound played when item is used + + Properties [12]UniqueItemProperty +} + +type UniqueItemProperty struct { + Property string + Parameter d2common.CalcString // depending on the property, this may be an int (usually), or a string + Min int + Max int +} + +func createUniqueItemRecord(r []string) UniqueItemRecord { + i := -1 + inc := func() int { + i++ + return i + } + result := UniqueItemRecord{ + Name: r[inc()], + Version: dh.StringToInt(dh.EmptyToZero(r[inc()])), + Enabled: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + + Ladder: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + Rarity: dh.StringToInt(dh.EmptyToZero(r[inc()])), + NoLimit: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + + Level: dh.StringToInt(dh.EmptyToZero(r[inc()])), + RequiredLevel: dh.StringToInt(dh.EmptyToZero(r[inc()])), + Code: r[inc()], + + TypeDescription: r[inc()], + UberDescription: r[inc()], + SingleCopy: dh.StringToInt(dh.EmptyToZero(r[inc()])) == 1, + CostMultiplier: dh.StringToInt(dh.EmptyToZero(r[inc()])), + CostAdd: dh.StringToInt(dh.EmptyToZero(r[inc()])), + + CharacterGfxTransform: r[inc()], + InventoryGfxTransform: r[inc()], + FlippyFile: r[inc()], + InventoryFile: r[inc()], + + DropSound: r[inc()], + DropSfxFrame: dh.StringToInt(dh.EmptyToZero(r[inc()])), + UseSound: r[inc()], + + Properties: [12]UniqueItemProperty{ + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + createUniqueItemProperty(&r, inc), + }, + } + return result +} + +func createUniqueItemProperty(r *[]string, inc func() int) UniqueItemProperty { + result := UniqueItemProperty{ + Property: (*r)[inc()], + Parameter: d2common.CalcString((*r)[inc()]), + Min: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + Max: dh.StringToInt(dh.EmptyToZero((*r)[inc()])), + } + return result +} + +var UniqueItems map[string]*UniqueItemRecord + +func LoadUniqueItems(fileProvider d2interface.FileProvider) { + UniqueItems = make(map[string]*UniqueItemRecord) + data := strings.Split(string(fileProvider.LoadFile(d2resource.UniqueItems)), "\r\n")[1:] + for _, line := range data { + if len(line) == 0 { + continue + } + r := strings.Split(line, "\t") + // skip rows that are not enabled + if r[2] != "1" { + continue + } + rec := createUniqueItemRecord(r) + UniqueItems[rec.Code] = &rec + } + log.Printf("Loaded %d unique items", len(UniqueItems)) +} diff --git a/d2data/d2datadict/weapons.go b/d2data/d2datadict/weapons.go new file mode 100644 index 00000000..22fc08ac --- /dev/null +++ b/d2data/d2datadict/weapons.go @@ -0,0 +1,18 @@ +package d2datadict + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" + + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2interface" +) + +var Weapons map[string]*ItemCommonRecord + +func LoadWeapons(fileProvider d2interface.FileProvider) { + Weapons = *LoadCommonItems(fileProvider, d2resource.Weapons, d2enum.InventoryItemTypeWeapon) + log.Printf("Loaded %d weapons", len(Weapons)) +} diff --git a/d2data/d2dc6/dc6.go b/d2data/d2dc6/dc6.go new file mode 100644 index 00000000..840326d7 --- /dev/null +++ b/d2data/d2dc6/dc6.go @@ -0,0 +1,136 @@ +package d2dc6 + +import ( + "encoding/binary" + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/go-restruct/restruct" +) + +type DC6File struct { + // Header + Version int32 `struct:"int32"` + Flags uint32 `struct:"uint32"` + Encoding uint32 `struct:"uint32"` + Termination []byte `struct:"[4]byte"` + Directions uint32 `struct:"uint32"` + FramesPerDirection uint32 `struct:"uint32"` + + FramePointers []uint32 `struct:"[]uint32,size=Directions*FramesPerDirection"` + Frames []*DC6Frame `struct-size:"Directions*FramesPerDirection"` + valid bool +} + +type DC6Header struct { + Version int32 `struct:"int32"` + Flags uint32 `struct:"uint32"` + Encoding uint32 `struct:"uint32"` + Termination []byte `struct:"[4]byte"` + Directions int32 `struct:"int32"` + FramesPerDirection int32 `struct:"int32"` +} + +type DC6FrameHeader struct { + Flipped int32 `struct:"int32"` + Width int32 `struct:"int32"` + Height int32 `struct:"int32"` + OffsetX int32 `struct:"int32"` + OffsetY int32 `struct:"int32"` + Unknown uint32 `struct:"uint32"` + NextBlock uint32 `struct:"uint32"` + Length uint32 `struct:"uint32"` +} + +type DC6Frame struct { + Flipped uint32 `struct:"uint32"` + Width uint32 `struct:"uint32"` + Height uint32 `struct:"uint32"` + OffsetX int32 `struct:"int32"` + OffsetY int32 `struct:"int32"` + Unknown uint32 `struct:"uint32"` + NextBlock uint32 `struct:"uint32"` + Length uint32 `struct:"uint32,sizeof=FrameData"` + FrameData []byte + Terminator []byte `struct:"[3]byte"` + + colorData []byte + palette d2datadict.PaletteRec + valid bool +} + +func (frame *DC6Frame) ColorData() []byte { + if frame.colorData == nil { + frame.completeLoad() + } + + return frame.colorData +} + +func (frame *DC6Frame) completeLoad() { + frame.valid = true + + indexData := make([]int16, frame.Width*frame.Height) + for fi := range indexData { + indexData[fi] = -1 + } + + x := uint32(0) + y := frame.Height - 1 + dataPointer := 0 + for { + b := frame.FrameData[dataPointer] + dataPointer++ + if b == 0x80 { + if y == 0 { + break + } + y-- + x = 0 + } else if (b & 0x80) > 0 { + transparentPixels := b & 0x7F + for ti := byte(0); ti < transparentPixels; ti++ { + indexData[x+(y*frame.Width)+uint32(ti)] = -1 + } + x += uint32(transparentPixels) + } else { + for bi := 0; bi < int(b); bi++ { + indexData[x+(y*frame.Width)+uint32(bi)] = int16(frame.FrameData[dataPointer]) + dataPointer++ + } + x += uint32(b) + } + } + + // Probably don't need this data again + frame.FrameData = nil + + frame.colorData = make([]byte, int(frame.Width*frame.Height)*4) + for i := uint32(0); i < frame.Width*frame.Height; i++ { + if indexData[i] < 1 { // TODO: Is this == -1 or < 1? + continue + } + frame.colorData[i*4] = frame.palette.Colors[indexData[i]].R + frame.colorData[(i*4)+1] = frame.palette.Colors[indexData[i]].G + frame.colorData[(i*4)+2] = frame.palette.Colors[indexData[i]].B + frame.colorData[(i*4)+3] = 0xFF + } +} + +// LoadDC6 uses restruct to read the binary dc6 data into structs then parses image data from the frame data. +func LoadDC6(data []byte, palette d2datadict.PaletteRec) (DC6File, error) { + result := DC6File{valid: true} + + restruct.EnableExprBeta() + err := restruct.Unpack(data, binary.LittleEndian, &result) + if err != nil { + result.valid = false + log.Printf("failed to read dc6: %v", err) + } + + for _, frame := range result.Frames { + frame.palette = palette + } + + return result, err +} diff --git a/d2data/d2dc6/dc6.ksy b/d2data/d2dc6/dc6.ksy new file mode 100644 index 00000000..96e12939 --- /dev/null +++ b/d2data/d2dc6/dc6.ksy @@ -0,0 +1,73 @@ +meta: + id: dc6 + title: Diablo CEL 6 + application: Diablo II + file-extension: dc6 + license: MIT + ks-version: 0.7 + encoding: ASCII + endian: le +seq: + - id: dc6 + type: file +types: + file: + seq: + - id: header + type: file_header + - id: frame_pointers + type: u4 + repeat: expr + repeat-expr: header.directions * header.frames_per_dir + - id: frames + type: frame + repeat: expr + repeat-expr: header.directions * header.frames_per_dir + file_header: + seq: + - id: version + type: s4 + - id: flags + type: u4 + enum: flags + - id: encoding + type: u4 + - id: termination + size: 4 + - id: directions + type: s4 + - id: frames_per_dir + type: s4 + enums: + flags: + 1: celfile_serialised + 4: celfile_24bit + frame: + seq: + - id: header + type: frame_header + - id: block + type: u1 + repeat: expr + repeat-expr: header.length + - id: terminator + size: 3 + types: + frame_header: + seq: + - id: flipped + type: s4 + - id: width + type: s4 + - id: height + type: s4 + - id: offset_x + type: s4 + - id: offset_y + type: s4 + - id: unknown + type: u4 + - id: next_block + type: s4 + - id: length + type: s4 diff --git a/d2data/d2dcc/common_data.go b/d2data/d2dcc/common_data.go new file mode 100644 index 00000000..40bcba4f --- /dev/null +++ b/d2data/d2dcc/common_data.go @@ -0,0 +1,11 @@ +package d2dcc + +var crazyBitTable = []byte{0, 1, 2, 4, 6, 8, 10, 12, 14, 16, 20, 24, 26, 28, 30, 32} +var pixelMaskLookup = []int{0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4} +var CofToDir4 = []int{0, 1, 2, 3} +var CofToDir8 = []int{4, 0, 5, 1, 6, 2, 7, 3} +var CofToDir16 = []int{4, 8, 0, 9, 5, 10, 1, 11, 6, 12, 2, 13, 7, 14, 3, 15} +var CofToDir32 = []int{ + 4, 16, 8, 17, 0, 18, 9, 19, 5, 20, 10, 21, 1, 22, 11, 23, + 6, 24, 12, 25, 2, 26, 13, 27, 7, 28, 14, 29, 3, 30, 15, 31, +} diff --git a/d2data/d2dcc/dcc.go b/d2data/d2dcc/dcc.go new file mode 100644 index 00000000..6b78db9c --- /dev/null +++ b/d2data/d2dcc/dcc.go @@ -0,0 +1,40 @@ +package d2dcc + +import ( + "errors" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type DCC struct { + Signature int + Version int + NumberOfDirections int + FramesPerDirection int + Directions []DCCDirection +} + +func LoadDCC(fileData []byte) (*DCC, error) { + result := &DCC{} + var bm = d2common.CreateBitMuncher(fileData, 0) + result.Signature = int(bm.GetByte()) + if result.Signature != 0x74 { + return nil, errors.New("Signature expected to be 0x74 but it is not.") + } + result.Version = int(bm.GetByte()) + result.NumberOfDirections = int(bm.GetByte()) + result.FramesPerDirection = int(bm.GetInt32()) + if bm.GetInt32() != 1 { + return nil, errors.New("This value isn't 1. It has to be 1.") + } + bm.GetInt32() // TotalSizeCoded + directionOffsets := make([]int, result.NumberOfDirections) + for i := 0; i < result.NumberOfDirections; i++ { + directionOffsets[i] = int(bm.GetInt32()) + } + result.Directions = make([]DCCDirection, result.NumberOfDirections) + for i := 0; i < result.NumberOfDirections; i++ { + result.Directions[i] = CreateDCCDirection(d2common.CreateBitMuncher(fileData, directionOffsets[i]*8), *result) + } + return result, nil +} diff --git a/d2data/d2dcc/dcc_cell.go b/d2data/d2dcc/dcc_cell.go new file mode 100644 index 00000000..fba5aa6e --- /dev/null +++ b/d2data/d2dcc/dcc_cell.go @@ -0,0 +1,12 @@ +package d2dcc + +type DCCCell struct { + Width int + Height int + XOffset int + YOffset int + LastWidth int + LastHeight int + LastXOffset int + LastYOffset int +} diff --git a/d2data/d2dcc/dcc_direction.go b/d2data/d2dcc/dcc_direction.go new file mode 100644 index 00000000..edeb692f --- /dev/null +++ b/d2data/d2dcc/dcc_direction.go @@ -0,0 +1,361 @@ +package d2dcc + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type DCCDirection struct { + OutSizeCoded int + CompressionFlags int + Variable0Bits int + WidthBits int + HeightBits int + XOffsetBits int + YOffsetBits int + OptionalDataBits int + CodedBytesBits int + EqualCellsBitstreamSize int + PixelMaskBitstreamSize int + EncodingTypeBitsreamSize int + RawPixelCodesBitstreamSize int + Frames []*DCCDirectionFrame + PaletteEntries [256]byte + Box d2common.Rectangle + Cells []*DCCCell + PixelData []byte + HorizontalCellCount int + VerticalCellCount int + PixelBuffer []DCCPixelBufferEntry +} + +func CreateDCCDirection(bm *d2common.BitMuncher, file DCC) DCCDirection { + result := DCCDirection{} + result.OutSizeCoded = int(bm.GetUInt32()) + result.CompressionFlags = int(bm.GetBits(2)) + result.Variable0Bits = int(crazyBitTable[bm.GetBits(4)]) + result.WidthBits = int(crazyBitTable[bm.GetBits(4)]) + result.HeightBits = int(crazyBitTable[bm.GetBits(4)]) + result.XOffsetBits = int(crazyBitTable[bm.GetBits(4)]) + result.YOffsetBits = int(crazyBitTable[bm.GetBits(4)]) + result.OptionalDataBits = int(crazyBitTable[bm.GetBits(4)]) + result.CodedBytesBits = int(crazyBitTable[bm.GetBits(4)]) + result.Frames = make([]*DCCDirectionFrame, file.FramesPerDirection) + minx := 100000 + miny := 100000 + maxx := -100000 + maxy := -100000 + // Load the frame headers + for frameIdx := 0; frameIdx < file.FramesPerDirection; frameIdx++ { + result.Frames[frameIdx] = CreateDCCDirectionFrame(bm, result) + minx = int(d2helper.MinInt32(int32(result.Frames[frameIdx].Box.Left), int32(minx))) + miny = int(d2helper.MinInt32(int32(result.Frames[frameIdx].Box.Top), int32(miny))) + maxx = int(d2helper.MaxInt32(int32(result.Frames[frameIdx].Box.Right()), int32(maxx))) + maxy = int(d2helper.MaxInt32(int32(result.Frames[frameIdx].Box.Bottom()), int32(maxy))) + } + result.Box = d2common.Rectangle{minx, miny, (maxx - minx), (maxy - miny)} + if result.OptionalDataBits > 0 { + log.Panic("Optional bits in DCC data is not currently supported.") + } + if (result.CompressionFlags & 0x2) > 0 { + result.EqualCellsBitstreamSize = int(bm.GetBits(20)) + } + result.PixelMaskBitstreamSize = int(bm.GetBits(20)) + if (result.CompressionFlags & 0x1) > 0 { + result.EncodingTypeBitsreamSize = int(bm.GetBits(20)) + result.RawPixelCodesBitstreamSize = int(bm.GetBits(20)) + } + // PixelValuesKey + paletteEntryCount := 0 + for i := 0; i < 256; i++ { + valid := bm.GetBit() != 0 + if valid { + result.PaletteEntries[paletteEntryCount] = byte(i) + paletteEntryCount++ + } + } + // HERE BE GIANTS: + // Because of the way this thing mashes bits together, BIT offset matters + // here. For example, if you are on byte offset 3, bit offset 6, and + // the EqualCellsBitstreamSize is 20 bytes, then the next bit stream + // will be located at byte 23, bit offset 6! + equalCellsBitstream := d2common.CopyBitMuncher(bm) + bm.SkipBits(result.EqualCellsBitstreamSize) + pixelMaskBitstream := d2common.CopyBitMuncher(bm) + bm.SkipBits(result.PixelMaskBitstreamSize) + encodingTypeBitsream := d2common.CopyBitMuncher(bm) + bm.SkipBits(result.EncodingTypeBitsreamSize) + rawPixelCodesBitstream := d2common.CopyBitMuncher(bm) + bm.SkipBits(result.RawPixelCodesBitstreamSize) + pixelCodeandDisplacement := d2common.CopyBitMuncher(bm) + // Calculate the cells for the direction + result.CalculateCells() + // Calculate the cells for each of the frames + for _, frame := range result.Frames { + frame.CalculateCells(result) + } + // Fill in the pixel buffer + result.FillPixelBuffer(pixelCodeandDisplacement, equalCellsBitstream, pixelMaskBitstream, encodingTypeBitsream, rawPixelCodesBitstream) + // Generate the actual frame pixel data + result.GenerateFrames(pixelCodeandDisplacement) + result.PixelBuffer = nil + // Verify that everything we expected to read was actually read (sanity check)... + if equalCellsBitstream.BitsRead != result.EqualCellsBitstreamSize { + log.Panic("Did not read the correct number of bits!") + } + if pixelMaskBitstream.BitsRead != result.PixelMaskBitstreamSize { + log.Panic("Did not read the correct number of bits!") + } + if encodingTypeBitsream.BitsRead != result.EncodingTypeBitsreamSize { + log.Panic("Did not read the correct number of bits!") + } + if rawPixelCodesBitstream.BitsRead != result.RawPixelCodesBitstreamSize { + log.Panic("Did not read the correct number of bits!") + } + bm.SkipBits(pixelCodeandDisplacement.BitsRead) + return result +} + +func (v *DCCDirection) GenerateFrames(pcd *d2common.BitMuncher) { + pbIdx := 0 + for _, cell := range v.Cells { + cell.LastWidth = -1 + cell.LastHeight = -1 + } + v.PixelData = make([]byte, v.Box.Width*v.Box.Height) + frameIndex := -1 + for _, frame := range v.Frames { + frameIndex++ + frame.PixelData = make([]byte, v.Box.Width*v.Box.Height) + c := -1 + for _, cell := range frame.Cells { + c++ + cellX := cell.XOffset / 4 + cellY := cell.YOffset / 4 + cellIndex := cellX + (cellY * v.HorizontalCellCount) + bufferCell := v.Cells[cellIndex] + pbe := v.PixelBuffer[pbIdx] + if (pbe.Frame != frameIndex) || (pbe.FrameCellIndex != c) { + // This buffer cell has an EqualCell bit set to 1, so copy the frame cell or clear it + if (cell.Width != bufferCell.LastWidth) || (cell.Height != bufferCell.LastHeight) { + // Different sizes + /// TODO: Clear the pixels of the frame cell + for y := 0; y < cell.Height; y++ { + for x := 0; x < cell.Width; x++ { + v.PixelData[x+cell.XOffset+((y+cell.YOffset)*v.Box.Width)] = 0 + } + } + } else { + // Same sizes + // Copy the old frame cell into the new position + for fy := 0; fy < cell.Height; fy++ { + for fx := 0; fx < cell.Width; fx++ { + // Frame (buff.lastx, buff.lasty) -> Frame (cell.offx, cell.offy) + // Cell (0, 0,) -> + // blit(dir->bmp, dir->bmp, buff_cell->last_x0, buff_cell->last_y0, cell->x0, cell->y0, cell->w, cell->h ); + v.PixelData[fx+cell.XOffset+((fy+cell.YOffset)*v.Box.Width)] = v.PixelData[fx+bufferCell.LastXOffset+((fy+bufferCell.LastYOffset)*v.Box.Width)] + } + } + // Copy it again into the final frame image + for fy := 0; fy < cell.Height; fy++ { + for fx := 0; fx < cell.Width; fx++ { + // blit(cell->bmp, frm_bmp, 0, 0, cell->x0, cell->y0, cell->w, cell->h ); + frame.PixelData[fx+cell.XOffset+((fy+cell.YOffset)*v.Box.Width)] = v.PixelData[cell.XOffset+fx+((cell.YOffset+fy)*v.Box.Width)] + } + } + } + } else { + if pbe.Value[0] == pbe.Value[1] { + // Clear the frame + //cell.PixelData = new byte[cell.Width * cell.Height]; + for y := 0; y < cell.Height; y++ { + for x := 0; x < cell.Width; x++ { + v.PixelData[x+cell.XOffset+((y+cell.YOffset)*v.Box.Width)] = pbe.Value[0] + } + } + } else { + // Fill the frame cell with the pixels + bitsToRead := 1 + if pbe.Value[1] != pbe.Value[2] { + bitsToRead = 2 + } + for y := 0; y < cell.Height; y++ { + for x := 0; x < cell.Width; x++ { + paletteIndex := pcd.GetBits(bitsToRead) + v.PixelData[x+cell.XOffset+((y+cell.YOffset)*v.Box.Width)] = pbe.Value[paletteIndex] + } + } + } + // Copy the frame cell into the frame + for fy := 0; fy < cell.Height; fy++ { + for fx := 0; fx < cell.Width; fx++ { + //blit(cell->bmp, frm_bmp, 0, 0, cell->x0, cell->y0, cell->w, cell->h ); + frame.PixelData[fx+cell.XOffset+((fy+cell.YOffset)*v.Box.Width)] = v.PixelData[fx+cell.XOffset+((fy+cell.YOffset)*v.Box.Width)] + } + } + pbIdx++ + } + bufferCell.LastWidth = cell.Width + bufferCell.LastHeight = cell.Height + bufferCell.LastXOffset = cell.XOffset + bufferCell.LastYOffset = cell.YOffset + } + // Free up the stuff we no longer need + frame.Cells = nil + } + v.Cells = nil + v.PixelData = nil + v.PixelBuffer = nil +} + +func (v *DCCDirection) FillPixelBuffer(pcd, ec, pm, et, rp *d2common.BitMuncher) { + lastPixel := uint32(0) + maxCellX := 0 + maxCellY := 0 + for _, frame := range v.Frames { + if frame == nil { + continue + } + maxCellX += frame.HorizontalCellCount + maxCellY += frame.VerticalCellCount + } + v.PixelBuffer = make([]DCCPixelBufferEntry, maxCellX*maxCellY) + for i := 0; i < maxCellX*maxCellY; i++ { + v.PixelBuffer[i].Frame = -1 + v.PixelBuffer[i].FrameCellIndex = -1 + } + cellBuffer := make([]*DCCPixelBufferEntry, v.HorizontalCellCount*v.VerticalCellCount) + frameIndex := -1 + pbIndex := -1 + pixelMask := uint32(0x00) + for _, frame := range v.Frames { + frameIndex++ + originCellX := (frame.Box.Left - v.Box.Left) / 4 + originCellY := (frame.Box.Top - v.Box.Top) / 4 + for cellY := 0; cellY < frame.VerticalCellCount; cellY++ { + currentCellY := cellY + originCellY + for cellX := 0; cellX < frame.HorizontalCellCount; cellX++ { + currentCell := originCellX + cellX + (currentCellY * v.HorizontalCellCount) + nextCell := false + tmp := 0 + if cellBuffer[currentCell] != nil { + if v.EqualCellsBitstreamSize > 0 { + tmp = int(ec.GetBit()) + } else { + tmp = 0 + } + if tmp == 0 { + pixelMask = pm.GetBits(4) + } else { + nextCell = true + } + } else { + pixelMask = 0x0F + } + if nextCell { + continue + } + // Decode the pixels + var pixelStack [4]uint32 + lastPixel = 0 + numberOfPixelBits := pixelMaskLookup[pixelMask] + encodingType := 0 + if (numberOfPixelBits != 0) && (v.EncodingTypeBitsreamSize > 0) { + encodingType = int(et.GetBit()) + } else { + encodingType = 0 + } + decodedPixel := 0 + for i := 0; i < numberOfPixelBits; i++ { + if encodingType != 0 { + pixelStack[i] = rp.GetBits(8) + } else { + pixelStack[i] = lastPixel + pixelDisplacement := pcd.GetBits(4) + pixelStack[i] += pixelDisplacement + for pixelDisplacement == 15 { + pixelDisplacement = pcd.GetBits(4) + pixelStack[i] += pixelDisplacement + } + } + if pixelStack[i] == lastPixel { + pixelStack[i] = 0 + break + } else { + lastPixel = pixelStack[i] + decodedPixel++ + } + } + oldEntry := cellBuffer[currentCell] + pbIndex++ + curIdx := decodedPixel - 1 + for i := 0; i < 4; i++ { + if (pixelMask & (1 << uint(i))) != 0 { + if curIdx >= 0 { + v.PixelBuffer[pbIndex].Value[i] = byte(pixelStack[curIdx]) + curIdx-- + } else { + v.PixelBuffer[pbIndex].Value[i] = 0 + } + } else { + v.PixelBuffer[pbIndex].Value[i] = oldEntry.Value[i] + } + } + cellBuffer[currentCell] = &v.PixelBuffer[pbIndex] + v.PixelBuffer[pbIndex].Frame = frameIndex + v.PixelBuffer[pbIndex].FrameCellIndex = cellX + (cellY * frame.HorizontalCellCount) + } + } + } + cellBuffer = nil + // Convert the palette entry index into actual palette entries + for i := 0; i <= pbIndex; i++ { + for x := 0; x < 4; x++ { + v.PixelBuffer[i].Value[x] = v.PaletteEntries[v.PixelBuffer[i].Value[x]] + } + } +} + +func (v *DCCDirection) CalculateCells() { + // Calculate the number of vertical and horizontal cells we need + v.HorizontalCellCount = 1 + (v.Box.Width-1)/4 + v.VerticalCellCount = 1 + (v.Box.Height-1)/4 + // Calculate the cell widths + cellWidths := make([]int, v.HorizontalCellCount) + if v.HorizontalCellCount == 1 { + cellWidths[0] = v.Box.Width + } else { + for i := 0; i < v.HorizontalCellCount-1; i++ { + cellWidths[i] = 4 + } + cellWidths[v.HorizontalCellCount-1] = v.Box.Width - (4 * (v.HorizontalCellCount - 1)) + } + // Calculate the cell heights + cellHeights := make([]int, v.VerticalCellCount) + if v.VerticalCellCount == 1 { + cellHeights[0] = v.Box.Height + } else { + for i := 0; i < v.VerticalCellCount-1; i++ { + cellHeights[i] = 4 + } + cellHeights[v.VerticalCellCount-1] = v.Box.Height - (4 * (v.VerticalCellCount - 1)) + } + // Set the cell widths and heights in the cell buffer + v.Cells = make([]*DCCCell, v.VerticalCellCount*v.HorizontalCellCount) + yOffset := 0 + for y := 0; y < v.VerticalCellCount; y++ { + xOffset := 0 + for x := 0; x < v.HorizontalCellCount; x++ { + v.Cells[x+(y*v.HorizontalCellCount)] = &DCCCell{ + Width: cellWidths[x], + Height: cellHeights[y], + XOffset: xOffset, + YOffset: yOffset, + } + xOffset += 4 + } + yOffset += 4 + } +} diff --git a/d2data/d2dcc/dcc_direction_frame.go b/d2data/d2dcc/dcc_direction_frame.go new file mode 100644 index 00000000..7f5d01a7 --- /dev/null +++ b/d2data/d2dcc/dcc_direction_frame.go @@ -0,0 +1,108 @@ +package d2dcc + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type DCCDirectionFrame struct { + Width int + Height int + XOffset int + YOffset int + NumberOfOptionalBytes int + NumberOfCodedBytes int + FrameIsBottomUp bool + Box d2common.Rectangle + Cells []DCCCell + PixelData []byte + HorizontalCellCount int + VerticalCellCount int + valid bool +} + +func CreateDCCDirectionFrame(bits *d2common.BitMuncher, direction DCCDirection) *DCCDirectionFrame { + result := &DCCDirectionFrame{} + bits.GetBits(direction.Variable0Bits) // Variable0 + result.Width = int(bits.GetBits(direction.WidthBits)) + result.Height = int(bits.GetBits(direction.HeightBits)) + result.XOffset = bits.GetSignedBits(direction.XOffsetBits) + result.YOffset = bits.GetSignedBits(direction.YOffsetBits) + result.NumberOfOptionalBytes = int(bits.GetBits(direction.OptionalDataBits)) + result.NumberOfCodedBytes = int(bits.GetBits(direction.CodedBytesBits)) + result.FrameIsBottomUp = bits.GetBit() == 1 + if result.FrameIsBottomUp { + log.Panic("Bottom up frames are not implemented.") + } else { + result.Box = d2common.Rectangle{ + result.XOffset, + result.YOffset - result.Height + 1, + result.Width, + result.Height, + } + } + result.valid = true + return result +} + +func (v *DCCDirectionFrame) CalculateCells(direction DCCDirection) { + var w = 4 - ((v.Box.Left - direction.Box.Left) % 4) // Width of the first column (in pixels) + if (v.Width - w) <= 1 { + v.HorizontalCellCount = 1 + } else { + tmp := v.Width - w - 1 + v.HorizontalCellCount = 2 + (tmp / 4) + if (tmp % 4) == 0 { + v.HorizontalCellCount-- + } + } + h := 4 - ((v.Box.Top - direction.Box.Top) % 4) // Height of the first column (in pixels) + if (v.Height - h) <= 1 { + v.VerticalCellCount = 1 + } else { + tmp := v.Height - h - 1 + v.VerticalCellCount = 2 + (tmp / 4) + if (tmp % 4) == 0 { + v.VerticalCellCount-- + } + } + // Calculate the cell widths and heights + cellWidths := make([]int, v.HorizontalCellCount) + if v.HorizontalCellCount == 1 { + cellWidths[0] = v.Width + } else { + cellWidths[0] = w + for i := 1; i < (v.HorizontalCellCount - 1); i++ { + cellWidths[i] = 4 + } + cellWidths[v.HorizontalCellCount-1] = v.Width - w - (4 * (v.HorizontalCellCount - 2)) + } + + cellHeights := make([]int, v.VerticalCellCount) + if v.VerticalCellCount == 1 { + cellHeights[0] = v.Height + } else { + cellHeights[0] = h + for i := 1; i < (v.VerticalCellCount - 1); i++ { + cellHeights[i] = 4 + } + cellHeights[v.VerticalCellCount-1] = v.Height - h - (4 * (v.VerticalCellCount - 2)) + } + + v.Cells = make([]DCCCell, v.HorizontalCellCount*v.VerticalCellCount) + offsetY := v.Box.Top - direction.Box.Top + for y := 0; y < v.VerticalCellCount; y++ { + offsetX := v.Box.Left - direction.Box.Left + for x := 0; x < v.HorizontalCellCount; x++ { + v.Cells[x+(y*v.HorizontalCellCount)] = DCCCell{ + XOffset: offsetX, + YOffset: offsetY, + Width: cellWidths[x], + Height: cellHeights[y], + } + offsetX += cellWidths[x] + } + offsetY += cellHeights[y] + } +} diff --git a/d2data/d2dcc/dcc_pixel_buffer_entry.go b/d2data/d2dcc/dcc_pixel_buffer_entry.go new file mode 100644 index 00000000..3c4a0498 --- /dev/null +++ b/d2data/d2dcc/dcc_pixel_buffer_entry.go @@ -0,0 +1,7 @@ +package d2dcc + +type DCCPixelBufferEntry struct { + Value [4]byte + Frame int + FrameCellIndex int +} diff --git a/d2data/d2ds1/common_data.go b/d2data/d2ds1/common_data.go new file mode 100644 index 00000000..06a58a9d --- /dev/null +++ b/d2data/d2ds1/common_data.go @@ -0,0 +1,7 @@ +package d2ds1 + +var dirLookup = []int32{ + 0x00, 0x01, 0x02, 0x01, 0x02, 0x03, 0x03, 0x05, 0x05, 0x06, + 0x06, 0x07, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, + 0x0F, 0x10, 0x11, 0x12, 0x14, +} diff --git a/d2data/d2ds1/ds1.go b/d2data/d2ds1/ds1.go new file mode 100644 index 00000000..92e945db --- /dev/null +++ b/d2data/d2ds1/ds1.go @@ -0,0 +1,247 @@ +package d2ds1 + +import ( + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2data" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" +) + +type DS1 struct { + Version int32 // The version of the DS1 + Width int32 // Width of map, in # of tiles + Height int32 // Height of map, in # of tiles + Act int32 // Act, from 1 to 5. This tells which act table to use for the Objects list + SubstitutionType int32 // SubstitutionType (layer type): 0 if no layer, else type 1 or type 2 + Files []string // FilePtr table of file string pointers + NumberOfWalls int32 // WallNum number of wall & orientation layers used + NumberOfFloors int32 // number of floor layers used + NumberOfShadowLayers int32 // ShadowNum number of shadow layer used + NumberOfSubstitutionLayers int32 // SubstitutionNum number of substitution layer used + SubstitutionGroupsNum int32 // SubstitutionGroupsNum number of substitution groups, datas between objects & NPC paths + Objects []d2data.Object // Objects + Tiles [][]TileRecord + SubstitutionGroups []SubstitutionGroup +} + +func LoadDS1(fileData []byte) DS1 { + ds1 := DS1{ + NumberOfFloors: 1, + NumberOfWalls: 1, + NumberOfShadowLayers: 1, + NumberOfSubstitutionLayers: 0, + } + br := d2common.CreateStreamReader(fileData) + ds1.Version = br.GetInt32() + ds1.Width = br.GetInt32() + 1 + ds1.Height = br.GetInt32() + 1 + if ds1.Version >= 8 { + ds1.Act = d2helper.MinInt32(5, br.GetInt32()+1) + } + if ds1.Version >= 10 { + ds1.SubstitutionType = br.GetInt32() + if ds1.SubstitutionType == 1 || ds1.SubstitutionType == 2 { + ds1.NumberOfSubstitutionLayers = 1 + } + } + if ds1.Version >= 3 { + // These files reference things that don't exist anymore :-? + numberOfFiles := br.GetInt32() + ds1.Files = make([]string, numberOfFiles) + for i := 0; i < int(numberOfFiles); i++ { + ds1.Files[i] = "" + for { + ch := br.GetByte() + if ch == 0 { + break + } + ds1.Files[i] += string(ch) + } + } + } + if ds1.Version >= 9 && ds1.Version <= 13 { + // Skipping two dwords because they are "meaningless"? + br.SkipBytes(16) + } + if ds1.Version >= 4 { + ds1.NumberOfWalls = br.GetInt32() + if ds1.Version >= 16 { + ds1.NumberOfFloors = br.GetInt32() + } else { + ds1.NumberOfFloors = 1 + } + } + var layerStream []d2enum.LayerStreamType + if ds1.Version < 4 { + layerStream = []d2enum.LayerStreamType{ + d2enum.LayerStreamWall1, + d2enum.LayerStreamFloor1, + d2enum.LayerStreamOrientation1, + d2enum.LayerStreamSubstitute, + d2enum.LayerStreamShadow, + } + } else { + layerStream = make([]d2enum.LayerStreamType, (ds1.NumberOfWalls*2)+ds1.NumberOfFloors+ds1.NumberOfShadowLayers+ds1.NumberOfSubstitutionLayers) + layerIdx := 0 + for i := 0; i < int(ds1.NumberOfWalls); i++ { + layerStream[layerIdx] = d2enum.LayerStreamType(int(d2enum.LayerStreamWall1) + i) + layerStream[layerIdx+1] = d2enum.LayerStreamType(int(d2enum.LayerStreamOrientation1) + i) + layerIdx += 2 + } + for i := 0; i < int(ds1.NumberOfFloors); i++ { + layerStream[layerIdx] = d2enum.LayerStreamType(int(d2enum.LayerStreamFloor1) + i) + layerIdx++ + } + if ds1.NumberOfShadowLayers > 0 { + layerStream[layerIdx] = d2enum.LayerStreamShadow + layerIdx++ + } + if ds1.NumberOfSubstitutionLayers > 0 { + layerStream[layerIdx] = d2enum.LayerStreamSubstitute + layerIdx++ + } + } + ds1.Tiles = make([][]TileRecord, ds1.Height) + for y := range ds1.Tiles { + ds1.Tiles[y] = make([]TileRecord, ds1.Width) + for x := 0; x < int(ds1.Width); x++ { + ds1.Tiles[y][x].Walls = make([]WallRecord, ds1.NumberOfWalls) + ds1.Tiles[y][x].Floors = make([]FloorShadowRecord, ds1.NumberOfFloors) + ds1.Tiles[y][x].Shadows = make([]FloorShadowRecord, ds1.NumberOfShadowLayers) + ds1.Tiles[y][x].Substitutions = make([]SubstitutionRecord, ds1.NumberOfSubstitutionLayers) + } + } + for _, layerStreamType := range layerStream { + for y := 0; y < int(ds1.Height); y++ { + for x := 0; x < int(ds1.Width); x++ { + dw := br.GetUInt32() + switch layerStreamType { + case d2enum.LayerStreamWall1: + fallthrough + case d2enum.LayerStreamWall2: + fallthrough + case d2enum.LayerStreamWall3: + fallthrough + case d2enum.LayerStreamWall4: + wallIndex := int(layerStreamType) - int(d2enum.LayerStreamWall1) + ds1.Tiles[y][x].Walls[wallIndex].Prop1 = byte(dw & 0x000000FF) + ds1.Tiles[y][x].Walls[wallIndex].Sequence = byte((dw & 0x00003F00) >> 8) + ds1.Tiles[y][x].Walls[wallIndex].Unknown1 = byte((dw & 0x000FC000) >> 14) + ds1.Tiles[y][x].Walls[wallIndex].Style = byte((dw & 0x03F00000) >> 20) + ds1.Tiles[y][x].Walls[wallIndex].Unknown2 = byte((dw & 0x7C000000) >> 26) + ds1.Tiles[y][x].Walls[wallIndex].Hidden = byte((dw&0x80000000)>>31) > 0 + case d2enum.LayerStreamOrientation1: + fallthrough + case d2enum.LayerStreamOrientation2: + fallthrough + case d2enum.LayerStreamOrientation3: + fallthrough + case d2enum.LayerStreamOrientation4: + wallIndex := int(layerStreamType) - int(d2enum.LayerStreamOrientation1) + c := int32(dw & 0x000000FF) + if ds1.Version < 7 { + if c < 25 { + c = dirLookup[c] + } + } + ds1.Tiles[y][x].Walls[wallIndex].Type = d2enum.TileType(c) + ds1.Tiles[y][x].Walls[wallIndex].Zero = byte((dw & 0xFFFFFF00) >> 8) + case d2enum.LayerStreamFloor1: + fallthrough + case d2enum.LayerStreamFloor2: + floorIndex := int(layerStreamType) - int(d2enum.LayerStreamFloor1) + ds1.Tiles[y][x].Floors[floorIndex].Prop1 = byte(dw & 0x000000FF) + ds1.Tiles[y][x].Floors[floorIndex].Sequence = byte((dw & 0x00003F00) >> 8) + ds1.Tiles[y][x].Floors[floorIndex].Unknown1 = byte((dw & 0x000FC000) >> 14) + ds1.Tiles[y][x].Floors[floorIndex].Style = byte((dw & 0x03F00000) >> 20) + ds1.Tiles[y][x].Floors[floorIndex].Unknown2 = byte((dw & 0x7C000000) >> 26) + ds1.Tiles[y][x].Floors[floorIndex].Hidden = byte((dw&0x80000000)>>31) > 0 + case d2enum.LayerStreamShadow: + ds1.Tiles[y][x].Shadows[0].Prop1 = byte(dw & 0x000000FF) + ds1.Tiles[y][x].Shadows[0].Sequence = byte((dw & 0x00003F00) >> 8) + ds1.Tiles[y][x].Shadows[0].Unknown1 = byte((dw & 0x000FC000) >> 14) + ds1.Tiles[y][x].Shadows[0].Style = byte((dw & 0x03F00000) >> 20) + ds1.Tiles[y][x].Shadows[0].Unknown2 = byte((dw & 0x7C000000) >> 26) + ds1.Tiles[y][x].Shadows[0].Hidden = byte((dw&0x80000000)>>31) > 0 + case d2enum.LayerStreamSubstitute: + ds1.Tiles[y][x].Substitutions[0].Unknown = dw + } + } + } + } + if ds1.Version >= 2 { + numberOfObjects := br.GetInt32() + ds1.Objects = make([]d2data.Object, numberOfObjects) + for objIdx := 0; objIdx < int(numberOfObjects); objIdx++ { + newObject := d2data.Object{} + newObject.Type = br.GetInt32() + newObject.Id = br.GetInt32() + newObject.X = br.GetInt32() + newObject.Y = br.GetInt32() + newObject.Flags = br.GetInt32() + newObject.Lookup = d2datadict.LookupObject(int(ds1.Act), int(newObject.Type), int(newObject.Id)) + if newObject.Lookup != nil && newObject.Lookup.ObjectsTxtId != -1 { + newObject.ObjectInfo = d2datadict.Objects[newObject.Lookup.ObjectsTxtId] + } + ds1.Objects[objIdx] = newObject + } + } else { + ds1.Objects = make([]d2data.Object, 0) + } + if ds1.Version >= 12 && (ds1.SubstitutionType == 1 || ds1.SubstitutionType == 2) { + if ds1.Version >= 18 { + br.GetUInt32() + } + numberOfSubGroups := br.GetInt32() + ds1.SubstitutionGroups = make([]SubstitutionGroup, numberOfSubGroups) + for subIdx := 0; subIdx < int(numberOfSubGroups); subIdx++ { + newSub := SubstitutionGroup{} + newSub.TileX = br.GetInt32() + newSub.TileY = br.GetInt32() + newSub.WidthInTiles = br.GetInt32() + newSub.HeightInTiles = br.GetInt32() + newSub.Unknown = br.GetInt32() + + ds1.SubstitutionGroups[subIdx] = newSub + } + } else { + ds1.SubstitutionGroups = make([]SubstitutionGroup, 0) + } + if ds1.Version >= 14 { + numberOfNpcs := br.GetInt32() + for npcIdx := 0; npcIdx < int(numberOfNpcs); npcIdx++ { + numPaths := br.GetInt32() + npcX := br.GetInt32() + npcY := br.GetInt32() + objIdx := -1 + for idx, ds1Obj := range ds1.Objects { + if ds1Obj.X == npcX && ds1Obj.Y == npcY { + objIdx = idx + break + } + } + if objIdx > -1 { + if ds1.Objects[objIdx].Paths == nil { + ds1.Objects[objIdx].Paths = make([]d2common.Path, numPaths) + } + for pathIdx := 0; pathIdx < int(numPaths); pathIdx++ { + newPath := d2common.Path{} + newPath.X = br.GetInt32() + newPath.Y = br.GetInt32() + if ds1.Version >= 15 { + newPath.Action = br.GetInt32() + } + ds1.Objects[objIdx].Paths[pathIdx] = newPath + } + } else { + if ds1.Version >= 15 { + br.SkipBytes(int(numPaths) * 3) + } else { + br.SkipBytes(int(numPaths) * 2) + } + } + } + } + return ds1 +} diff --git a/d2data/d2ds1/floor_shadow_record.go b/d2data/d2ds1/floor_shadow_record.go new file mode 100644 index 00000000..d56076a9 --- /dev/null +++ b/d2data/d2ds1/floor_shadow_record.go @@ -0,0 +1,13 @@ +package d2ds1 + +type FloorShadowRecord struct { + Prop1 byte + Sequence byte + Unknown1 byte + Style byte + Unknown2 byte + Hidden bool + RandomIndex byte + Animated bool + YAdjust int +} diff --git a/d2data/d2ds1/substitution_group.go b/d2data/d2ds1/substitution_group.go new file mode 100644 index 00000000..7abadc7b --- /dev/null +++ b/d2data/d2ds1/substitution_group.go @@ -0,0 +1,9 @@ +package d2ds1 + +type SubstitutionGroup struct { + TileX int32 + TileY int32 + WidthInTiles int32 + HeightInTiles int32 + Unknown int32 +} diff --git a/d2data/d2ds1/substitution_record.go b/d2data/d2ds1/substitution_record.go new file mode 100644 index 00000000..4bc49aa5 --- /dev/null +++ b/d2data/d2ds1/substitution_record.go @@ -0,0 +1,5 @@ +package d2ds1 + +type SubstitutionRecord struct { + Unknown uint32 +} diff --git a/d2data/d2ds1/tilerecord.go b/d2data/d2ds1/tilerecord.go new file mode 100644 index 00000000..ec7798b0 --- /dev/null +++ b/d2data/d2ds1/tilerecord.go @@ -0,0 +1,8 @@ +package d2ds1 + +type TileRecord struct { + Floors []FloorShadowRecord + Walls []WallRecord + Shadows []FloorShadowRecord + Substitutions []SubstitutionRecord +} diff --git a/d2data/d2ds1/wallrecord.go b/d2data/d2ds1/wallrecord.go new file mode 100644 index 00000000..9b9b087b --- /dev/null +++ b/d2data/d2ds1/wallrecord.go @@ -0,0 +1,16 @@ +package d2ds1 + +import "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + +type WallRecord struct { + Type d2enum.TileType + Zero byte + Prop1 byte + Sequence byte + Unknown1 byte + Style byte + Unknown2 byte + Hidden bool + RandomIndex byte + YAdjust int +} diff --git a/d2data/d2dt1/block.go b/d2data/d2dt1/block.go new file mode 100644 index 00000000..7dfd3502 --- /dev/null +++ b/d2data/d2dt1/block.go @@ -0,0 +1,12 @@ +package d2dt1 + +type Block struct { + X int16 + Y int16 + GridX byte + GridY byte + Format BlockDataFormat + EncodedData []byte + Length int32 + FileOffset int32 +} diff --git a/d2data/d2dt1/dt1.go b/d2data/d2dt1/dt1.go new file mode 100644 index 00000000..8a2719a0 --- /dev/null +++ b/d2data/d2dt1/dt1.go @@ -0,0 +1,83 @@ +package d2dt1 + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +// https://d2mods.info/forum/viewtopic.php?t=65163 + +type DT1 struct { + Tiles []Tile +} + +type BlockDataFormat int16 + +const ( + BlockFormatRLE BlockDataFormat = 0 // Not 1 + BlockFormatIsometric BlockDataFormat = 1 +) + +func LoadDT1(fileData []byte) DT1 { + result := DT1{} + br := d2common.CreateStreamReader(fileData) + ver1 := br.GetInt32() + ver2 := br.GetInt32() + if ver1 != 7 || ver2 != 6 { + log.Panicf("Expected to have a version of 7.6, but got %d.%d instead", ver1, ver2) + } + br.SkipBytes(260) + numberOfTiles := br.GetInt32() + br.SetPosition(uint64(br.GetInt32())) + result.Tiles = make([]Tile, numberOfTiles) + for tileIdx := range result.Tiles { + newTile := Tile{} + newTile.Direction = br.GetInt32() + newTile.RoofHeight = br.GetInt16() + newTile.MaterialFlags = NewMaterialFlags(br.GetUInt16()) + newTile.Height = br.GetInt32() + newTile.Width = br.GetInt32() + br.SkipBytes(4) + newTile.Type = br.GetInt32() + newTile.Style = br.GetInt32() + newTile.Sequence = br.GetInt32() + newTile.RarityFrameIndex = br.GetInt32() + br.SkipBytes(4) + for i := range newTile.SubTileFlags { + newTile.SubTileFlags[i] = NewSubTileFlags(br.GetByte()) + } + br.SkipBytes(7) + newTile.blockHeaderPointer = br.GetInt32() + newTile.blockHeaderSize = br.GetInt32() + newTile.Blocks = make([]Block, br.GetInt32()) + br.SkipBytes(12) + result.Tiles[tileIdx] = newTile + } + for tileIdx, tile := range result.Tiles { + br.SetPosition(uint64(tile.blockHeaderPointer)) + for blockIdx := range tile.Blocks { + result.Tiles[tileIdx].Blocks[blockIdx].X = br.GetInt16() + result.Tiles[tileIdx].Blocks[blockIdx].Y = br.GetInt16() + br.SkipBytes(2) + result.Tiles[tileIdx].Blocks[blockIdx].GridX = br.GetByte() + result.Tiles[tileIdx].Blocks[blockIdx].GridY = br.GetByte() + formatValue := br.GetInt16() + if formatValue == 1 { + result.Tiles[tileIdx].Blocks[blockIdx].Format = BlockFormatIsometric + } else { + result.Tiles[tileIdx].Blocks[blockIdx].Format = BlockFormatRLE + } + result.Tiles[tileIdx].Blocks[blockIdx].Length = br.GetInt32() + br.SkipBytes(2) + result.Tiles[tileIdx].Blocks[blockIdx].FileOffset = br.GetInt32() + } + for blockIndex, block := range tile.Blocks { + br.SetPosition(uint64(tile.blockHeaderPointer + block.FileOffset)) + encodedData, _ := br.ReadBytes(int(block.Length)) + tile.Blocks[blockIndex].EncodedData = encodedData + } + + } + return result +} diff --git a/d2data/d2dt1/material.go b/d2data/d2dt1/material.go new file mode 100644 index 00000000..b1acd540 --- /dev/null +++ b/d2data/d2dt1/material.go @@ -0,0 +1,30 @@ +package d2dt1 + +// Lots of unknowns for now +type MaterialFlags struct { + Other bool + Water bool + WoodObject bool + InsideStone bool + OutsideStone bool + Dirt bool + Sand bool + Wood bool + Lava bool + Snow bool +} + +func NewMaterialFlags(data uint16) MaterialFlags { + return MaterialFlags{ + Other: data&0x0001 == 0x0001, + Water: data&0x0002 == 0x0002, + WoodObject: data&0x0004 == 0x0004, + InsideStone: data&0x0008 == 0x0008, + OutsideStone: data&0x0010 == 0x0010, + Dirt: data&0x0020 == 0x0020, + Sand: data&0x0040 == 0x0040, + Wood: data&0x0080 == 0x0080, + Lava: data&0x0100 == 0x0100, + Snow: data&0x0400 == 0x0400, + } +} diff --git a/d2data/d2dt1/subtile.go b/d2data/d2dt1/subtile.go new file mode 100644 index 00000000..1aa321c0 --- /dev/null +++ b/d2data/d2dt1/subtile.go @@ -0,0 +1,25 @@ +package d2dt1 + +type SubTileFlags struct { + BlockWalk bool + BlockLOS bool + BlockJump bool + BlockPlayerWalk bool + Unknown1 bool + BlockLight bool + Unknown2 bool + Unknown3 bool +} + +func NewSubTileFlags(data byte) SubTileFlags { + return SubTileFlags{ + BlockWalk: data & 1 == 1, + BlockLOS: data & 2 == 2, + BlockJump: data & 4 == 4, + BlockPlayerWalk: data & 8 == 8, + Unknown1: data & 16 == 16, + BlockLight: data & 32 == 32, + Unknown2: data & 64 == 64, + Unknown3: data & 128 == 128, + } +} diff --git a/d2data/d2dt1/subtile_test.go b/d2data/d2dt1/subtile_test.go new file mode 100644 index 00000000..222485dd --- /dev/null +++ b/d2data/d2dt1/subtile_test.go @@ -0,0 +1,24 @@ +package d2dt1 + +import ( + testify "github.com/stretchr/testify/assert" + "testing" +) + +func TestNewSubTile(t *testing.T) { + assert := testify.New(t) + data := []byte{1, 2, 4, 8, 16, 32, 64, 128} + + for i, b := range data { + tile := NewSubTileFlags(b) + assert.Equal(i == 0, tile.BlockWalk) + assert.Equal(i == 1, tile.BlockLOS) + assert.Equal(i == 2, tile.BlockJump) + assert.Equal(i == 3, tile.BlockPlayerWalk) + assert.Equal(i == 4, tile.Unknown1) + assert.Equal(i == 5, tile.BlockLight) + assert.Equal(i == 6, tile.Unknown2) + assert.Equal(i == 7, tile.Unknown3) + } + +} diff --git a/d2data/d2dt1/tile.go b/d2data/d2dt1/tile.go new file mode 100644 index 00000000..f4545e1c --- /dev/null +++ b/d2data/d2dt1/tile.go @@ -0,0 +1,17 @@ +package d2dt1 + +type Tile struct { + Direction int32 + RoofHeight int16 + MaterialFlags MaterialFlags + Height int32 + Width int32 + Type int32 + Style int32 + Sequence int32 + RarityFrameIndex int32 + SubTileFlags [25]SubTileFlags + blockHeaderPointer int32 + blockHeaderSize int32 + Blocks []Block +} diff --git a/d2data/d2mpq/crypto_buff.go b/d2data/d2mpq/crypto_buff.go new file mode 100644 index 00000000..36fbcb65 --- /dev/null +++ b/d2data/d2mpq/crypto_buff.go @@ -0,0 +1,20 @@ +package d2mpq + +// CryptoBuffer contains the crypto bytes for filename hashing +var CryptoBuffer [0x500]uint32 + +// InitializeCryptoBuffer initializes the crypto buffer +func InitializeCryptoBuffer() { + seed := uint32(0x00100001) + for index1 := 0; index1 < 0x100; index1++ { + index2 := index1 + for i := 0; i < 5; i++ { + seed = (seed*125 + 3) % 0x2AAAAB + temp1 := (seed & 0xFFFF) << 0x10 + seed = (seed*125 + 3) % 0x2AAAAB + temp2 := (seed & 0xFFFF) + CryptoBuffer[index2] = temp1 | temp2 + index2 += 0x100 + } + } +} diff --git a/d2data/d2mpq/hash_entry_map.go b/d2data/d2mpq/hash_entry_map.go new file mode 100644 index 00000000..95e2078f --- /dev/null +++ b/d2data/d2mpq/hash_entry_map.go @@ -0,0 +1,30 @@ +package d2mpq + +type HashEntryMap struct { + entries map[uint64]*HashTableEntry +} + +func (hem *HashEntryMap) Insert(entry *HashTableEntry) { + if hem.entries == nil { + hem.entries = make(map[uint64]*HashTableEntry) + } + + hem.entries[uint64(entry.NamePartA)<<32|uint64(entry.NamePartB)] = entry +} + +func (hem *HashEntryMap) Find(fileName string) (*HashTableEntry, bool) { + if hem.entries == nil { + return nil, false + } + + hashA := hashString(fileName, 1) + hashB := hashString(fileName, 2) + + entry, found := hem.entries[uint64(hashA)<<32|uint64(hashB)] + return entry, found +} + +func (hem *HashEntryMap) Contains(fileName string) bool { + _, found := hem.Find(fileName) + return found +} diff --git a/d2data/d2mpq/mpq.go b/d2data/d2mpq/mpq.go new file mode 100644 index 00000000..0a7a9891 --- /dev/null +++ b/d2data/d2mpq/mpq.go @@ -0,0 +1,314 @@ +package d2mpq + +import ( + "bufio" + "encoding/binary" + "errors" + "io/ioutil" + "log" + "os" + "path" + "path/filepath" + "runtime" + "strings" +) + +// MPQ represents an MPQ archive +type MPQ struct { + FileName string + File *os.File + HashEntryMap HashEntryMap + BlockTableEntries []BlockTableEntry + Data Data +} + +// Data Represents a MPQ file +type Data struct { + Magic [4]byte + HeaderSize uint32 + ArchiveSize uint32 + FormatVersion uint16 + BlockSize uint16 + HashTableOffset uint32 + BlockTableOffset uint32 + HashTableEntries uint32 + BlockTableEntries uint32 +} + +// HashTableEntry represents a hashed file entry in the MPQ file +type HashTableEntry struct { // 16 bytes + NamePartA uint32 + NamePartB uint32 + Locale uint16 + Platform uint16 + BlockIndex uint32 +} + +type PatchInfo struct { + Length uint32 // Length of patch info header, in bytes + Flags uint32 // Flags. 0x80000000 = MD5 (?) + DataSize uint32 // Uncompressed size of the patch file + Md5 [16]byte // MD5 of the entire patch file after decompression +} + +// FileFlag represents flags for a file record in the MPQ archive +type FileFlag uint32 + +const ( + // FileImplode - File is compressed using PKWARE Data compression library + FileImplode FileFlag = 0x00000100 + // FileCompress - File is compressed using combination of compression methods + FileCompress FileFlag = 0x00000200 + // FileEncrypted - The file is encrypted + FileEncrypted FileFlag = 0x00010000 + // FileFixKey - The decryption key for the file is altered according to the position of the file in the archive + FileFixKey FileFlag = 0x00020000 + // FilePatchFile - The file contains incremental patch for an existing file in base MPQ + FilePatchFile FileFlag = 0x00100000 + // FileSingleUnit - Instead of being divided to 0x1000-bytes blocks, the file is stored as single unit + FileSingleUnit FileFlag = 0x01000000 + // FileDeleteMarker - File is a deletion marker, indicating that the file no longer exists. This is used to allow patch + // archives to delete files present in lower-priority archives in the search chain. The file usually + // has length of 0 or 1 byte and its name is a hash + FileDeleteMarker FileFlag = 0x02000000 + // FileSectorCrc - File has checksums for each sector. Ignored if file is not compressed or imploded. + FileSectorCrc FileFlag = 0x04000000 + // FileExists - Set if file exists, reset when the file was deleted + FileExists FileFlag = 0x80000000 +) + +// BlockTableEntry represents an entry in the block table +type BlockTableEntry struct { // 16 bytes + FilePosition uint32 + CompressedFileSize uint32 + UncompressedFileSize uint32 + Flags FileFlag + // Local Stuff... + FileName string + EncryptionSeed uint32 +} + +// HasFlag returns true if the specified flag is present +func (v BlockTableEntry) HasFlag(flag FileFlag) bool { + return (v.Flags & flag) != 0 +} + +// Load loads an MPQ file and returns a MPQ structure +func Load(fileName string) (*MPQ, error) { + result := &MPQ{FileName: fileName} + + var err error + if runtime.GOOS == "linux" { + result.File, err = openIgnoreCase(fileName) + } else { + result.File, err = os.Open(fileName) + } + + if err != nil { + return nil, err + } + + if err := result.readHeader(); err != nil { + return nil, err + } + + return result, nil +} + +func openIgnoreCase(mpqPath string) (*os.File, error) { + // First see if file exists with specified case + mpqFile, err := os.Open(mpqPath) + if err == nil { + return mpqFile, err + } + + mpqName := filepath.Base(mpqPath) + mpqDir := filepath.Dir(mpqPath) + + files, err := ioutil.ReadDir(mpqDir) + if err != nil { + return nil, err + } + + for _, file := range files { + if strings.EqualFold(file.Name(), mpqName) { + mpqName = file.Name() + break + } + } + + file, err := os.Open(path.Join(mpqDir, mpqName)) + return file, err +} + +func (v *MPQ) readHeader() error { + err := binary.Read(v.File, binary.LittleEndian, &v.Data) + if err != nil { + return err + } + if string(v.Data.Magic[:]) != "MPQ\x1A" { + return errors.New("invalid mpq header") + } + v.loadHashTable() + v.loadBlockTable() + return nil +} + +func (v *MPQ) loadHashTable() { + _, err := v.File.Seek(int64(v.Data.HashTableOffset), 0) + if err != nil { + log.Panic(err) + } + hashData := make([]uint32, v.Data.HashTableEntries*4) + err = binary.Read(v.File, binary.LittleEndian, &hashData) + if err != nil { + log.Panic(err) + } + decrypt(hashData, hashString("(hash table)", 3)) + for i := uint32(0); i < v.Data.HashTableEntries; i++ { + v.HashEntryMap.Insert(&HashTableEntry{ + NamePartA: hashData[i*4], + NamePartB: hashData[(i*4)+1], + // TODO: Verify that we're grabbing the right high/lo word for the vars below + Locale: uint16(hashData[(i*4)+2] >> 16), + Platform: uint16(hashData[(i*4)+2] & 0xFFFF), + BlockIndex: hashData[(i*4)+3], + }) + } +} + +func (v *MPQ) loadBlockTable() { + _, err := v.File.Seek(int64(v.Data.BlockTableOffset), 0) + if err != nil { + log.Panic(err) + } + blockData := make([]uint32, v.Data.BlockTableEntries*4) + err = binary.Read(v.File, binary.LittleEndian, &blockData) + if err != nil { + log.Panic(err) + } + decrypt(blockData, hashString("(block table)", 3)) + for i := uint32(0); i < v.Data.BlockTableEntries; i++ { + v.BlockTableEntries = append(v.BlockTableEntries, BlockTableEntry{ + FilePosition: blockData[(i * 4)], + CompressedFileSize: blockData[(i*4)+1], + UncompressedFileSize: blockData[(i*4)+2], + Flags: FileFlag(blockData[(i*4)+3]), + }) + } +} + +func decrypt(data []uint32, seed uint32) { + seed2 := uint32(0xeeeeeeee) + + for i := 0; i < len(data); i++ { + seed2 += CryptoBuffer[0x400+(seed&0xff)] + result := data[i] + result ^= seed + seed2 + + seed = ((^seed << 21) + 0x11111111) | (seed >> 11) + seed2 = result + seed2 + (seed2 << 5) + 3 + data[i] = result + } +} + +func decryptBytes(data []byte, seed uint32) { + seed2 := uint32(0xEEEEEEEE) + for i := 0; i < len(data)-3; i += 4 { + seed2 += CryptoBuffer[0x400+(seed&0xFF)] + result := binary.LittleEndian.Uint32(data[i : i+4]) + result ^= seed + seed2 + seed = ((^seed << 21) + 0x11111111) | (seed >> 11) + seed2 = result + seed2 + (seed2 << 5) + 3 + + data[i+0] = uint8(result & 0xff) + data[i+1] = uint8((result >> 8) & 0xff) + data[i+2] = uint8((result >> 16) & 0xff) + data[i+3] = uint8((result >> 24) & 0xff) + } +} + +func hashString(key string, hashType uint32) uint32 { + + seed1 := uint32(0x7FED7FED) + seed2 := uint32(0xEEEEEEEE) + + /* prepare seeds. */ + for _, char := range strings.ToUpper(key) { + seed1 = CryptoBuffer[(hashType*0x100)+uint32(char)] ^ (seed1 + seed2) + seed2 = uint32(char) + seed1 + seed2 + (seed2 << 5) + 3 + } + return seed1 +} + +// GetFileBlockData gets a block table entry +func (v MPQ) getFileBlockData(fileName string) (BlockTableEntry, error) { + fileEntry, found := v.HashEntryMap.Find(fileName) + if !found || fileEntry.BlockIndex >= uint32(len(v.BlockTableEntries)) { + return BlockTableEntry{}, errors.New("file not found") + } + return v.BlockTableEntries[fileEntry.BlockIndex], nil +} + +// Close closes the MPQ file +func (v *MPQ) Close() { + err := v.File.Close() + if err != nil { + log.Panic(err) + } +} + +func (v MPQ) FileExists(fileName string) bool { + return v.HashEntryMap.Contains(fileName) +} + +// ReadFile reads a file from the MPQ and returns a memory stream +func (v MPQ) ReadFile(fileName string) ([]byte, error) { + fileBlockData, err := v.getFileBlockData(fileName) + if err != nil { + return []byte{}, err + } + fileBlockData.FileName = strings.ToLower(fileName) + fileBlockData.calculateEncryptionSeed() + mpqStream, err := CreateStream(v, fileBlockData, fileName) + if err != nil { + return []byte{}, err + } + buffer := make([]byte, fileBlockData.UncompressedFileSize) + mpqStream.Read(buffer, 0, fileBlockData.UncompressedFileSize) + return buffer, nil +} + +// ReadTextFile reads a file and returns it as a string +func (v MPQ) ReadTextFile(fileName string) (string, error) { + data, err := v.ReadFile(fileName) + if err != nil { + return "", err + } + return string(data), nil +} + +func (v *BlockTableEntry) calculateEncryptionSeed() { + fileName := path.Base(v.FileName) + v.EncryptionSeed = hashString(fileName, 3) + if !v.HasFlag(FileFixKey) { + return + } + v.EncryptionSeed = (v.EncryptionSeed + v.FilePosition) ^ v.UncompressedFileSize +} + +// GetFileList returns the list of files in this MPQ +func (v MPQ) GetFileList() ([]string, error) { + data, err := v.ReadFile("(listfile)") + if err != nil { + return nil, err + } + raw := strings.TrimRight(string(data), "\x00") + s := bufio.NewScanner(strings.NewReader(raw)) + var filePaths []string + for s.Scan() { + filePath := s.Text() + filePaths = append(filePaths, filePath) + } + return filePaths, nil +} diff --git a/d2data/d2mpq/mpq_file_record.go b/d2data/d2mpq/mpq_file_record.go new file mode 100644 index 00000000..95e4a9ee --- /dev/null +++ b/d2data/d2mpq/mpq_file_record.go @@ -0,0 +1,7 @@ +package d2mpq + +type MpqFileRecord struct { + MpqFile string + IsPatch bool + UnpatchedMpqFile string +} diff --git a/d2data/d2mpq/mpq_stream.go b/d2data/d2mpq/mpq_stream.go new file mode 100644 index 00000000..67947ba5 --- /dev/null +++ b/d2data/d2mpq/mpq_stream.go @@ -0,0 +1,273 @@ +package d2mpq + +import ( + "bufio" + "bytes" + "compress/zlib" + "encoding/binary" + "errors" + "fmt" + "log" + "strings" + + "github.com/OpenDiablo2/OpenDiablo2/d2helper" + + "github.com/JoshVarga/blast" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2compression" +) + +// Stream represents a stream of data in an MPQ archive +type Stream struct { + MPQData MPQ + BlockTableEntry BlockTableEntry + FileName string + EncryptionSeed uint32 + BlockPositions []uint32 + CurrentPosition uint32 + CurrentData []byte + CurrentBlockIndex uint32 + BlockSize uint32 +} + +// CreateStream creates an MPQ stream +func CreateStream(mpq MPQ, blockTableEntry BlockTableEntry, fileName string) (*Stream, error) { + result := &Stream{ + MPQData: mpq, + BlockTableEntry: blockTableEntry, + CurrentBlockIndex: 0xFFFFFFFF, + } + fileSegs := strings.Split(fileName, `\`) + result.EncryptionSeed = hashString(fileSegs[len(fileSegs)-1], 3) + if result.BlockTableEntry.HasFlag(FileFixKey) { + result.EncryptionSeed = (result.EncryptionSeed + result.BlockTableEntry.FilePosition) ^ result.BlockTableEntry.UncompressedFileSize + } + result.BlockSize = 0x200 << result.MPQData.Data.BlockSize + + if result.BlockTableEntry.HasFlag(FilePatchFile) { + log.Fatal("Patching is not supported") + } + + var err error + if (result.BlockTableEntry.HasFlag(FileCompress) || result.BlockTableEntry.HasFlag(FileImplode)) && !result.BlockTableEntry.HasFlag(FileSingleUnit) { + err = result.loadBlockOffsets() + } + return result, err +} + +func (v *Stream) loadBlockOffsets() error { + blockPositionCount := ((v.BlockTableEntry.UncompressedFileSize + v.BlockSize - 1) / v.BlockSize) + 1 + v.BlockPositions = make([]uint32, blockPositionCount) + v.MPQData.File.Seek(int64(v.BlockTableEntry.FilePosition), 0) + reader := bufio.NewReader(v.MPQData.File) + bytes := make([]byte, blockPositionCount*4) + reader.Read(bytes) + for i := range v.BlockPositions { + idx := i * 4 + v.BlockPositions[i] = binary.LittleEndian.Uint32(bytes[idx : idx+4]) + } + //binary.Read(v.MPQData.File, binary.LittleEndian, &v.BlockPositions) + blockPosSize := blockPositionCount << 2 + if v.BlockTableEntry.HasFlag(FileEncrypted) { + decrypt(v.BlockPositions, v.EncryptionSeed-1) + if v.BlockPositions[0] != blockPosSize { + log.Println("Decryption of MPQ failed!") + return errors.New("Decryption of MPQ failed!") + } + if v.BlockPositions[1] > v.BlockSize+blockPosSize { + log.Println("Decryption of MPQ failed!") + return errors.New("Decryption of MPQ failed!") + } + } + return nil +} + +func (v *Stream) Read(buffer []byte, offset, count uint32) uint32 { + if v.BlockTableEntry.HasFlag(FileSingleUnit) { + return v.readInternalSingleUnit(buffer, offset, count) + } + toRead := count + readTotal := uint32(0) + for toRead > 0 { + read := v.readInternal(buffer, offset, count) + if read == 0 { + break + } + readTotal += read + offset += read + toRead -= read + } + return readTotal +} + +func (v *Stream) readInternalSingleUnit(buffer []byte, offset, count uint32) uint32 { + if len(v.CurrentData) == 0 { + v.loadSingleUnit() + } + + bytesToCopy := d2helper.Min(uint32(len(v.CurrentData))-v.CurrentPosition, count) + copy(buffer[offset:offset+bytesToCopy], v.CurrentData[v.CurrentPosition:v.CurrentPosition+bytesToCopy]) + v.CurrentPosition += bytesToCopy + return bytesToCopy +} + +func (v *Stream) readInternal(buffer []byte, offset, count uint32) uint32 { + v.bufferData() + localPosition := v.CurrentPosition % v.BlockSize + bytesToCopy := d2helper.MinInt32(int32(len(v.CurrentData))-int32(localPosition), int32(count)) + if bytesToCopy <= 0 { + return 0 + } + copy(buffer[offset:offset+uint32(bytesToCopy)], v.CurrentData[localPosition:localPosition+uint32(bytesToCopy)]) + v.CurrentPosition += uint32(bytesToCopy) + return uint32(bytesToCopy) +} + +func (v *Stream) bufferData() { + requiredBlock := uint32(v.CurrentPosition / v.BlockSize) + if requiredBlock == v.CurrentBlockIndex { + return + } + expectedLength := d2helper.Min(v.BlockTableEntry.UncompressedFileSize-(requiredBlock*v.BlockSize), v.BlockSize) + v.CurrentData = v.loadBlock(requiredBlock, expectedLength) + v.CurrentBlockIndex = requiredBlock +} + +func (v *Stream) loadSingleUnit() { + fileData := make([]byte, v.BlockSize) + v.MPQData.File.Seek(int64(v.MPQData.Data.HeaderSize), 0) + //binary.Read(v.MPQData.File, binary.LittleEndian, &fileData) + reader := bufio.NewReader(v.MPQData.File) + reader.Read(fileData) + if v.BlockSize == v.BlockTableEntry.UncompressedFileSize { + v.CurrentData = fileData + return + } + v.CurrentData = decompressMulti(fileData, v.BlockTableEntry.UncompressedFileSize) +} + +func (v *Stream) loadBlock(blockIndex, expectedLength uint32) []byte { + var ( + offset uint32 + toRead uint32 + ) + if v.BlockTableEntry.HasFlag(FileCompress) || v.BlockTableEntry.HasFlag(FileImplode) { + offset = v.BlockPositions[blockIndex] + toRead = v.BlockPositions[blockIndex+1] - offset + } else { + offset = blockIndex * v.BlockSize + toRead = expectedLength + } + offset += v.BlockTableEntry.FilePosition + data := make([]byte, toRead) + v.MPQData.File.Seek(int64(offset), 0) + //binary.Read(v.MPQData.File, binary.LittleEndian, &data) + reader := bufio.NewReader(v.MPQData.File) + reader.Read(data) + if v.BlockTableEntry.HasFlag(FileEncrypted) && v.BlockTableEntry.UncompressedFileSize > 3 { + if v.EncryptionSeed == 0 { + panic("Unable to determine encryption key") + } + + decryptBytes(data, blockIndex+v.EncryptionSeed) + } + if v.BlockTableEntry.HasFlag(FileCompress) && (toRead != expectedLength) { + if !v.BlockTableEntry.HasFlag(FileSingleUnit) { + data = decompressMulti(data, expectedLength) + } else { + data = pkDecompress(data) + } + } + if v.BlockTableEntry.HasFlag(FileImplode) && (toRead != expectedLength) { + data = pkDecompress(data) + } + + return data +} + +func decompressMulti(data []byte, expectedLength uint32) []byte { + copmressionType := data[0] + switch copmressionType { + case 1: // Huffman + panic("huffman decompression not supported") + case 2: // ZLib/Deflate + return deflate(data[1:]) + case 8: // PKLib/Impode + return pkDecompress(data[1:]) + case 0x10: // BZip2 + panic("bzip2 decompression not supported") + case 0x80: // IMA ADPCM Stereo + return d2compression.WavDecompress(data[1:], 2) + //return MpqWavCompression.Decompress(sinput, 2); + //panic("ima adpcm sterio decompression not supported") + case 0x40: // IMA ADPCM Mono + //return MpqWavCompression.Decompress(sinput, 1) + panic("mpq wav decompression not supported") + case 0x12: + panic("lzma decompression not supported") + // Combos + case 0x22: + // TODO: sparse then zlib + panic("sparse decompression + deflate decompression not supported") + case 0x30: + // TODO: sparse then bzip2 + panic("sparse decompression + bzip2 decompression not supported") + case 0x41: + sinput := d2compression.HuffmanDecompress(data[1:]) + sinput = d2compression.WavDecompress(sinput, 1) + tmp := make([]byte, len(sinput)) + copy(tmp, sinput) + return tmp + case 0x48: + //byte[] result = PKDecompress(sinput, outputLength); + //return MpqWavCompression.Decompress(new MemoryStream(result), 1); + panic("pk + mpqwav decompression not supported") + case 0x81: + sinput := d2compression.HuffmanDecompress(data[1:]) + sinput = d2compression.WavDecompress(sinput, 2) + tmp := make([]byte, len(sinput)) + copy(tmp, sinput) + return tmp + case 0x88: + //byte[] result = PKDecompress(sinput, outputLength); + //return MpqWavCompression.Decompress(new MemoryStream(result), 2); + panic("pk + wav decompression not supported") + default: + panic(fmt.Sprintf("decompression not supported for unknown compression type %X", copmressionType)) + } +} + +func deflate(data []byte) []byte { + b := bytes.NewReader(data) + r, err := zlib.NewReader(b) + if err != nil { + panic(err) + } + buffer := new(bytes.Buffer) + _, err = buffer.ReadFrom(r) + if err != nil { + log.Panic(err) + } + err = r.Close() + if err != nil { + log.Panic(err) + } + return buffer.Bytes() +} + +func pkDecompress(data []byte) []byte { + b := bytes.NewReader(data) + r, err := blast.NewReader(b) + if err != nil { + panic(err) + } + buffer := new(bytes.Buffer) + _, err = buffer.ReadFrom(r) + if err != nil { + panic(err) + } + err = r.Close() + if err != nil { + panic(err) + } + return buffer.Bytes() +} diff --git a/d2data/d2video/binkdecoder.go b/d2data/d2video/binkdecoder.go new file mode 100644 index 00000000..20c19ef0 --- /dev/null +++ b/d2data/d2video/binkdecoder.go @@ -0,0 +1,111 @@ +package d2video + +import ( + "log" + + "github.com/OpenDiablo2/OpenDiablo2/d2common" +) + +type BinkVideoMode uint32 + +const ( + BinkVideoModeNormal BinkVideoMode = 0 + BinkVideoModeHeightDoubled BinkVideoMode = 1 + BinkVideoModeHeightInterlaced BinkVideoMode = 2 + BinkVideoModeWidthDoubled BinkVideoMode = 3 + BinkVideoModeWidthAndHeightDoubled BinkVideoMode = 4 + BinkVideoModeWidthAndHeightInterlaced BinkVideoMode = 5 +) + +type BinkAudioAlgorithm uint32 + +const ( + BinkAudioAlgorithmFFT BinkAudioAlgorithm = 0 + BinkAudioAlgorithmDCT BinkAudioAlgorithm = 1 +) + +type BinkAudioTrack struct { + AudioChannels uint16 + AudioSampleRateHz uint16 + Stereo bool + Algorithm BinkAudioAlgorithm + AudioTrackId uint32 +} + +type BinkDecoder struct { + videoCodecRevision byte + fileSize uint32 + numberOfFrames uint32 + largestFrameSizeBytes uint32 + VideoWidth uint32 + VideoHeight uint32 + FPS uint32 + FrameTimeMS uint32 + streamReader *d2common.StreamReader + VideoMode BinkVideoMode + HasAlphaPlane bool + Grayscale bool + AudioTracks []BinkAudioTrack + FrameIndexTable []uint32 // Mask bit 0, as this is defined as a keyframe + frameIndex uint32 +} + +func CreateBinkDecoder(source []byte) *BinkDecoder { + result := &BinkDecoder{ + streamReader: d2common.CreateStreamReader(source), + } + result.loadHeaderInformation() + return result +} + +func (v *BinkDecoder) GetNextFrame() { + //v.streamReader.SetPosition(uint64(v.FrameIndexTable[i] & 0xFFFFFFFE)) + lengthOfAudioPackets := v.streamReader.GetUInt32() - 4 + samplesInPacket := v.streamReader.GetUInt32() + v.streamReader.SkipBytes(int(lengthOfAudioPackets)) + log.Printf("Frame %d:\tSamp: %d", v.frameIndex, samplesInPacket) + + v.frameIndex++ +} + +func (v *BinkDecoder) loadHeaderInformation() { + v.streamReader.SetPosition(0) + headerBytes, _ := v.streamReader.ReadBytes(3) + if string(headerBytes) != "BIK" { + log.Fatal("Invalid header for bink video") + } + v.videoCodecRevision = v.streamReader.GetByte() + v.fileSize = v.streamReader.GetUInt32() + v.numberOfFrames = v.streamReader.GetUInt32() + v.largestFrameSizeBytes = v.streamReader.GetUInt32() + v.streamReader.SkipBytes(4) // Number of frames again? + v.VideoWidth = v.streamReader.GetUInt32() + v.VideoHeight = v.streamReader.GetUInt32() + fpsDividend := v.streamReader.GetUInt32() + fpsDivider := v.streamReader.GetUInt32() + v.FPS = uint32(float32(fpsDividend) / float32(fpsDivider)) + v.FrameTimeMS = 1000 / v.FPS + videoFlags := v.streamReader.GetUInt32() + v.VideoMode = BinkVideoMode((videoFlags >> 28) & 0x0F) + v.HasAlphaPlane = ((videoFlags >> 20) & 0x1) == 1 + v.Grayscale = ((videoFlags >> 17) & 0x1) == 1 + numberOfAudioTracks := v.streamReader.GetUInt32() + v.AudioTracks = make([]BinkAudioTrack, numberOfAudioTracks) + for i := 0; i < int(numberOfAudioTracks); i++ { + v.streamReader.SkipBytes(2) // Unknown + v.AudioTracks[i].AudioChannels = v.streamReader.GetUInt16() + } + for i := 0; i < int(numberOfAudioTracks); i++ { + v.AudioTracks[i].AudioSampleRateHz = v.streamReader.GetUInt16() + flags := v.streamReader.GetUInt16() + v.AudioTracks[i].Stereo = ((flags >> 13) & 0x1) == 1 + v.AudioTracks[i].Algorithm = BinkAudioAlgorithm((flags >> 12) & 0x1) + } + for i := 0; i < int(numberOfAudioTracks); i++ { + v.AudioTracks[i].AudioTrackId = v.streamReader.GetUInt32() + } + v.FrameIndexTable = make([]uint32, v.numberOfFrames+1) + for i := 0; i < int(v.numberOfFrames+1); i++ { + v.FrameIndexTable[i] = v.streamReader.GetUInt32() + } +} diff --git a/d2data/object.go b/d2data/object.go new file mode 100644 index 00000000..56e368b4 --- /dev/null +++ b/d2data/object.go @@ -0,0 +1,17 @@ +package d2data + +import ( + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" +) + +type Object struct { + Type int32 + Id int32 + X int32 + Y int32 + Flags int32 + Paths []d2common.Path + Lookup *d2datadict.ObjectLookupRecord + ObjectInfo *d2datadict.ObjectRecord +} diff --git a/d2helper/math.go b/d2helper/math.go new file mode 100644 index 00000000..60bd2aa4 --- /dev/null +++ b/d2helper/math.go @@ -0,0 +1,105 @@ +package d2helper + +import "math" + +func MinInt(a, b int) int { + if a < b { + return a + } + return b +} + +func MaxInt(a, b int) int { + if a > b { + return a + } + return b +} + +// Min returns the lower of two values +func Min(a, b uint32) uint32 { + if a < b { + return a + } + return b +} + +// Max returns the higher of two values +func Max(a, b uint32) uint32 { + if a > b { + return a + } + return b +} + +// MaxInt32 returns the higher of two values +func MaxInt32(a, b int32) int32 { + if a > b { + return a + } + return b +} + +func NextPow2(x int32) int32 { + result := int32(1) + for result < x { + result *= 2 + } + return result +} + +func AbsInt32(a int32) int32 { + if a < 0 { + return -a + } + return a +} + +// MinInt32 returns the higher of two values +func MinInt32(a, b int32) int32 { + if a < b { + return a + } + return b +} + +// BytesToInt32 converts 4 bytes to int32 +func BytesToInt32(b []byte) int32 { + // equivalnt of return int32(binary.LittleEndian.Uint32(b)) + return int32(uint32(b[0]) | uint32(b[1])<<8 | uint32(b[2])<<16 | uint32(b[3])<<24) +} + +// IsoToScreen converts isometric coordinates to screenspace coordinates +func IsoToScreen(isoX, isoY, modX, modY float64) (float64, float64) { + screenX := (isoX - isoY) * 80 + screenY := (isoX + isoY) * 40 + return screenX + modX, screenY + modY +} + +// ScreenToIso converts screenspace coordinates to isometric coordinates +func ScreenToIso(sx, sy float64) (float64, float64) { + x := (sx/80 + sy/40) / 2 + y := (sy/40 - (sx / 80)) / 2 + return x, y +} + +// GetAngleBetween returns the angle between two points. 0deg is facing to the right. +func GetAngleBetween(p1X, p1Y, p2X, p2Y float64) int { + deltaY := p1Y - p2Y + deltaX := p2X - p1X + + result := math.Atan2(deltaY, deltaX) * (180 / math.Pi) + iResult := int(result) + for iResult < 0 { + iResult += 360 + } + for iResult >= 360 { + iResult -= 360 + } + return iResult +} + +// AlmostEqual returns true if two values are within threshold from each other +func AlmostEqual(a, b, threshold float64) bool { + return math.Abs(a-b) <= threshold +} diff --git a/d2helper/stringutils.go b/d2helper/stringutils.go new file mode 100644 index 00000000..33145f1a --- /dev/null +++ b/d2helper/stringutils.go @@ -0,0 +1,159 @@ +package d2helper + +import ( + "bytes" + "fmt" + "strconv" + "strings" + "unicode" + "unicode/utf16" + "unicode/utf8" +) + +// AsterToEmpty converts strings beginning with "*" to "", for use when handling columns where an asterix can be used to comment out entries +func AsterToEmpty(text string) string { + if strings.HasPrefix(text, "*") { + return "" + } + return text +} + +// EmptyToZero converts empty strings to "0" and leaves non-empty strings as is, for use before converting numerical data which equates empty to zero +func EmptyToZero(text string) string { + if text == "" || text == " " { + return "0" + } + return text +} + +// StringToInt converts a string to an integer +func StringToInt(text string) int { + result, err := strconv.Atoi(text) + if err != nil { + panic(err) + } + return result +} + +// SafeStringToInt converts a string to an integer, or returns -1 on falure +func SafeStringToInt(text string) int { + result, err := strconv.Atoi(text) + if err != nil { + return -1 + } + return result +} + +// StringToUint converts a string to a uint32 +func StringToUint(text string) uint { + result, err := strconv.ParseUint(text, 10, 32) + if err != nil { + panic(err) + } + return uint(result) +} + +// StringToUint8 converts a string to an uint8 +func StringToUint8(text string) uint8 { + result, err := strconv.Atoi(text) + if err != nil { + panic(err) + } + if result < 0 || result > 255 { + panic(fmt.Sprintf("value %d out of range of byte", result)) + } + return uint8(result) +} + +// StringToInt8 converts a string to an int8 +func StringToInt8(text string) int8 { + result, err := strconv.Atoi(text) + if err != nil { + panic(err) + } + if result < -128 || result > 122 { + panic(fmt.Sprintf("value %d out of range of a signed byte", result)) + } + return int8(result) +} + +// StringToFloat64 converts a string to a float64 +func StringToFloat64(text string) float64 { + result, err := strconv.ParseFloat(text, 64) + if err != nil { + panic(err) + } + return float64(result) +} + +func Utf16BytesToString(b []byte) (string, error) { + + if len(b)%2 != 0 { + return "", fmt.Errorf("Must have even length byte slice") + } + + u16s := make([]uint16, 1) + + ret := &bytes.Buffer{} + + b8buf := make([]byte, 4) + + lb := len(b) + for i := 0; i < lb; i += 2 { + u16s[0] = uint16(b[i]) + (uint16(b[i+1]) << 8) + r := utf16.Decode(u16s) + n := utf8.EncodeRune(b8buf, r[0]) + ret.Write(b8buf[:n]) + } + + return ret.String(), nil +} + +func CombineStrings(input []string) string { + return strings.Join(input, "\n") +} + +func SplitIntoLinesWithMaxWidth(fullSentence string, maxChars int) []string { + lines := make([]string, 0) + line := "" + totalLength := 0 + words := strings.Split(fullSentence, " ") + if len(words[0]) > maxChars { + // mostly happend within CJK characters (no whitespace) + return splitCjkIntoChunks(fullSentence, maxChars) + } + for _, word := range words { + totalLength += 1 + len(word) + if totalLength > maxChars { + totalLength = len(word) + lines = append(lines, line) + line = "" + } else { + line += " " + } + line += word + } + + if len(line) > 0 { + lines = append(lines, line) + } + return lines +} + +func splitCjkIntoChunks(str string, chars int) []string { + chunks := make([]string, chars / len(str)) + i, count := 0, 0 + for j, ch := range str { + if ch < unicode.MaxLatin1 { + count++ + } else { + // assume we're truncating CJK characters + count += 2 + } + if count >= chars { + chunks = append(chunks, str[i:j]) + i, count = j, 0 + } + } + return append(chunks, str[i:]) +} diff --git a/d2helper/timeutils.go b/d2helper/timeutils.go new file mode 100644 index 00000000..b49e2116 --- /dev/null +++ b/d2helper/timeutils.go @@ -0,0 +1,7 @@ +package d2helper + +import "time" + +func Now() float64 { + return float64(time.Now().UnixNano()) / 1000000000.0 +} diff --git a/d2player/game_controls.go b/d2player/game_controls.go index 3518f225..0640c5bb 100644 --- a/d2player/game_controls.go +++ b/d2player/game_controls.go @@ -1,7 +1,7 @@ package d2player import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/OpenDiablo2/OpenDiablo2/d2input" "github.com/OpenDiablo2/OpenDiablo2/d2render" diff --git a/d2player/inventory.go b/d2player/inventory.go index 654e7383..d35a8907 100644 --- a/d2player/inventory.go +++ b/d2player/inventory.go @@ -1,7 +1,7 @@ package d2player import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2player/inventory_grid.go b/d2player/inventory_grid.go index 1dd20294..67a69fb4 100644 --- a/d2player/inventory_grid.go +++ b/d2player/inventory_grid.go @@ -3,7 +3,7 @@ package d2player import ( "errors" "fmt" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "log" diff --git a/d2render/animated_entity.go b/d2render/animated_entity.go index 9c299f30..2941772e 100644 --- a/d2render/animated_entity.go +++ b/d2render/animated_entity.go @@ -4,10 +4,11 @@ import ( "math" "math/rand" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2asset" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2render/d2mapengine/engine.go b/d2render/d2mapengine/engine.go index e9e7c683..ce8afd99 100644 --- a/d2render/d2mapengine/engine.go +++ b/d2render/d2mapengine/engine.go @@ -3,7 +3,7 @@ package d2mapengine import ( "strings" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" "github.com/OpenDiablo2/OpenDiablo2/d2audio" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2render/d2mapengine/region.go b/d2render/d2mapengine/region.go index 60470dad..ee8d16bc 100644 --- a/d2render/d2mapengine/region.go +++ b/d2render/d2mapengine/region.go @@ -9,15 +9,17 @@ import ( "github.com/hajimehoshi/ebiten" - "github.com/OpenDiablo2/D2Shared/d2common" - "github.com/OpenDiablo2/D2Shared/d2common/d2enum" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" - "github.com/OpenDiablo2/D2Shared/d2data/d2datadict" - "github.com/OpenDiablo2/D2Shared/d2data/d2ds1" - "github.com/OpenDiablo2/D2Shared/d2data/d2dt1" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2common" + + "github.com/OpenDiablo2/OpenDiablo2/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2asset" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2core" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2datadict" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2ds1" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2dt1" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2render/d2mapengine/viewport.go b/d2render/d2mapengine/viewport.go index 09037f17..a99a09b5 100644 --- a/d2render/d2mapengine/viewport.go +++ b/d2render/d2mapengine/viewport.go @@ -3,7 +3,7 @@ package d2mapengine import ( "math" - "github.com/OpenDiablo2/D2Shared/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2common" ) type worldTrans struct { diff --git a/d2render/d2ui/button.go b/d2render/d2ui/button.go index 90cfc1e8..64097bc6 100644 --- a/d2render/d2ui/button.go +++ b/d2render/d2ui/button.go @@ -4,7 +4,7 @@ import ( "image" "image/color" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2render/d2ui/checkbox.go b/d2render/d2ui/checkbox.go index 10ed51a3..5d0ccb42 100644 --- a/d2render/d2ui/checkbox.go +++ b/d2render/d2ui/checkbox.go @@ -1,7 +1,7 @@ package d2ui import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/hajimehoshi/ebiten" diff --git a/d2render/d2ui/font.go b/d2render/d2ui/font.go index 9388330b..6661b916 100644 --- a/d2render/d2ui/font.go +++ b/d2render/d2ui/font.go @@ -4,7 +4,7 @@ import ( "image/color" "strings" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2asset" "github.com/OpenDiablo2/OpenDiablo2/d2render" diff --git a/d2render/d2ui/manager.go b/d2render/d2ui/manager.go index be848740..e842556b 100644 --- a/d2render/d2ui/manager.go +++ b/d2render/d2ui/manager.go @@ -1,7 +1,7 @@ package d2ui import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2audio" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" diff --git a/d2render/d2ui/scrollbar.go b/d2render/d2ui/scrollbar.go index 5e416bde..01f8a0c1 100644 --- a/d2render/d2ui/scrollbar.go +++ b/d2render/d2ui/scrollbar.go @@ -1,7 +1,7 @@ package d2ui import ( - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/hajimehoshi/ebiten" diff --git a/d2render/d2ui/textbox.go b/d2render/d2ui/textbox.go index 05898cf9..ca660221 100644 --- a/d2render/d2ui/textbox.go +++ b/d2render/d2ui/textbox.go @@ -6,7 +6,7 @@ import ( "github.com/hajimehoshi/ebiten/inpututil" - "github.com/OpenDiablo2/D2Shared/d2common/d2resource" + "github.com/OpenDiablo2/OpenDiablo2/d2common/d2resource" "github.com/OpenDiablo2/OpenDiablo2/d2render" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" "github.com/hajimehoshi/ebiten" diff --git a/d2render/sprite.go b/d2render/sprite.go index 1cd3b190..b3f1c467 100644 --- a/d2render/sprite.go +++ b/d2render/sprite.go @@ -3,8 +3,8 @@ package d2render import ( "image/color" - "github.com/OpenDiablo2/D2Shared/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2asset" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/d2term/terminal.go b/d2term/terminal.go index 77e34623..d2812a74 100644 --- a/d2term/terminal.go +++ b/d2term/terminal.go @@ -13,7 +13,7 @@ import ( "strconv" "strings" - "github.com/OpenDiablo2/D2Shared/d2helper" + "github.com/OpenDiablo2/OpenDiablo2/d2helper" "github.com/OpenDiablo2/OpenDiablo2/d2input" "github.com/OpenDiablo2/OpenDiablo2/d2render/d2surface" ) diff --git a/go.mod b/go.mod index 4abfa26a..13b90899 100644 --- a/go.mod +++ b/go.mod @@ -3,9 +3,10 @@ module github.com/OpenDiablo2/OpenDiablo2 go 1.12 require ( - github.com/OpenDiablo2/D2Shared v0.0.0-20191222011122-c8cfab029ae6 + github.com/JoshVarga/blast v0.0.0-20180421040937-681c804fb9f0 github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect + github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1 github.com/hajimehoshi/ebiten v1.11.0-alpha.2.0.20200102072751-e66f1fb71e2e github.com/stretchr/testify v1.4.0 golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136 // indirect diff --git a/go.sum b/go.sum index f40a76a2..d26a0540 100644 --- a/go.sum +++ b/go.sum @@ -2,8 +2,6 @@ dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/JoshVarga/blast v0.0.0-20180421040937-681c804fb9f0 h1:tDnuU0igiBiQFjsvq1Bi7DpoUjqI76VVvW045vpeFeM= github.com/JoshVarga/blast v0.0.0-20180421040937-681c804fb9f0/go.mod h1:h/5OEGj4G+fpYxluLjSMZbFY011ZxAntO98nCl8mrCs= -github.com/OpenDiablo2/D2Shared v0.0.0-20191222011122-c8cfab029ae6 h1:9TXDUOedNtivxLPiuWMMPxH+aTbKZQv2QBb9lpiZb/8= -github.com/OpenDiablo2/D2Shared v0.0.0-20191222011122-c8cfab029ae6/go.mod h1:mY8Ll5/iLRAQsaHvIdqSZiHX3aFCys/Q4Sot+xYpero= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 h1:JYp7IbQjafoB+tBA3gMyHYHrpOtNuDiK/uB5uXxq5wM= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d h1:UQZhZ2O0vMHr2cI+DC1Mbh0TJxzA3RcLoMsFw+aXw7E= @@ -16,6 +14,8 @@ github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72 h1:b+9H1GAsx5 github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-restruct/restruct v0.0.0-20191018101351-5fb876c952c9 h1:f25lTFrAliLucJ3G6a9PcgyaGXA6omEF+682jgfC+7U= github.com/go-restruct/restruct v0.0.0-20191018101351-5fb876c952c9/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= +github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1 h1:LoN2wx/aN8JPGebG+2DaUyk4M+xRcqJXfuIbs8AWHdE= +github.com/go-restruct/restruct v0.0.0-20191227155143-5734170a48a1/go.mod h1:KqrpKpn4M8OLznErihXTGLlsXFGeLxHUrLRRI/1YjGk= github.com/gofrs/flock v0.7.1 h1:DP+LD/t0njgoPBvT5MJLeliUIVQR03hiKR6vezdwHlc= github.com/gofrs/flock v0.7.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= diff --git a/main.go b/main.go index 11d4b0ed..82cea5ea 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,8 @@ package main import ( + "github.com/OpenDiablo2/OpenDiablo2/d2common" + "github.com/OpenDiablo2/OpenDiablo2/d2data/d2mpq" "image" "log" @@ -11,9 +13,6 @@ import ( "github.com/hajimehoshi/ebiten/ebitenutil" - "github.com/OpenDiablo2/D2Shared/d2common" - - "github.com/OpenDiablo2/D2Shared/d2data/d2mpq" "github.com/OpenDiablo2/OpenDiablo2/d2core" "github.com/hajimehoshi/ebiten" "gopkg.in/alecthomas/kingpin.v2"