├── .gitignore ├── LICENSE ├── LICENSE.OGL ├── README ├── adm ├── daemon │ ├── advance_d.c │ ├── alchemist_d.c │ ├── astronomy_d.c │ ├── ava_finger_d.c │ ├── average_age_d.c │ ├── banish.c │ ├── bank_d.c │ ├── bboard_d.c │ ├── bell_d.c │ ├── calc_stuff_d.c │ ├── cleaning_d.c │ ├── debug_d.c │ ├── dm_npc_d.c │ ├── error_handler_d.c │ ├── faction_d.c │ ├── finger_d.c │ ├── gtest_d.c │ ├── inactive_users_d.c │ ├── ipc.c │ ├── killing_d.c │ ├── lang_d.c │ ├── lawbounty_d.c │ ├── logging_d.c │ ├── party_d.c │ ├── perma_d.c │ ├── prison_d.c │ ├── pwgen.c │ ├── race_d.c │ ├── refs_d.c │ ├── screen_d.c │ ├── services.c │ ├── shutdown_d.c │ ├── silence_d.c │ ├── skills_d.c │ ├── titles.c │ ├── treasure_d.c │ ├── user_age_d.c │ ├── user_call.c │ ├── user_d.c │ └── virtual_d.c ├── db │ ├── access.db.example │ ├── groups.db.example │ ├── languages.db │ ├── mon_races │ │ ├── arachnid │ │ ├── centaur │ │ ├── dragon │ │ ├── equine │ │ ├── fhuman │ │ ├── fowl │ │ ├── insectoid │ │ ├── insectoid-winged │ │ ├── junk │ │ ├── merperson │ │ ├── quadruped │ │ ├── reptile │ │ └── snake │ ├── preload.db │ ├── preload_socket.db │ ├── privs.db.example │ ├── races.db │ ├── races │ │ ├── alaghi │ │ ├── centaur │ │ ├── deva │ │ ├── draconian │ │ ├── dragon │ │ ├── dwarf │ │ ├── elf │ │ ├── elven-dragon │ │ ├── flayer │ │ ├── gnome │ │ ├── half-elf │ │ ├── halfling │ │ ├── human │ │ ├── minotaur │ │ ├── pegataur │ │ ├── quadruped │ │ ├── saurian │ │ ├── sixarms │ │ └── wemic │ ├── test │ └── updates │ │ ├── access.db │ │ ├── groups.db │ │ └── privs.db ├── failsafe │ ├── Object_failsafe.c │ ├── adt_defs.h │ ├── alias_failsafe.c │ ├── autoload_failsafe.c │ ├── balance.h │ ├── bitflags_failsafe.c │ ├── body_failsafe.c │ ├── clock.h │ ├── combat_failsafe.c │ ├── commands.h │ ├── config.h │ ├── container_failsafe.c │ ├── council.h │ ├── cstack_failsafe.c │ ├── daemons.h │ ├── damage_types.h │ ├── dieties.h │ ├── dirs.h │ ├── edit_failsafe.c │ ├── env_failsafe.c │ ├── flags.h │ ├── follow_failsafe.c │ ├── history_failsafe.c │ ├── innate_failsafe.c │ ├── lang_failsafe.c │ ├── langs.h │ ├── level_limits.h │ ├── living_failsafe.c │ ├── living_failsafe.h │ ├── magic.h │ ├── messages_failsafe.c │ ├── money.h │ ├── money_failsafe.c │ ├── more_failsafe.c │ ├── move.h │ ├── move_failsafe.c │ ├── new_exp_table.h │ ├── nickname_failsafe.c │ ├── nicknames_failsafe.c │ ├── object.h │ ├── objects.h │ ├── party.h │ ├── reboot____the____mud.c │ ├── refs_failsafe.c │ ├── rooms.h │ ├── save_failsafe.c │ ├── security.h │ ├── skills_failsafe.c │ ├── spellcaster_failsafe.c │ ├── std.h │ ├── trace_failsafe.c │ ├── trap_data_failsafe.c │ ├── tsh_failsafe.c │ ├── tsh_failsafe.h │ ├── user_failsafe.c │ ├── user_failsafe.h │ ├── valid_bonuses.h │ ├── weaponless_users_failsafe.c │ └── wild_card_failsafe.c ├── include │ ├── abalance.h │ ├── acheck.log │ ├── adt_defs.h │ ├── ansi.h │ ├── arena.h │ ├── astronomy.h │ ├── balance.h │ ├── bank.h │ ├── bboard.h │ ├── brewing.h │ ├── clock.h │ ├── commands.h │ ├── conf.h │ ├── config.h │ ├── council.h │ ├── daemons.h │ ├── damage_types.h │ ├── databases.h │ ├── debug.h │ ├── dirs.h │ ├── dontrid.h │ ├── druids.h │ ├── effect.h │ ├── files.h │ ├── flags.h │ ├── globals.h │ ├── government.h │ ├── law.h │ ├── lawbounty.h │ ├── level_limits.h │ ├── living.h │ ├── localtime.h │ ├── macros.h │ ├── magic.h │ ├── mbalance.h │ ├── mistletoe.h │ ├── money.h │ ├── move.h │ ├── network.h │ ├── new_exp_table.h │ ├── news.h │ ├── object.h │ ├── objects.h │ ├── old_items.h │ ├── old_room.h │ ├── old_weapon.h │ ├── options.h │ ├── parse_com.h │ ├── party.h │ ├── pator_std.h │ ├── post.h │ ├── priest.h │ ├── pwgen.h │ ├── restore.h │ ├── rooms.h │ ├── save.h │ ├── security.h │ ├── simul_efun.c │ ├── simul_efun.h │ ├── socket.h │ ├── sort.h │ ├── soul.h │ ├── standards.h │ ├── std.h │ ├── stdprops.h │ ├── stealth.h │ ├── str_fmt.h │ ├── tell.h │ ├── terrain.h │ ├── test │ │ └── test.h │ ├── titles.h │ ├── treasure.h │ ├── tsh.h │ ├── tsh2.h │ ├── udp.h │ ├── user.h │ ├── voting.h │ ├── wbalance.h │ ├── wcheck.log │ ├── weather.h │ └── writef.h ├── obj │ ├── listener.c │ ├── login.c │ ├── master.c │ ├── pacct.c │ ├── pacct_login.c │ ├── server.c │ ├── simul_efun.c │ └── user_account.c └── simul_efun │ ├── absolute_value.c │ ├── alignment_ok.c │ ├── all_living.c │ ├── all_present.c │ ├── ambassadorp.c │ ├── archp.c │ ├── arrange_string.c │ ├── array.c │ ├── article.c │ ├── atoi.c │ ├── avatarp.c │ ├── base_name.c │ ├── broadcast_area.c │ ├── communications.c │ ├── consolidate.c │ ├── copy.c │ ├── creator_file.c │ ├── deep_present.c │ ├── destall.c │ ├── domain_master.c │ ├── economy.c │ ├── effective_light.c │ ├── events.c │ ├── evil.c │ ├── file_exists.c │ ├── find_object_or_load.c │ ├── format_page.c │ ├── format_string.c │ ├── gender.c │ ├── get_area_name.c │ ├── get_dirs.c │ ├── get_object.c │ ├── gets.c │ ├── good.c │ ├── hiddenp.c │ ├── high_mortalp.c │ ├── identify.c │ ├── interact.c │ ├── leaderp.c │ ├── log_file.c │ ├── member_group.c │ ├── merge.c │ ├── mud_info.c │ ├── nearbyRooms.c │ ├── newbiep.c │ ├── npcpresent.c │ ├── ordinal.c │ ├── overrides.c │ ├── owner_euid.c │ ├── parse_command.c │ ├── parse_objects.c │ ├── path_file.c │ ├── pbar.c │ ├── percent.c │ ├── read_database.c │ ├── realmso.c │ ├── resolv_path.c │ ├── roll_dice.c │ ├── stringInSet.c │ ├── substr.c │ ├── tail.c │ ├── tell_player.c │ ├── time.c │ ├── time_funcs.c │ ├── to_object.c │ ├── total_light.c │ ├── translate.c │ ├── user_busted.c │ ├── user_exists.c │ ├── user_path.c │ ├── visible.c │ └── wrap.c ├── cmds ├── adm │ ├── .._over_ │ ├── _addguest.c │ ├── _admclear_relationships.c │ ├── _admwatch.c │ ├── _allow.c │ ├── _archshout.c │ ├── _arrest.c │ ├── _artest.c │ ├── _avmaker.c │ ├── _bench.c │ ├── _bestow.c │ ├── _broadcast.c │ ├── _cache.c │ ├── _callouts.c │ ├── _commands.c │ ├── _cref.c │ ├── _demote.c │ ├── _dir.c │ ├── _dumpallobj.c │ ├── _economy.c │ ├── _elections.c │ ├── _emaillist.c │ ├── _emailpurge.c │ ├── _events.c │ ├── _fdinfo.c │ ├── _fixlevels.c │ ├── _hpadjust.c │ ├── _ice.c │ ├── _immpurge.c │ ├── _ipbanish.c │ ├── _iplist.c │ ├── _lastonlist.c │ ├── _link.c │ ├── _mkinvis.c │ ├── _mkvis.c │ ├── _monitor.c │ ├── _netstats.c │ ├── _newsadm.c │ ├── _officekey.c │ ├── _opcprof.c │ ├── _pardon.c │ ├── _passchange.c │ ├── _players.c │ ├── _purge.c │ ├── _ranklist.c │ ├── _reboot.c │ ├── _register.c │ ├── _removeguest.c │ ├── _setreboot.c │ ├── _shutdown.c │ ├── _snipe.c │ ├── _unallow.c │ ├── _unbanish.c │ ├── _unblock.c │ ├── _unipbanish.c │ ├── _unlink.c │ ├── _unregister.c │ ├── _unretire.c │ ├── _unwatch.c │ ├── _whoallowed.c │ ├── _whobanished.c │ ├── _whoguests.c │ ├── _whoiblocked.c │ ├── _whoipbanished.c │ ├── _whoprisoned.c │ ├── _whoregistered.c │ ├── _whoretired.c │ ├── _whowatched.c │ ├── _wizmaker.c │ ├── _xmote.c │ └── iceobject.c ├── ambassador │ ├── _home.c │ ├── _safeI.c │ └── _wizlounge.c ├── avatar │ ├── _aclist.c │ ├── _addnwp.c │ ├── _age.c │ ├── _alignchange.c │ ├── _alignment.c │ ├── _alterobj.c │ ├── _arealist.c │ ├── _army.c │ ├── _assmark.c │ ├── _autotax.c │ ├── _avbroadcast.c │ ├── _avclone.c │ ├── _avitem.c │ ├── _avlog.c │ ├── _avpost.c │ ├── _avsay.c │ ├── _bounties.c │ ├── _changeself.c │ ├── _charswitch.c │ ├── _check.c │ ├── _checkhp.c │ ├── _ckvis.c │ ├── _dam.c │ ├── _damall.c │ ├── _deepdragon.c │ ├── _delete.c │ ├── _dest.c │ ├── _discussc.c │ ├── _divorce.c │ ├── _dock.c │ ├── _domain.c │ ├── _dualclass.c │ ├── _dummy.c │ ├── _echo.c │ ├── _echoall.c │ ├── _echoarea.c │ ├── _echodeity.c │ ├── _echolist.c │ ├── _echoto.c │ ├── _eddb.c │ ├── _exitem.c │ ├── _fakedeath.c │ ├── _fixlight.c │ ├── _fixnwps.c │ ├── _fixprofs.c │ ├── _forcechat.c │ ├── _forsake.c │ ├── _funds.c │ ├── _getbg.c │ ├── _getdesc.c │ ├── _goto.c │ ├── _grafitti.c │ ├── _grant.c │ ├── _hppreview.c │ ├── _inven.c │ ├── _invis.c │ ├── _item.c │ ├── _killers.c │ ├── _knightp.c │ ├── _knockdown.c │ ├── _langs.c │ ├── _levelcap.c │ ├── _listalias.c │ ├── _listdeaths.c │ ├── _logmore.c │ ├── _logtail.c │ ├── _lounge.c │ ├── _lstock.c │ ├── _makebardcomp.c │ ├── _makegem.c │ ├── _makeroom.c │ ├── _makescroll.c │ ├── _marry.c │ ├── _massid.c │ ├── _mats.c │ ├── _mindnet.c │ ├── _newbiep.c │ ├── _newcloth.c │ ├── _newdeaths.c │ ├── _newmetal.c │ ├── _newrp.c │ ├── _newwood.c │ ├── _note.c │ ├── _npc.c │ ├── _nwpbonus.c │ ├── _nwpcap.c │ ├── _nwptrainers.c │ ├── _objects.c │ ├── _orb.c │ ├── _parties.c │ ├── _pdesc.c │ ├── _peo.c │ ├── _personabg.c │ ├── _phase.c │ ├── _pinfo.c │ ├── _pkills.c │ ├── _plea.c │ ├── _plog.c │ ├── _poses.c │ ├── _profile.c │ ├── _profiledelete.c │ ├── _quietness.c │ ├── _races.c │ ├── _racetoggle.c │ ├── _randscroll.c │ ├── _refresh.c │ ├── _reinven.c │ ├── _renchant.c │ ├── _renown.c │ ├── _restore.c │ ├── _restrict.c │ ├── _revive.c │ ├── _rolld.c │ ├── _rope.c │ ├── _rstock.c │ ├── _savefile.c │ ├── _saves.c │ ├── _set_listen.c │ ├── _set_smell.c │ ├── _setagg.c │ ├── _setatt.c │ ├── _skillset.c │ ├── _slay.c │ ├── _spellset.c │ ├── _stat.c │ ├── _stock.c │ ├── _stop.c │ ├── _tax.c │ ├── _temples.c │ ├── _thiefskills.c │ ├── _truce.c │ ├── _uncon.c │ ├── _unrestrict.c │ ├── _unswarm.c │ ├── _users.c │ ├── _vis.c │ ├── _whereare.c │ ├── _whoami.c │ ├── _wizfollow.c │ ├── _wizfood.c │ ├── _wizheal.c │ ├── _wizstatus.c │ ├── _wlisten.c │ ├── _wp.c │ ├── _xpneeded.c │ ├── armor.c │ ├── armor2.c │ ├── armor3.c │ ├── armyremote.c │ ├── avatar_room.c │ ├── avatar_room_generator.c │ ├── avitem.c │ ├── avpostob.c │ ├── avsay.c │ ├── forcechat.c │ ├── generic_guard.c │ ├── guard_key.c │ ├── hpcheck.c │ ├── item.c │ ├── item2.c │ ├── items.h │ ├── new_weapon.c │ ├── orb.c │ ├── perbackobj.c │ ├── pocketarmor2.c │ ├── robeconceal.c │ ├── types.h │ ├── valid_armors.h │ ├── valid_weapons.h │ ├── weapon.c │ ├── weapon2.c │ └── weapon3.c ├── bard │ ├── _detect.c │ ├── _lore.c │ ├── _make.c │ ├── _song.c │ ├── _story.c │ ├── loreedit.c │ ├── songobj.c │ └── storyobj.c ├── cavalier │ ├── charge.c │ └── followers │ │ ├── cleric.c │ │ ├── dumbyroom.c │ │ ├── fighter.c │ │ ├── follower.c │ │ ├── mage.c │ │ └── thief.c ├── creator │ ├── _ac.c │ ├── _acheck.c │ ├── _authors.c │ ├── _banish.c │ ├── _bkup.c │ ├── _callout.c │ ├── _channel.c │ ├── _channels.c │ ├── _checkroom.c │ ├── _chpw.c │ ├── _classblock.c │ ├── _clean_spellbooks.c │ ├── _closeips.c │ ├── _codeblock.c │ ├── _dest.c │ ├── _dirupdate.c │ ├── _domains.c │ ├── _elog.c │ ├── _force.c │ ├── _format.c │ ├── _from.c │ ├── _gtest.c │ ├── _home.c │ ├── _iupdate.c │ ├── _lmap.c │ ├── _localcmds.c │ ├── _locate.c │ ├── _malloc.c │ ├── _man.c │ ├── _memory.c │ ├── _mraces.c │ ├── _mstatus.c │ ├── _netstat.c │ ├── _online.c │ ├── _permspells.c │ ├── _popd.c │ ├── _pushd.c │ ├── _quietness.c │ ├── _rcheck.c │ ├── _realms.c │ ├── _rehash.c │ ├── _renew.c │ ├── _replog.c │ ├── _rerollhitpoints.c │ ├── _reset.c │ ├── _retire.c │ ├── _savecheck.c │ ├── _scan.c │ ├── _snoop.c │ ├── _sponsor.c │ ├── _summon.c │ ├── _td.c │ ├── _testcharacter.c │ ├── _unbundle.c │ ├── _unmove.c │ ├── _unref.c │ ├── _vacation.c │ ├── _wcheck.c │ ├── _wemote.c │ ├── _whichalias.c │ └── wcheck.log ├── database │ ├── soul.db │ └── where.db ├── druid │ ├── _surge.c │ ├── druids │ │ ├── Meditate.c │ │ ├── _allowed.c │ │ ├── _compare.c │ │ ├── _dhelp.c │ │ ├── _dieties.c │ │ ├── _dreport.c │ │ ├── _drub.c │ │ ├── _druids.c │ │ ├── _dversion.c │ │ ├── _forsight.c │ │ ├── _max_unallowed_rank.c │ │ ├── _meditate.c │ │ ├── _monster_summoning_1.c │ │ ├── _monster_summoning_2.c │ │ ├── _monster_summoning_3.c │ │ ├── _smokescreen.c │ │ ├── _spell_list.c │ │ ├── _spells.c │ │ └── _update_memorized.c │ └── spells │ │ └── _earthshaker.c ├── feats │ ├── a │ │ ├── _ambidexterity.c │ │ ├── _animal_companion.c │ │ ├── _animal_fury.c │ │ ├── _apoapsis_of_power.c │ │ ├── _arcana_reflection.c │ │ ├── _arcane_arrows.c │ │ ├── _arcane_perfection.c │ │ ├── _arcane_pool.c │ │ ├── _armor_bond.c │ │ ├── _armor_mastery.c │ │ ├── _armor_training.c │ │ ├── _armored_caster.c │ │ ├── _armored_manifester.c │ │ ├── _artful_precision.c │ │ ├── _aspect_of_the_beast.c │ │ ├── _augment_physical_prowess.c │ │ ├── _aura_of_courage.c │ │ ├── _aura_of_fury.c │ │ ├── _aura_of_justification.c │ │ └── _aura_of_resolve.c │ ├── b │ │ ├── _bane.c │ │ ├── _battle_psyche.c │ │ ├── _beast_claws.c │ │ ├── _beast_hide.c │ │ ├── _beast_rush.c │ │ ├── _bestial_frenzy.c │ │ ├── _blade_block.c │ │ ├── _bladesong.c │ │ ├── _blindfight.c │ │ ├── _body_fuel.c │ │ ├── _bonded_steed.c │ │ ├── _book_of_shadows.c │ │ ├── _bravery.c │ │ └── _brew_potion.c │ ├── c │ │ ├── _canny_defense.c │ │ ├── _champion.c │ │ ├── _channel.c │ │ ├── _channel_smite.c │ │ ├── _charge.c │ │ ├── _chosen_animal.c │ │ ├── _clone_scroll.c │ │ ├── _closed_mind.c │ │ ├── _combat_manifester.c │ │ ├── _combat_reflexes.c │ │ ├── _combatprescience.c │ │ ├── _command_the_stone.c │ │ ├── _contingent_healing.c │ │ ├── _corrosive_arcana.c │ │ ├── _counter.c │ │ ├── _countersong.c │ │ ├── _craft_magical_equipment.c │ │ └── _crit.c │ ├── d │ │ ├── _damage_reduction.c │ │ ├── _damage_resistance.c │ │ ├── _danger_sense.c │ │ ├── _daze.c │ │ ├── _deadeye.c │ │ ├── _deadly_song.c │ │ ├── _death_arrow.c │ │ ├── _death_touch.c │ │ ├── _death_ward.c │ │ ├── _dedication.c │ │ ├── _defenders_presence.c │ │ ├── _defensive_roll.c │ │ ├── _deflection.c │ │ ├── _devoted_arcana.c │ │ ├── _diamond_soul.c │ │ ├── _dirge_of_doom.c │ │ ├── _disarm.c │ │ ├── _discipline.c │ │ ├── _disruptive.c │ │ ├── _divine_domain.c │ │ ├── _divine_health.c │ │ └── _dodge.c │ ├── e │ │ ├── _earthen_blood.c │ │ ├── _elaborate_parry.c │ │ ├── _eldritch_conditioning.c │ │ ├── _eldritch_warfare.c │ │ ├── _elemental_attunement.c │ │ ├── _elemental_opportunist.c │ │ ├── _elusive_spellcraft.c │ │ ├── _empty_body.c │ │ ├── _enchant.c │ │ ├── _enchanted_fists.c │ │ ├── _enduring_arcana.c │ │ ├── _enduring_warding.c │ │ ├── _energy_resistance.c │ │ ├── _enhance_scroll.c │ │ ├── _enruned_great_weapon.c │ │ ├── _enruned_offhand.c │ │ ├── _enruned_shield.c │ │ ├── _epic_toughness.c │ │ ├── _epic_weapon_focus.c │ │ ├── _epic_weapon_specialization.c │ │ ├── _evasion.c │ │ ├── _exotic_weapon_proficiency.c │ │ ├── _expanded_knowledge_1.c │ │ ├── _expanded_knowledge_2.c │ │ ├── _expanded_knowledge_3.c │ │ ├── _expanded_knowledge_common.h │ │ ├── _expertise.c │ │ └── _exploit_weakness.c │ ├── f │ │ ├── _fated.c │ │ ├── _favored_enemy.c │ │ ├── _favored_terrain.c │ │ ├── _fearless_rage.c │ │ ├── _fighter_training.c │ │ ├── _fists_of_fury.c │ │ ├── _flawless_control.c │ │ ├── _flurry_of_blows.c │ │ ├── _force_of_personality.c │ │ ├── _frenzy_ward.c │ │ └── _frightening_tune.c │ ├── g │ │ ├── _gift_of_the_shadows.c │ │ ├── _grandmaster_of_the_way.c │ │ ├── _greater_arcane_pool.c │ │ ├── _greater_arsenal.c │ │ ├── _greater_enduring_arcana.c │ │ ├── _greater_enduring_warding.c │ │ ├── _greater_enruned_great_weapon.c │ │ ├── _greater_enruned_offhand.c │ │ ├── _greater_enruned_shield.c │ │ ├── _greater_penetrating_strike.c │ │ ├── _greater_rage.c │ │ ├── _greater_spell_access.c │ │ ├── _greater_spell_knowledge.c │ │ ├── _greater_spell_mastery.c │ │ ├── _greater_spell_penetration.c │ │ ├── _greater_spell_power.c │ │ ├── _greater_weapon_focus.c │ │ ├── _greater_weapon_specialization.c │ │ ├── _greaterpsionicweapon.c │ │ └── _guarded_stance.c │ ├── h │ │ ├── _hardenedminions.c │ │ ├── _heavy_armor_proficiency.c │ │ ├── _hellfire_blast.c │ │ ├── _hide_in_plain_sight.c │ │ ├── _holy_purpose.c │ │ └── _hunters_bond.c │ ├── i │ │ ├── _impale.c │ │ ├── _improved_channel.c │ │ ├── _improved_damage_resistance.c │ │ ├── _improved_dodge.c │ │ ├── _improved_prescience.c │ │ ├── _improved_quarry.c │ │ ├── _improved_rapid_strikes.c │ │ ├── _improved_resistance.c │ │ ├── _improved_rush.c │ │ ├── _improved_shieldbash.c │ │ ├── _improved_spell_power.c │ │ ├── _improved_spell_recall.c │ │ ├── _improved_toughness.c │ │ ├── _improved_two_weapon_fighting.c │ │ ├── _improved_whirl.c │ │ ├── _increased_damage_reduction_i.c │ │ ├── _increased_damage_reduction_ii.c │ │ ├── _increased_damage_reduction_iii.c │ │ ├── _increased_resistance.c │ │ ├── _indomitable.c │ │ ├── _indomitable_mount.c │ │ ├── _infernal_practitioner.c │ │ ├── _insightful_scroll.c │ │ ├── _inspire.c │ │ ├── _inspire_competence.c │ │ ├── _inspire_courage.c │ │ ├── _inspire_greatness.c │ │ ├── _inspire_heroics.c │ │ ├── _inspired_necromancy.c │ │ ├── _internal_fortitude.c │ │ └── _invisible_thief.c │ ├── j │ │ └── _judgement.c │ ├── k │ │ ├── _kinetic_conversion.c │ │ └── _knockdown.c │ ├── l │ │ ├── _layonhands.c │ │ ├── _leadership.c │ │ ├── _legendary_blade.c │ │ ├── _lethal_stance.c │ │ ├── _lethal_strikes.c │ │ ├── _lifeless_shroud.c │ │ ├── _light_armor_proficiency.c │ │ ├── _light_weapon.c │ │ └── _lightning_reflexes.c │ ├── m │ │ ├── _magic_arsenal.c │ │ ├── _magic_school.c │ │ ├── _magus_armor.c │ │ ├── _manyshot.c │ │ ├── _martial_weapon_proficiency.c │ │ ├── _mask_of_mortality.c │ │ ├── _master_of_elements.c │ │ ├── _master_of_versatility.c │ │ ├── _master_strike.c │ │ ├── _masters_parry.c │ │ ├── _mastery_of_fang_and_claw.c │ │ ├── _mastery_of_power.c │ │ ├── _medium_armor_proficiency.c │ │ ├── _mental_fortress.c │ │ ├── _metabolic_perfection.c │ │ ├── _mighty_rage.c │ │ ├── _mighty_resilience.c │ │ ├── _mind_before_matter.c │ │ ├── _mind_over_matter.c │ │ ├── _mind_partition.c │ │ ├── _mind_wave.c │ │ ├── _mobility.c │ │ ├── _monster_lore.c │ │ ├── _mounted_combat.c │ │ ├── _mounted_shield.c │ │ └── _mystic_arcana.c │ ├── n │ │ ├── _natural_fighting.c │ │ ├── _natural_perfection.c │ │ ├── _natures_gift.c │ │ ├── _negative_energy_conduit.c │ │ └── _no_fear_of_the_flame.c │ ├── o │ │ ├── _one_with_the_shadows.c │ │ ├── _opportunistic_parry.c │ │ └── _opportunity_strikes.c │ ├── obj │ │ ├── flee.c │ │ ├── inspiration.c │ │ ├── judgement.c │ │ ├── quivering_object.c │ │ └── rage.c │ ├── p │ │ ├── _pack_leader.c │ │ ├── _parry.c │ │ ├── _penetrating_strike.c │ │ ├── _perfect_caster.c │ │ ├── _perfect_manifesting.c │ │ ├── _perfect_predator.c │ │ ├── _perfect_self.c │ │ ├── _perfection.c │ │ ├── _persistent_rage.c │ │ ├── _point_blank_shot.c │ │ ├── _positioning.c │ │ ├── _power_surge.c │ │ ├── _powerattack.c │ │ ├── _precise_strikes.c │ │ ├── _preciseshot.c │ │ ├── _psionic_body.c │ │ ├── _psionicweapon.c │ │ └── _purity_of_body.c │ ├── q │ │ ├── _quarry.c │ │ └── _quivering_palm.c │ ├── r │ │ ├── _radiant_aura.c │ │ ├── _rage.c │ │ ├── _ragecaster.c │ │ ├── _raging_healer.c │ │ ├── _rangers_endurance.c │ │ ├── _rapid_strikes.c │ │ ├── _reflection.c │ │ ├── _reflexive_dodge.c │ │ ├── _regeneration.c │ │ ├── _remember_the_future.c │ │ ├── _renewed_vigor.c │ │ ├── _resist_undead.c │ │ ├── _resistance.c │ │ ├── _ride-by_attack.c │ │ └── _rush.c │ ├── s │ │ ├── _sanguine_bloodline.c │ │ ├── _savage_instincts_i.c │ │ ├── _savage_instincts_ii.c │ │ ├── _savage_instincts_iii.c │ │ ├── _school_familiarity.c │ │ ├── _scramble.c │ │ ├── _scribe.c │ │ ├── _second_divine_domain.c │ │ ├── _second_favored_enemy.c │ │ ├── _second_favored_terrain.c │ │ ├── _second_judgement.c │ │ ├── _seen_it_before.c │ │ ├── _shadow_apotheosis.c │ │ ├── _shadow_jump.c │ │ ├── _shadow_master.c │ │ ├── _shadow_opportunist.c │ │ ├── _shadow_perception.c │ │ ├── _shapeshift.c │ │ ├── _shatter.c │ │ ├── _shield_charge.c │ │ ├── _shield_master.c │ │ ├── _shield_of_whirling_steel.c │ │ ├── _shield_proficiency.c │ │ ├── _shieldbash.c │ │ ├── _shieldwall.c │ │ ├── _shot_on_the_run.c │ │ ├── _simple_weapon_proficiency.c │ │ ├── _skill_focus.c │ │ ├── _skull_collector.c │ │ ├── _slay_the_undead.c │ │ ├── _slayer.c │ │ ├── _smite.c │ │ ├── _smite_the_lifeless.c │ │ ├── _soothing_song.c │ │ ├── _spell_combat.c │ │ ├── _spell_counterstrike.c │ │ ├── _spell_critical.c │ │ ├── _spell_focus.c │ │ ├── _spell_knowledge.c │ │ ├── _spell_penetration.c │ │ ├── _spell_power.c │ │ ├── _spell_recall.c │ │ ├── _spell_reflection.c │ │ ├── _spellbreaker.c │ │ ├── _spellcasting_harrier.c │ │ ├── _spellmastery.c │ │ ├── _spellstrike.c │ │ ├── _spinning_kick.c │ │ ├── _spirit_warrior.c │ │ ├── _spiritual_body.c │ │ ├── _spring_attack.c │ │ ├── _stalwart.c │ │ ├── _stillness_of_mind.c │ │ ├── _strength_of_arm.c │ │ ├── _stunning_strike.c │ │ ├── _sunder.c │ │ ├── _supreme_healer.c │ │ ├── _surprise_spells.c │ │ ├── _sweepingblow.c │ │ └── _swipe.c │ ├── t │ │ ├── _temporal_displacement.c │ │ ├── _the_reaping.c │ │ ├── _theurgic_perfection.c │ │ ├── _third_divine_domain.c │ │ ├── _third_favored_enemy.c │ │ ├── _third_favored_terrain.c │ │ ├── _third_judgement.c │ │ ├── _thundering_arcana.c │ │ ├── _timeless_body.c │ │ ├── _timestop_volley.c │ │ ├── _timeweaver.c │ │ ├── _tireless_rage.c │ │ ├── _titan_grip.c │ │ ├── _tome_of_ancient_secrets.c │ │ ├── _tongue_of_the_sun_and_moon.c │ │ ├── _tools_of_the_trade.c │ │ ├── _toughness.c │ │ ├── _track.c │ │ ├── _tracklessstep.c │ │ ├── _trample.c │ │ ├── _tricky_spells.c │ │ ├── _true_judgement.c │ │ ├── _true_strikes.c │ │ └── _two_weapon_fighting.c │ ├── u │ │ ├── _unarmed_combat.c │ │ ├── _unarmed_parry.c │ │ ├── _unarmored_defense.c │ │ ├── _unassailable_parry.c │ │ ├── _undead_cohort.c │ │ ├── _undead_graft.c │ │ ├── _unyielding_rage.c │ │ └── _unyielding_soul.c │ ├── v │ │ ├── _venom_immunity.c │ │ └── _void_stalker.c │ └── w │ │ ├── _wade_through.c │ │ ├── _warding.c │ │ ├── _way_of_the_learned_pupil.c │ │ ├── _way_of_the_merciful_soul.c │ │ ├── _weapon_bond.c │ │ ├── _weapon_finesse.c │ │ ├── _weapon_focus.c │ │ ├── _weapon_mastery.c │ │ ├── _weapon_specialization.c │ │ ├── _weapon_training.c │ │ ├── _whirl.c │ │ ├── _whirling_dervish.c │ │ ├── _wild_knowledge.c │ │ ├── _wild_shape_dragon.c │ │ ├── _wild_shape_elemental.c │ │ ├── _wild_speech.c │ │ └── _wild_spellcraft.c ├── fighter │ ├── _flash.c │ ├── _mystyle.c │ ├── _rescue.c │ └── rush.c ├── guild │ ├── assassin │ │ ├── _fix.c │ │ ├── _go.c │ │ └── _sign.c │ ├── philosopher │ │ └── _cmd.c │ └── witch │ │ ├── _blind.c │ │ ├── _coven.c │ │ ├── _instill.c │ │ ├── _poison.c │ │ ├── _report.c │ │ ├── _smirkle.c │ │ └── _worship.c ├── hm │ ├── .login │ ├── _message.c │ ├── _title.c │ └── hmboard.c ├── law │ ├── TRASH.c │ ├── _imprison.c │ ├── _jailbirds.c │ ├── _lawboard.c │ ├── _pardon.c │ ├── _players.c │ ├── _trash.c │ └── lawmail_master.c ├── mortal │ ├── _abandon.c │ ├── _account.c │ ├── _actions.c │ ├── _adjective.c │ ├── _advance.c │ ├── _alias.c │ ├── _alterobj.c │ ├── _avatarmail.c │ ├── _background.c │ ├── _bboard.c │ ├── _bind.c │ ├── _biography.c │ ├── _blasttype.c │ ├── _blindfold.c │ ├── _block.c │ ├── _bonuses.c │ ├── _brew.c │ ├── _brief.c │ ├── _briefcombat.c │ ├── _buff.c │ ├── _bury.c │ ├── _cast.c │ ├── _chanset.c │ ├── _chfn.c │ ├── _cls.c │ ├── _colors.c │ ├── _combatstyle.c │ ├── _con.c │ ├── _corpselimbs.c │ ├── _craft.c │ ├── _date.c │ ├── _describe.c │ ├── _dig.c │ ├── _discern.c │ ├── _disenchant.c │ ├── _dispell.c │ ├── _ditch.c │ ├── _double_weapon.c │ ├── _drag.c │ ├── _drain.c │ ├── _drop.c │ ├── _eavesdrop.c │ ├── _elementalist.c │ ├── _emote.c │ ├── _emoteat.c │ ├── _enhance.c │ ├── _eq.c │ ├── _factions.c │ ├── _feats.c │ ├── _finger.c │ ├── _fixitem.c │ ├── _fixmore.c │ ├── _fixroom.c │ ├── _fixspells.c │ ├── _flag.c │ ├── _flee.c │ ├── _follow.c │ ├── _follower.c │ ├── _followers.c │ ├── _forage.c │ ├── _forget.c │ ├── _fortune.c │ ├── _gag.c │ ├── _game.c │ ├── _gather.c │ ├── _get.c │ ├── _give.c │ ├── _glance.c │ ├── _gossip.c │ ├── _heal.c │ ├── _help.c │ ├── _hide.c │ ├── _hide_in_shadows.c │ ├── _history.c │ ├── _hit.c │ ├── _horses.c │ ├── _hp.c │ ├── _hunt.c │ ├── _ignore.c │ ├── _inactive.c │ ├── _inventory.c │ ├── _keep.c │ ├── _ki.c │ ├── _kill.c │ ├── _languages.c │ ├── _last.c │ ├── _lawmail.c │ ├── _levelcheck.c │ ├── _limbs.c │ ├── _lines.c │ ├── _look.c │ ├── _mail.c │ ├── _map.c │ ├── _master.c │ ├── _message.c │ ├── _mmap.c │ ├── _money.c │ ├── _nickname.c │ ├── _offer.c │ ├── _offerall.c │ ├── _party.c │ ├── _passwd.c │ ├── _pcnote.c │ ├── _peer.c │ ├── _pkmail.c │ ├── _plant.c │ ├── _poison.c │ ├── _pose.c │ ├── _pp.c │ ├── _prepare.c │ ├── _prepareproto.c │ ├── _prompt.c │ ├── _protect.c │ ├── _recall.c │ ├── _recognize.c │ ├── _remember.c │ ├── _remove.c │ ├── _repair.c │ ├── _reply.c │ ├── _report.c │ ├── _review.c │ ├── _reward.c │ ├── _rumors.c │ ├── _save.c │ ├── _say.c │ ├── _score.c │ ├── _seal.c │ ├── _set.c │ ├── _shoo.c │ ├── _show.c │ ├── _sign.c │ ├── _skills.c │ ├── _skin.c │ ├── _sneak.c │ ├── _speak.c │ ├── _speech.c │ ├── _spells.c │ ├── _spy.c │ ├── _stab.c │ ├── _stats.c │ ├── _steal.c │ ├── _strip.c │ ├── _struggle.c │ ├── _stuck.c │ ├── _study.c │ ├── _submit.c │ ├── _suicide.c │ ├── _switchback.c │ ├── _teach.c │ ├── _tell.c │ ├── _tellblock.c │ ├── _thought.c │ ├── _threaten.c │ ├── _throw.c │ ├── _trap.c │ ├── _unalias.c │ ├── _unbind.c │ ├── _unblindfold.c │ ├── _unblock.c │ ├── _unfollow.c │ ├── _ungag.c │ ├── _unignore.c │ ├── _unnickname.c │ ├── _unprotect.c │ ├── _unremember.c │ ├── _unwear.c │ ├── _unwield.c │ ├── _uptime.c │ ├── _version.c │ ├── _vote.c │ ├── _wake.c │ ├── _walk.c │ ├── _wear.c │ ├── _wearall.c │ ├── _weather.c │ ├── _whisper.c │ ├── _whistle.c │ ├── _who.c │ ├── _wield.c │ ├── _wimpy.c │ ├── _wimpydir.c │ ├── _wing.c │ ├── _wizlog.c │ ├── _write.c │ ├── _yell.c │ ├── backobj.c │ ├── blindfold.c │ ├── em.c │ ├── followers │ │ ├── bard.c │ │ ├── cleric.c │ │ ├── dumbyroom.c │ │ ├── fighter.c │ │ ├── follower.c │ │ ├── mage.c │ │ ├── monk.c │ │ ├── psion.c │ │ └── thief.c │ ├── heal.c │ ├── hide.c │ ├── hunted_mon.c │ ├── make │ │ ├── m_armour.c │ │ ├── m_armour.h │ │ ├── m_monster.c │ │ ├── m_monster.h │ │ ├── m_room.c │ │ ├── m_room.h │ │ ├── m_weapon.c │ │ ├── m_weapon.h │ │ └── makeobj.h │ ├── obj │ │ ├── armorObj.c │ │ ├── buffob.c │ │ ├── digob.c │ │ ├── enchant_ob.c │ │ ├── enchanting_mats.c │ │ ├── featureadd.c │ │ ├── flee.c │ │ ├── genOb.c │ │ ├── genObj.c │ │ ├── jewelObj.c │ │ ├── spellbook.c │ │ ├── tailorObj.c │ │ └── weaponObj.c │ ├── persnoop.c │ ├── room.c │ ├── skill.c │ └── templates │ │ ├── armor.tpl │ │ ├── weapon.tpl │ │ └── wearables.tpl ├── nwps │ └── armor.c ├── over │ ├── _chainupdate.c │ ├── _chkalign.c │ ├── _conv.c │ ├── _deepupdate.c │ ├── _end.c │ ├── _guilds.c │ ├── _hmp.c │ ├── _onlinebounties.c │ ├── _people.c │ ├── _qmsg.c │ ├── _rquestlist.c │ ├── _talk.c │ ├── _updateall.c │ └── _usercall.c ├── priest │ ├── backup │ │ ├── _bestow_curse.c │ │ ├── _dark_aura.c │ │ ├── _dictum.c │ │ ├── _discern_location.c │ │ ├── _fly.c │ │ ├── _holy_orb.c │ │ ├── _lightning_touch.c │ │ ├── _moonfire.c │ │ ├── _unholy_orb.c │ │ └── slay_living.saide.5-19.04 │ ├── godspells │ │ ├── _aqueous_column.c │ │ ├── _battletide.c │ │ ├── _beast_claws.c │ │ ├── _beast_claws.obs │ │ ├── _binders_knowledge.c │ │ ├── _black_talon.crys │ │ ├── _blast_of_force.c │ │ ├── _blizzard.c │ │ ├── _bolt_of_glory.c │ │ ├── _boon_of_lathander.c │ │ ├── _break_curse.bak.cythera │ │ ├── _break_curse.c │ │ ├── _chilling_scythe.saide.5-26-04 │ │ ├── _conjure_air_elemental.c │ │ ├── _conjure_earth_elemental.c │ │ ├── _conjure_fire_elemental.c │ │ ├── _conjure_ice_elemental.c │ │ ├── _conjure_water_elemental.c │ │ ├── _create_treant.c │ │ ├── _creature_of_darkness.c │ │ ├── _curse_of_ill_fortune.c │ │ ├── _dark_suns_rays.c │ │ ├── _dead_march.c │ │ ├── _detect_invisibility.c │ │ ├── _earthenair.c │ │ ├── _earthenair.obs │ │ ├── _faithful_mount.c │ │ ├── _flameform.c │ │ ├── _frozen_breath.c │ │ ├── _gust_of_wind.c │ │ ├── _holy_presence.c │ │ ├── _holy_star.c │ │ ├── _invisibility_purge.c.gar │ │ ├── _kiss_of_beshaba.c │ │ ├── _monsoon.c │ │ ├── _pass_without_a_trace.c │ │ ├── _pride_of_torm.c │ │ ├── _righteous_fury.c │ │ ├── _shocklet.backup405 │ │ ├── _shocklet.c │ │ ├── _slicing_shadows.c │ │ ├── _spectral_panther.c │ │ ├── _stalk.c │ │ ├── _storm_cone.c │ │ ├── _summon_windghost.c │ │ ├── _tsunami.c │ │ └── _winds_of_akadi.c │ ├── hold │ │ ├── _limb_attack.c │ │ └── _shillelagh.c │ ├── obj │ │ ├── dark.c │ │ ├── darkness.c │ │ ├── feast_obj.c │ │ ├── food.c │ │ ├── godsfavor.c │ │ ├── justice_mark.c │ │ ├── justice_scry.c │ │ ├── light.c │ │ ├── mindnet_obj.c │ │ ├── quarter_staff.c │ │ ├── shillelagh.c │ │ ├── shillelagh2.c │ │ └── water.c │ ├── old │ │ ├── _barkskin.c │ │ ├── _create_food.c │ │ ├── _create_water.c │ │ ├── _cure_critical_wounds.c │ │ ├── _cure_light_wounds.c │ │ ├── _cure_serious_wounds.c │ │ ├── _detect_evil.c │ │ ├── _detect_magic.c │ │ ├── _detect_poison.c │ │ ├── _heal.c │ │ ├── _hold_animal.c │ │ ├── _hold_person.c │ │ ├── _know_alignment.c │ │ ├── _light.c │ │ ├── _magic_missile.c │ │ ├── _magical_vestment.c │ │ ├── _neutralize_poison.c │ │ ├── _poison.c │ │ ├── _raise_dead.c │ │ ├── _remove_paralysis.c │ │ ├── _shillelagh.c │ │ ├── _word_of_power.c │ │ ├── magical_vestment.c │ │ └── weapons │ │ │ ├── _beast_claws.c │ │ │ ├── _black_talon.c │ │ │ ├── _chilling_scythe.c │ │ │ ├── _fists_of_stone.c │ │ │ ├── _flame_blade.c │ │ │ ├── _frost_whip.c │ │ │ ├── _ice_blade.c │ │ │ ├── _moon_blade.c │ │ │ ├── _sunblade.c │ │ │ ├── _touchsickle.c │ │ │ ├── _tyrants_morningstar.c │ │ │ ├── _water_whip.c │ │ │ ├── _whip_of_flame.c │ │ │ ├── _whip_of_shar.c │ │ │ ├── _wind_lash.c │ │ │ ├── _wolfjaws.c │ │ │ └── _wood_sword.c │ └── test │ │ └── spell_immunity.c ├── skills │ ├── attic │ │ └── _shield.c │ └── bak │ │ ├── _absorb.c │ │ ├── _aim.c │ │ ├── _annihilate.c │ │ ├── _backstab.c │ │ ├── _blast.c │ │ ├── _bolt.c │ │ ├── _boost.c │ │ ├── _brand.c │ │ ├── _buffer.c │ │ ├── _bump.c │ │ ├── _burn.c │ │ ├── _compare.c │ │ ├── _corrupt.c │ │ ├── _cure.c │ │ ├── _dark.c │ │ ├── _detect.c │ │ ├── _discern.c │ │ ├── _dispell.c │ │ ├── _enchant.c │ │ ├── _fear.c │ │ ├── _feed.c │ │ ├── _fireball.c │ │ ├── _freeze.c │ │ ├── _heal.c │ │ ├── _hold.c │ │ ├── _keep.c │ │ ├── _light.c │ │ ├── _limbs.c │ │ ├── _lockpick.c │ │ ├── _lore.c │ │ ├── _mend.c │ │ ├── _mheal.c │ │ ├── _missile.c │ │ ├── _offer.c │ │ ├── _palm.c │ │ ├── _paralyze.c │ │ ├── _parry.c │ │ ├── _peace.c │ │ ├── _peek.c │ │ ├── _pick.c │ │ ├── _protect.c │ │ ├── _purify.c │ │ ├── _rapture.c │ │ ├── _replace.c │ │ ├── _rot.c │ │ ├── _scry.c │ │ ├── _sense.c │ │ ├── _shield.c │ │ ├── _shock.c │ │ ├── _sneak.c │ │ ├── _steal.1 │ │ ├── _steal.c │ │ ├── _stealth.c │ │ └── _turn.c ├── soul │ ├── atmos.c │ └── soul.db ├── spells │ ├── a │ │ ├── _acid_arrow.c │ │ ├── _acid_breath.c │ │ ├── _acid_dart.c │ │ ├── _acid_fog.c │ │ ├── _acid_orb.c │ │ ├── _acid_splash.c │ │ ├── _adapt_body.c │ │ ├── _aegis_of_fate.c │ │ ├── _aid.c │ │ ├── _air_walk.c │ │ ├── _airbolt.c │ │ ├── _alarm.c │ │ ├── _align_weapon.c │ │ ├── _all_seeing_eyes.c │ │ ├── _alter_self.c │ │ ├── _analyze_dweomer.c │ │ ├── _angelic_aspect.c │ │ ├── _animal_affinity.c │ │ ├── _animal_messenger.c │ │ ├── _animate_dead.c │ │ ├── _animate_object.c │ │ ├── _animate_plants.c │ │ ├── _animus_blast.c │ │ ├── _animus_blizzard.c │ │ ├── _antilife_shell.c │ │ ├── _antimagic_field.c │ │ ├── _apopsi.c │ │ ├── _armor.c │ │ ├── _armor_of_darkness.c │ │ ├── _aspect_of_the_falcon.c │ │ ├── _aspect_of_the_wolf.c │ │ ├── _astral_construct.c │ │ ├── _astral_projection.c │ │ ├── _aura_alteration.c │ │ ├── _aura_of_healing.c │ │ ├── _aura_sight.c │ │ └── _auspicious_bolt.c │ ├── b │ │ ├── _ball_lightning.c │ │ ├── _banshee_blast.c │ │ ├── _barkskin.c │ │ ├── _bears_endurance.c │ │ ├── _beckoned_from_beyond.c │ │ ├── _befuddle.c │ │ ├── _beguiling_influence.c │ │ ├── _bend_reality.c │ │ ├── _beshadowed_blast.c │ │ ├── _bestow_curse.c │ │ ├── _binding_blast.c │ │ ├── _biting_cold.c │ │ ├── _biting_wind.c │ │ ├── _black_tentacles.c │ │ ├── _blade_barrier.c │ │ ├── _blasphemy.c │ │ ├── _bleeding_touch.c │ │ ├── _bless.c │ │ ├── _blight.c │ │ ├── _blinding_flash.c │ │ ├── _blindness.c │ │ ├── _blink.c │ │ ├── _bliss.c │ │ ├── _blood_cauldron.c │ │ ├── _blood_pyre.c │ │ ├── _blood_raze.c │ │ ├── _blurred_movement.c │ │ ├── _body_adjustment.c │ │ ├── _body_blades.c │ │ ├── _body_purification.c │ │ ├── _bolster.c │ │ ├── _bolt_of_force.c │ │ ├── _boneshaker.c │ │ ├── _boneshatter.c │ │ ├── _bramble_armor.c │ │ ├── _break_curse.c │ │ ├── _breath_of_life.c │ │ ├── _breath_of_the_black_dragon.c │ │ ├── _breath_of_the_night.c │ │ ├── _brimstone_blast.c │ │ ├── _broker.c │ │ ├── _brutalize_wounds.c │ │ ├── _bulls_strength.c │ │ ├── _burning_hands.c │ │ └── _burst_of_glory.c │ ├── c │ │ ├── _cacophonic_shield.c │ │ ├── _call_armor.c │ │ ├── _call_crystals.c │ │ ├── _call_lightning.c │ │ ├── _call_lightning_storm.c │ │ ├── _call_to_mind.c │ │ ├── _calm_animal.c │ │ ├── _captivate.c │ │ ├── _casters_lament.c │ │ ├── _castigate.c │ │ ├── _catapsi.c │ │ ├── _cats_grace.c │ │ ├── _cause_critical_wounds.c │ │ ├── _cause_fear.c │ │ ├── _cause_light_wounds.c │ │ ├── _cause_moderate_wounds.c │ │ ├── _cause_serious_wounds.c │ │ ├── _caustic_eruption.c │ │ ├── _caustic_mire.c │ │ ├── _celestial_brilliance.c │ │ ├── _celestial_healing.c │ │ ├── _chain_lightning.c │ │ ├── _chameleon.c │ │ ├── _chameleon_skin.c │ │ ├── _chaos_hammer.c │ │ ├── _charm_monster.c │ │ ├── _chill_metal.c │ │ ├── _chill_touch.c │ │ ├── _circle_of_death.c │ │ ├── _clairvoyance.c │ │ ├── _clashing_rocks.c │ │ ├── _cloak_of_chaos.c │ │ ├── _cloak_of_shadows.c │ │ ├── _cloak_of_winds.c │ │ ├── _cloud_mind.c │ │ ├── _cloudkill.c │ │ ├── _cocoon_of_refuse.c │ │ ├── _cold_comfort.c │ │ ├── _color_spray.c │ │ ├── _cometfall.c │ │ ├── _command.c │ │ ├── _command_undead.c │ │ ├── _communal_darkvision.c │ │ ├── _communal_stoneskin.c │ │ ├── _communal_tongues.c │ │ ├── _commune.c │ │ ├── _commune_with_nature.c │ │ ├── _comprehend_languages.c │ │ ├── _conceal_alignment.c │ │ ├── _conceal_thoughts.c │ │ ├── _concealing_amorpha.c │ │ ├── _cone_of_cold.c │ │ ├── _confusion.c │ │ ├── _conjure_elemental.c │ │ ├── _consecrate.c │ │ ├── _contagion.c │ │ ├── _contingency.c │ │ ├── _control_undead.c │ │ ├── _create_demiplane.c │ │ ├── _create_food.c │ │ ├── _create_greater_undead.c │ │ ├── _create_portal.c │ │ ├── _create_spawn.c │ │ ├── _create_undead.c │ │ ├── _create_water.c │ │ ├── _creation.c │ │ ├── _crushing_despair.c │ │ ├── _crushing_hand.c │ │ ├── _cunning_insight.c │ │ ├── _cure_critical_wounds.c │ │ ├── _cure_light_wounds.c │ │ ├── _cure_moderate_wounds.c │ │ ├── _cure_serious_wounds.c │ │ └── _curse_of_despair.c │ ├── d │ │ ├── _dance_of_a_thousand_cuts.c │ │ ├── _dancing_lights.c │ │ ├── _dark_discorporation.c │ │ ├── _dark_foresight.c │ │ ├── _dark_ones_own_luck.c │ │ ├── _darkbolt.c │ │ ├── _darkness.c │ │ ├── _darkvision.c │ │ ├── _daylight.c │ │ ├── _daze.c │ │ ├── _dazing_touch.c │ │ ├── _deadeyes_lore.c │ │ ├── _death_watch.c │ │ ├── _deathward.c │ │ ├── _deeper_darkness.c │ │ ├── _delay_disease.c │ │ ├── _delayed_fireball.c │ │ ├── _demand.c │ │ ├── _deny_the_reaper.c │ │ ├── _desecrate.c │ │ ├── _destruction.c │ │ ├── _detect_aura.c │ │ ├── _detect_chaos.c │ │ ├── _detect_evil.c │ │ ├── _detect_good.c │ │ ├── _detect_intruders.c │ │ ├── _detect_invisibility.c │ │ ├── _detect_law.c │ │ ├── _detect_magic.c │ │ ├── _detect_poison.c │ │ ├── _detect_remote_viewing.c │ │ ├── _detect_scrying.c │ │ ├── _detect_snares_and_pits.c │ │ ├── _detect_the_faithful.c │ │ ├── _detect_thoughts.c │ │ ├── _detect_undead.c │ │ ├── _devour_magic.c │ │ ├── _diagnose_disease.c │ │ ├── _dictum.c │ │ ├── _dimension_door.c │ │ ├── _dimension_slide.c │ │ ├── _dimensional_anchor.c │ │ ├── _dimensional_lock.c │ │ ├── _disintegrate.c │ │ ├── _disjunction.c │ │ ├── _dismissal.c │ │ ├── _dispel_chaos.c │ │ ├── _dispel_evil.c │ │ ├── _dispel_good.c │ │ ├── _dispel_law.c │ │ ├── _dispel_magic.c │ │ ├── _dispel_psionics.c │ │ ├── _dispelling_buffer.c │ │ ├── _dispelling_touch.c │ │ ├── _displacement.c │ │ ├── _disrupt_undead.c │ │ ├── _disrupting_weapon.c │ │ ├── _dissipating_touch.c │ │ ├── _dissolving_touch.c │ │ ├── _dissolving_weapon.c │ │ ├── _dissonance.c │ │ ├── _dissonant_whispers.c │ │ ├── _distressing_tone.c │ │ ├── _divine_favor.c │ │ ├── _divine_power.c │ │ ├── _divine_shield.c │ │ ├── _divine_weapon.c │ │ ├── _dominate_monster.c │ │ ├── _domination.c │ │ ├── _doom.c │ │ └── _dust_of_twilight.c │ ├── e │ │ ├── _eagles_splendor.c │ │ ├── _earth_reaver.c │ │ ├── _earthquake.c │ │ ├── _eclipse.c │ │ ├── _ectoplasm.c │ │ ├── _ectoplasmic_swarm.c │ │ ├── _ego_whip.c │ │ ├── _eldritch_blast.c │ │ ├── _eldritch_bow.c │ │ ├── _eldritch_burst.c │ │ ├── _eldritch_chain.c │ │ ├── _eldritch_claws.c │ │ ├── _eldritch_glaive.c │ │ ├── _eldritch_scimitar.c │ │ ├── _elemental_aura.c │ │ ├── _elemental_body_i.c │ │ ├── _elemental_body_ii.c │ │ ├── _elemental_body_iii.c │ │ ├── _elemental_body_iv.c │ │ ├── _elemental_swarm.c │ │ ├── _empathic_relief.c │ │ ├── _empowered_weapon.c │ │ ├── _endure_elements.c │ │ ├── _energy_bolt.c │ │ ├── _energy_cone.c │ │ ├── _energy_conversion.c │ │ ├── _energy_current.c │ │ ├── _energy_drain.c │ │ ├── _energy_emanation.c │ │ ├── _energy_retort.c │ │ ├── _energy_wave.c │ │ ├── _enervation.c │ │ ├── _enlarge_person.c │ │ ├── _entangle.c │ │ ├── _enthrall.c │ │ ├── _entropic_storm.c │ │ ├── _entropic_warding.c │ │ ├── _epidemic.c │ │ ├── _eradicate_invisibility.c │ │ ├── _escape_detection.c │ │ ├── _euphoric_tranquility.c │ │ ├── _evade_burst.c │ │ ├── _everyman.c │ │ ├── _exhalation_of_the_dragon.c │ │ ├── _exhume_corpses.c │ │ ├── _exigency.c │ │ ├── _expeditious_retreat.c │ │ ├── _expose_weakness.c │ │ └── _eyebite.c │ ├── f │ │ ├── _faerie_fire.c │ │ ├── _faithful_hound.c │ │ ├── _faithful_mount.c │ │ ├── _false_life.c │ │ ├── _false_vision.c │ │ ├── _fear.c │ │ ├── _feast_of_ashes.c │ │ ├── _fell_flight.c │ │ ├── _fester.c │ │ ├── _fiery_body.c │ │ ├── _find_quarry.c │ │ ├── _finger_of_death.c │ │ ├── _fire_bolt.c │ │ ├── _fire_seeds.c │ │ ├── _fire_shield.c │ │ ├── _fire_storm.c │ │ ├── _fireball.c │ │ ├── _flame_strike.c │ │ ├── _flaming_sphere.c │ │ ├── _flare.c │ │ ├── _flee_the_scene.c │ │ ├── _fly.c │ │ ├── _fog_cloud.c │ │ ├── _fold_space.c │ │ ├── _forbiddance.c │ │ ├── _force_screen.c │ │ ├── _forced_quiet.tmp │ │ ├── _foresight.c │ │ ├── _forgotten_melody.c │ │ ├── _form_of_doom.c │ │ ├── _fortune_fate.c │ │ ├── _foxs_cunning.c │ │ ├── _freedom_of_movement.c │ │ ├── _freezing_sphere.c │ │ ├── _frightful_aspect.c │ │ ├── _frightful_blast.c │ │ ├── _frigid_touch.c │ │ ├── _frost_breath.c │ │ ├── _frost_orb.c │ │ ├── _frostfield.c │ │ ├── _frozen_breath.c │ │ └── _fuse_flesh.c │ ├── g │ │ ├── _gale_aura.c │ │ ├── _gale_fist.c │ │ ├── _garble.c │ │ ├── _gaseous_form.c │ │ ├── _gate.c │ │ ├── _genesis.c │ │ ├── _gentle_repose.c │ │ ├── _ghost_step.c │ │ ├── _ghoul_touch.c │ │ ├── _glacial_blast.c │ │ ├── _glacier.c │ │ ├── _glamer.c │ │ ├── _glibness.c │ │ ├── _glitterdust.c │ │ ├── _globe_of_invulnerability.c │ │ ├── _glyph_of_warding.c │ │ ├── _gods_favor.abagale │ │ ├── _gods_favor.c │ │ ├── _good_hope.c │ │ ├── _grease.c │ │ ├── _greater_angelic_aspect.c │ │ ├── _greater_contagion.c │ │ ├── _greater_dispel_magic.c │ │ ├── _greater_false_life.c │ │ ├── _greater_heroism.c │ │ ├── _greater_invisibility.c │ │ ├── _greater_lend_judgement.c │ │ ├── _greater_magic_fang.c │ │ ├── _greater_magic_weapon.c │ │ ├── _greater_ruin.c │ │ ├── _greater_shadow_alteration.c │ │ ├── _greater_shadow_conjuration.c │ │ ├── _greater_shadow_evocation.c │ │ ├── _greater_shadow_necromancy.c │ │ ├── _greater_shout.c │ │ ├── _greater_stomp.c │ │ ├── _greater_teleport.c │ │ ├── _guidance.c │ │ └── _gust_of_wind.c │ ├── h │ │ ├── _hail_of_crystals.c │ │ ├── _harm.c │ │ ├── _harvest_of_tyrannos.c │ │ ├── _haste.c │ │ ├── _heal.c │ │ ├── _heal_mount.c │ │ ├── _healing_circle.c │ │ ├── _heart_of_darkness.c │ │ ├── _heart_of_metal.c │ │ ├── _heart_of_the_wild.c │ │ ├── _heat_metal.c │ │ ├── _hellball.c │ │ ├── _hellfire_ray.c │ │ ├── _hellfire_shield.c │ │ ├── _heroes_feast.c │ │ ├── _heroism.c │ │ ├── _hideous_laughter.c │ │ ├── _hold_animal.c │ │ ├── _hold_monster.c │ │ ├── _hold_person.c │ │ ├── _holy_aura.c │ │ ├── _holy_orb.c │ │ ├── _holy_smite.c │ │ ├── _holy_word.c │ │ ├── _horrid_wilting.c │ │ ├── _hostile_empathic_transfer.c │ │ ├── _hungry_darkness.c │ │ ├── _hurl_through_hell.c │ │ ├── _hypercognition.c │ │ ├── _hypnotic_pattern.c │ │ └── _hypothermia.c │ ├── i │ │ ├── _ice_bolt.c │ │ ├── _ice_mirror.c │ │ ├── _ice_shield.c │ │ ├── _ice_storm.c │ │ ├── _id_insinuation.c │ │ ├── _identify.c │ │ ├── _ignore_the_pyre.c │ │ ├── _impenetrable_veil.c │ │ ├── _implosion.c │ │ ├── _imprisonment.c │ │ ├── _improved_armor.c │ │ ├── _incendiary_cloud.c │ │ ├── _incite_bravery.c │ │ ├── _inertial_armor.c │ │ ├── _inertial_barrier.c │ │ ├── _infernal_healing.c │ │ ├── _infernal_rain.c │ │ ├── _inner_eye.c │ │ ├── _insanity.c │ │ ├── _insect_plague.c │ │ ├── _insight.c │ │ ├── _inspiring_recovery.c │ │ ├── _instant_summons.c │ │ ├── _invisibility.c │ │ ├── _invisibility_alarm.c │ │ ├── _invisibility_purge.c │ │ ├── _iron_body.c │ │ ├── _irresistible_dance.c │ │ └── _itching_curse.c │ ├── k │ │ ├── _keen_edge.c │ │ ├── _kiss_of_feywild.c │ │ ├── _kiss_of_torment.c │ │ └── _know_alignment.c │ ├── l │ │ ├── _leaps_and_bounds.c │ │ ├── _legend_lore.c │ │ ├── _lend_judgement.c │ │ ├── _lesser_angelic_aspect.c │ │ ├── _lesser_globe_of_invulnerability.c │ │ ├── _lesser_transformation.c │ │ ├── _levitate.c │ │ ├── _life_blast.c │ │ ├── _lifedrinker_blast.c │ │ ├── _light.c │ │ ├── _lightning_arc.c │ │ ├── _lightning_blast.c │ │ ├── _lightning_bolt.c │ │ ├── _lightning_orb.c │ │ ├── _lightning_touch.c │ │ ├── _limb_attack.c │ │ ├── _lions_charge.c │ │ ├── _listening_shadow.c │ │ ├── _litany_of_madness.c │ │ ├── _litany_of_weakness.c │ │ ├── _liveoak.c │ │ ├── _lower_resistance.c │ │ └── _lunar_veil.c │ ├── m │ │ ├── _mages_sword.c │ │ ├── _magic_fang.c │ │ ├── _magic_mirror.c │ │ ├── _magic_missile.c │ │ ├── _magic_vestments.c │ │ ├── _magic_weapon.c │ │ ├── _mass_castigate.c │ │ ├── _mass_cause_critical_wounds.c │ │ ├── _mass_cause_light_wounds.c │ │ ├── _mass_cause_moderate_wounds.c │ │ ├── _mass_cause_serious_wounds.c │ │ ├── _mass_cure_critical_wounds.c │ │ ├── _mass_cure_light_wounds.c │ │ ├── _mass_cure_moderate_wounds.c │ │ ├── _mass_cure_serious_wounds.c │ │ ├── _mass_fester.c │ │ ├── _mass_harm.c │ │ ├── _mass_heal.c │ │ ├── _mass_invisibility.c │ │ ├── _mass_repair_undead.c │ │ ├── _matter_agitation.c │ │ ├── _maw_of_stone.c │ │ ├── _mayhem.c │ │ ├── _meld_into_nature.c │ │ ├── _meld_into_stone.c │ │ ├── _mending.c │ │ ├── _meteor_swarm.c │ │ ├── _microcosm.c │ │ ├── _mind_blank.c │ │ ├── _mind_fog.c │ │ ├── _mind_over_energy.c │ │ ├── _mind_thrust.c │ │ ├── _mind_veil.c │ │ ├── _mindlink.c │ │ ├── _mindnet.c │ │ ├── _minor_creation.c │ │ ├── _minor_prescience.c │ │ ├── _mire_the_mind.c │ │ ├── _mirror_image.c │ │ ├── _misdirection.c │ │ ├── _mist_of_the_goddess.c │ │ ├── _modify_memory.c │ │ ├── _monsoon.c │ │ ├── _monster_summoning_i.c │ │ ├── _monster_summoning_ii.c │ │ ├── _monster_summoning_iii.c │ │ ├── _monster_summoning_iix.c │ │ ├── _monster_summoning_iv.c │ │ ├── _monster_summoning_ix.c │ │ ├── _monster_summoning_v.c │ │ ├── _monster_summoning_vi.c │ │ ├── _monster_summoning_vii.c │ │ ├── _moonbeam.c │ │ ├── _moonfire.c │ │ ├── _mylight.c │ │ ├── _mystic_bolt.c │ │ ├── _mytherceria.c │ │ ├── minor_creation.h │ │ └── monster_summoning.c │ ├── n │ │ ├── _necrophage.c │ │ ├── _necrotic_burst.c │ │ ├── _neutralize_poison.c │ │ ├── _night_armor.c │ │ ├── _night_auspex.c │ │ ├── _night_swarm.c │ │ ├── _nightmare.c │ │ ├── _nightmare_maw.c │ │ ├── _nightmares_made_real.c │ │ └── _nimbus_of_light.c │ ├── o │ │ ├── _oak_body.c │ │ ├── _obsidian_flow.c │ │ ├── _oppression.c │ │ ├── _orb_of_the_void.c │ │ ├── _orders_oath.c │ │ ├── _orders_wrath.c │ │ ├── _otherworldly_whispers.c │ │ ├── _overwhelming_presence.c │ │ └── _owls_wisdom.c │ ├── p │ │ ├── _pass_portal.c │ │ ├── _path_of_shadow.c │ │ ├── _phantasmal_killer.c │ │ ├── _phantasmal_poison.c │ │ ├── _phantom_guardians.c │ │ ├── _phantom_steed.c │ │ ├── _phase_door.c │ │ ├── _plague_storm.c │ │ ├── _planar_apotheosis.c │ │ ├── _planar_bacon.c │ │ ├── _planar_portal.c │ │ ├── _poison.c │ │ ├── _polar_midnight.c │ │ ├── _polar_ray.c │ │ ├── _polymorph_self.c │ │ ├── _power_leech.c │ │ ├── _power_resistance.c │ │ ├── _powerword_blind.c │ │ ├── _powerword_kill.c │ │ ├── _powerword_stun.c │ │ ├── _pox_postules.c │ │ ├── _prayer.c │ │ ├── _precognitive_perception.c │ │ ├── _prescience.c │ │ ├── _prevenom.c │ │ ├── _prevent_stealing.c │ │ ├── _primal_fear.c │ │ ├── _prismatic_sphere.c │ │ ├── _prismatic_spray.c │ │ ├── _produce_flame.c │ │ ├── _profane_nimbus.c │ │ ├── _project_image.c │ │ ├── _protection_from_alignment.c │ │ ├── _protection_from_scrying.c │ │ ├── _protection_from_spells.c │ │ ├── _prying_eyes.c │ │ ├── _psionic_blast.c │ │ ├── _psionic_identify.c │ │ ├── _psionic_teleport.c │ │ ├── _psychic_crush.c │ │ ├── _psychokinetic_weapon.c │ │ └── _purge_spirit.c │ ├── q │ │ └── _quench.c │ ├── r │ │ ├── _rage.c │ │ ├── _rainbow_pattern.c │ │ ├── _raise_dead.c │ │ ├── _ray_of_ending.c │ │ ├── _ray_of_enfeeblement.c │ │ ├── _ray_of_exhaustion.c │ │ ├── _ray_of_frost.c │ │ ├── _reaving_dispel.c │ │ ├── _rebirth.c │ │ ├── _rebuke.c │ │ ├── _recall_agony.c │ │ ├── _recall_death.c │ │ ├── _reddopsi.c │ │ ├── _reduce_person.c │ │ ├── _reflection.c │ │ ├── _regenerate.c │ │ ├── _rejuvenation.c │ │ ├── _remote_view_trap.c │ │ ├── _remote_viewing.c │ │ ├── _remove_blindness.c │ │ ├── _remove_disease.c │ │ ├── _remove_fear.c │ │ ├── _remove_paralysis.c │ │ ├── _repair_undead.c │ │ ├── _replay_tracks.c │ │ ├── _repulsion.c │ │ ├── _resilience.c │ │ ├── _resist_energy.c │ │ ├── _resistance.c │ │ ├── _resonating_word.c │ │ ├── _resounding_weapon.c │ │ ├── _restoration.c │ │ ├── _resurrection.c │ │ ├── _reverse_gravity.c │ │ ├── _ride_the_lightning.c │ │ ├── _righteous_might.c │ │ ├── _rope_trick.c │ │ ├── _ruin.c │ │ └── _rusting_grasp.c │ ├── s │ │ ├── _sacred_nimbus.c │ │ ├── _sanctify.c │ │ ├── _sands_of_time.c │ │ ├── _scintillating_pattern.c │ │ ├── _scorcher.c │ │ ├── _screen.c │ │ ├── _seamantle.c │ │ ├── _searing_light.c │ │ ├── _secret_chest.c │ │ ├── _secure_shelter.c │ │ ├── _see_the_unseen.c │ │ ├── _seeking_sword.c │ │ ├── _sending.c │ │ ├── _serac.c │ │ ├── _serenity.c │ │ ├── _shades.c │ │ ├── _shadow_alteration.c │ │ ├── _shadow_blast.c │ │ ├── _shadow_body.c │ │ ├── _shadow_conjuration.c │ │ ├── _shadow_double.c │ │ ├── _shadow_enchantment.c │ │ ├── _shadow_evocation.c │ │ ├── _shadow_healing.c │ │ ├── _shadow_necromancy.c │ │ ├── _shadow_nova.c │ │ ├── _shadow_sight.c │ │ ├── _shadow_stream.c │ │ ├── _shadow_stride.c │ │ ├── _shadow_terrain.c │ │ ├── _shadow_travel.c │ │ ├── _shadow_vortex.c │ │ ├── _shadowform.c │ │ ├── _shambler.c │ │ ├── _shapechange.c │ │ ├── _shatter.c │ │ ├── _shield.c │ │ ├── _shield_of_dawn.c │ │ ├── _shield_of_law.c │ │ ├── _shield_of_shadows.c │ │ ├── _shield_other.c │ │ ├── _shocking_grasp.c │ │ ├── _shout.c │ │ ├── _shrapnel_burst.c │ │ ├── _silver_sight.c │ │ ├── _siphon_magic.c │ │ ├── _sirocco.c │ │ ├── _skate.c │ │ ├── _slay_living.c │ │ ├── _sleep.c │ │ ├── _sleet_storm.c │ │ ├── _slow.c │ │ ├── _snakebite.c │ │ ├── _snare.c │ │ ├── _snowball.c │ │ ├── _soften_earth.c │ │ ├── _solar_siege_shot.c │ │ ├── _solid_fog.c │ │ ├── _sols_searing_orb.c │ │ ├── _sonic_orb.c │ │ ├── _sound_burst.c │ │ ├── _speak_with_animals.c │ │ ├── _speak_with_dead.c │ │ ├── _spectral_hand.c │ │ ├── _spectral_touch.c │ │ ├── _spectres.c │ │ ├── _spell_turning.c │ │ ├── _spellscar.c │ │ ├── _spellstaff.c │ │ ├── _spider_climb.c │ │ ├── _spiderwalk.c │ │ ├── _spike_growth.c │ │ ├── _spiritual_ally.c │ │ ├── _spiritual_weapon.c │ │ ├── _statue.c │ │ ├── _sticks_into_snakes.c │ │ ├── _stinking_cloud.c │ │ ├── _stomp.c │ │ ├── _stone_body.c │ │ ├── _stone_throw.c │ │ ├── _stoneskin.c │ │ ├── _storm_of_vengeance.c │ │ ├── _stormbolts.c │ │ ├── _stormrage.c │ │ ├── _stormwinds.c │ │ ├── _strength_of_stone.c │ │ ├── _stunning_barrier.c │ │ ├── _summon_companion.c │ │ ├── _summon_natures_ally_i.c │ │ ├── _summon_natures_ally_ii.c │ │ ├── _summon_natures_ally_iii.c │ │ ├── _summon_natures_ally_iix.c │ │ ├── _summon_natures_ally_iv.c │ │ ├── _summon_natures_ally_ix.c │ │ ├── _summon_natures_ally_v.c │ │ ├── _summon_natures_ally_vi.c │ │ ├── _summon_natures_ally_vii.c │ │ ├── _summon_swarm.c │ │ ├── _sunbeam.c │ │ ├── _sunburst.c │ │ ├── _suppress_wild_magic.c │ │ ├── _sustenance.c │ │ ├── _swarm_of_crystals.c │ │ ├── _swimming_the_styx.c │ │ ├── _sylvan_vigor.c │ │ ├── _sympathetic_vibration.c │ │ └── summon_natures_ally.c │ ├── t │ │ ├── _tar_pool.c │ │ ├── _telekinetic_push.c │ │ ├── _telepathic_bond.c │ │ ├── _telepathy.c │ │ ├── _teleport.c │ │ ├── _temporal_acceleration.c │ │ ├── _tenacious_plague.c │ │ ├── _the_dead_walk.c │ │ ├── _thicken_skin.c │ │ ├── _thorn_body.c │ │ ├── _thorn_spray.c │ │ ├── _thought_shield.c │ │ ├── _thunder_wave.c │ │ ├── _thunderstomp.c │ │ ├── _tidal_surge.c │ │ ├── _time_hop.c │ │ ├── _timeless_body.c │ │ ├── _timestop.c │ │ ├── _tongues.c │ │ ├── _tornado_blast.c │ │ ├── _touch_of_chaos.c │ │ ├── _touch_of_darkness.c │ │ ├── _touch_of_fatigue.c │ │ ├── _touch_of_idiocy.c │ │ ├── _touch_of_law.c │ │ ├── _touch_of_madness.c │ │ ├── _touch_of_sickening.c │ │ ├── _touchsight.c │ │ ├── _trace_teleport.c │ │ ├── _transformation.c │ │ ├── _treeshape.c │ │ ├── _treestride.c │ │ ├── _tremor.c │ │ ├── _trial_by_fire.c │ │ ├── _true_form.c │ │ ├── _true_metabolism.c │ │ ├── _true_seeing.c │ │ ├── _true_strike.c │ │ ├── _truevenom.c │ │ ├── _twilight_shape.c │ │ └── _typhoon.c │ ├── u │ │ ├── _ultrablast.c │ │ ├── _umbral_sight.c │ │ ├── _umbral_strike.c │ │ ├── _undead_steed.c │ │ ├── _undeath_is_death.c │ │ ├── _undeath_ward.c │ │ ├── _unearthly_terror.c │ │ ├── _unholy_aura.c │ │ ├── _unholy_blight.c │ │ ├── _unholy_orb.c │ │ ├── _unholy_smite.c │ │ ├── _unliving_inversion.c │ │ ├── _unravel_psionics.c │ │ ├── _unseen_servant.c │ │ └── _utterdark_blast.c │ ├── v │ │ ├── _vampiric_shadow_shield.c │ │ ├── _vampiric_touch.c │ │ ├── _vampiric_weapon.c │ │ ├── _vicarious_view.c │ │ ├── _vigor.c │ │ ├── _viper_form.c │ │ ├── _virtue.c │ │ ├── _vision.c │ │ ├── _visions_from_within.c │ │ ├── _vitriolic_blast.c │ │ ├── _voice_of_madness.c │ │ ├── _voracious_dispelling.c │ │ └── _vortex.c │ └── w │ │ ├── _wail_of_the_banshee.c │ │ ├── _walk_the_planes.c │ │ ├── _walk_unseen.c │ │ ├── _wall_of_ectoplasm.c │ │ ├── _wall_of_fire.c │ │ ├── _wall_of_perilous_fire.c │ │ ├── _wall_of_stone.c │ │ ├── _wall_of_thorns.c │ │ ├── _wall_walker.c │ │ ├── _wandering_star_motes.c │ │ ├── _warlocks_call.c │ │ ├── _water_breathing.c │ │ ├── _wave_of_pain.c │ │ ├── _waves_of_exhaustion.c │ │ ├── _waves_of_fatigue.c │ │ ├── _weapon_of_energy.c │ │ ├── _web.c │ │ ├── _weird.c │ │ ├── _wererat_shape.c │ │ ├── _weretiger_shape.c │ │ ├── _werewolf_shape.c │ │ ├── _whip_of_centipedes.c │ │ ├── _whip_of_spiders.c │ │ ├── _whispering_wind.c │ │ ├── _wieldskill.c │ │ ├── _windstorm.c │ │ ├── _witchwood_step.c │ │ ├── _witness.c │ │ ├── _word_of_chaos.c │ │ ├── _word_of_power.c │ │ └── _word_of_recall.c ├── spellsh ├── system │ ├── _append.c │ ├── _call.c │ ├── _cat.c │ ├── _cc.c │ ├── _cd.c │ ├── _cleanup.c │ ├── _clog.c │ ├── _clone.c │ ├── _clonehere.c │ ├── _cp.c │ ├── _diff.c │ ├── _dref.c │ ├── _dsync.c │ ├── _du.c │ ├── _ed.c │ ├── _eref.c │ ├── _eval.c │ ├── _gauge.c │ ├── _grep.c │ ├── _head.c │ ├── _less.c │ ├── _llm.c │ ├── _lls.c │ ├── _load.c │ ├── _ls.c │ ├── _minfo.c │ ├── _mkdir.c │ ├── _more.c │ ├── _move.c │ ├── _mv.c │ ├── _pwd.c │ ├── _ref.c │ ├── _refs.c │ ├── _rgrep.c │ ├── _rgrep2.c │ ├── _rm.c │ ├── _rmdir.c │ ├── _su.c │ ├── _tail.c │ ├── _tar.c │ ├── _tref.c │ ├── _tsh.c │ ├── _update.c │ ├── _updateold.c │ ├── _which.c │ └── _work.c ├── thief │ ├── _detect.c │ ├── _make.c │ └── poison.c ├── tutorials │ └── _spell_tutorial └── wizard │ ├── backup │ ├── _acid_arrow.c │ └── _web_thorn.c │ ├── holding │ ├── _blindness.c │ ├── _cantrip.c │ ├── _detect_invis.c │ ├── _detect_undead.c │ ├── _feather_fall.c │ ├── _flaming_sphere.c │ ├── _freeze.c │ ├── _mirror_image.c │ ├── _ray_of_enfeeblement.c │ ├── _shocking_grasp.c │ ├── _taunt.c │ ├── _vampiric_touch.c │ ├── _ventriloquism.c │ └── cantrip.c │ └── old │ └── slp.c ├── d ├── alpine │ ├── mon │ │ ├── short.h │ │ └── yeti.c │ ├── obj │ │ ├── icicle.c │ │ ├── short.h │ │ └── yeti_fur.c │ └── rooms │ │ ├── cliff1.c │ │ ├── cliff10.c │ │ ├── cliff11.c │ │ ├── cliff12.c │ │ ├── cliff13.c │ │ ├── cliff14.c │ │ ├── cliff15.c │ │ ├── cliff16.c │ │ ├── cliff17.c │ │ ├── cliff18.c │ │ ├── cliff19.c │ │ ├── cliff2.c │ │ ├── cliff20.c │ │ ├── cliff21.c │ │ ├── cliff22.c │ │ ├── cliff23.c │ │ ├── cliff24.c │ │ ├── cliff3.c │ │ ├── cliff4.c │ │ ├── cliff5.c │ │ ├── cliff6.c │ │ ├── cliff7.c │ │ ├── cliff8.c │ │ ├── cliff9.c │ │ ├── cliff_end1.c │ │ ├── cliff_end2.c │ │ ├── cliff_end3.c │ │ ├── cliff_end4.c │ │ ├── short.h │ │ └── top_of_cliff.c ├── antioch │ ├── antioch2 │ │ ├── animals.c │ │ ├── antioch.h │ │ ├── d_animal.c │ │ ├── drink.c │ │ ├── food.c │ │ ├── house_map │ │ ├── interactive.c │ │ ├── map │ │ ├── mons │ │ │ ├── advisor1.c │ │ │ ├── advisor2.c │ │ │ ├── advisor3.c │ │ │ ├── alcolyte.c │ │ │ ├── andy.c │ │ │ ├── archer.c │ │ │ ├── backup │ │ │ │ ├── captain.c │ │ │ │ ├── guard.c │ │ │ │ ├── jailer.c │ │ │ │ ├── palace_guard.c │ │ │ │ ├── paladin.c │ │ │ │ ├── patrol_guard.c │ │ │ │ └── royal_guard.c │ │ │ ├── bank_guard.c │ │ │ ├── bank_teller.c │ │ │ ├── barkeep.c │ │ │ ├── captain.c │ │ │ ├── chef.c │ │ │ ├── cindy.c │ │ │ ├── citizen1.c │ │ │ ├── citizen2.c │ │ │ ├── citizen3.c │ │ │ ├── citizen4.c │ │ │ ├── citizena.c │ │ │ ├── citizenb.c │ │ │ ├── citizenc.c │ │ │ ├── citizend.c │ │ │ ├── citizene.c │ │ │ ├── citizenf.c │ │ │ ├── citizeng.c │ │ │ ├── citizenh.c │ │ │ ├── citizeni.c │ │ │ ├── citizenj.c │ │ │ ├── citizenk.c │ │ │ ├── citizenl.c │ │ │ ├── citizenm.c │ │ │ ├── felawyr.c │ │ │ ├── felawyr.cythera.04.05 │ │ │ ├── gralibard.c │ │ │ ├── guard.c │ │ │ ├── guard_old.c │ │ │ ├── guardnew.c │ │ │ ├── helirin.c │ │ │ ├── hitram.c │ │ │ ├── jailer.c │ │ │ ├── jelip.c │ │ │ ├── kedaria.c │ │ │ ├── king.c │ │ │ ├── kitten.c │ │ │ ├── kyra.c │ │ │ ├── mellany.c │ │ │ ├── mina.c │ │ │ ├── minstrel.c │ │ │ ├── mydan.c │ │ │ ├── novice.c │ │ │ ├── orflack.c │ │ │ ├── palace_guard.c │ │ │ ├── paladin.c │ │ │ ├── patrol_guard.c │ │ │ ├── royal_guard.c │ │ │ ├── sebastian.c │ │ │ ├── stable.c │ │ │ ├── study_trainer.c │ │ │ ├── thiliwan.c │ │ │ ├── trendamas.c │ │ │ └── waitress.c │ │ ├── obj │ │ │ ├── apple.c │ │ │ ├── backup │ │ │ ├── bracers.c │ │ │ ├── breastplate.c │ │ │ ├── breeches.c │ │ │ ├── candle.c │ │ │ ├── cheese.c │ │ │ ├── colorful_scarf.c │ │ │ ├── colorful_skirt.c │ │ │ ├── cotton_tunic.c │ │ │ ├── d_armband.c │ │ │ ├── d_bracelet.c │ │ │ ├── d_broach.c │ │ │ ├── d_circlet.c │ │ │ ├── d_dress.c │ │ │ ├── d_hchief.c │ │ │ ├── d_necklace.c │ │ │ ├── d_pants.c │ │ │ ├── d_ring.c │ │ │ ├── d_scarf.c │ │ │ ├── d_shirt.c │ │ │ ├── d_shorts.c │ │ │ ├── d_skirt.c │ │ │ ├── d_top.c │ │ │ ├── d_tunic.c │ │ │ ├── deerskin_boots.c │ │ │ ├── deerskin_shirt.c │ │ │ ├── deerskin_skirt.c │ │ │ ├── diadem.c │ │ │ ├── dried_fruits.c │ │ │ ├── dried_meat.c │ │ │ ├── dry_rations.c │ │ │ ├── flute.c │ │ │ ├── gauntlets.c │ │ │ ├── gold_belt.c │ │ │ ├── grey_cloak.c │ │ │ ├── guitar.c │ │ │ ├── hairbrush.c │ │ │ ├── hardtack.c │ │ │ ├── harp.c │ │ │ ├── heart_locket.c │ │ │ ├── hide.c │ │ │ ├── horses │ │ │ │ ├── charger.c │ │ │ │ ├── gelding.c │ │ │ │ ├── mare.c │ │ │ │ ├── pony.c │ │ │ │ └── stallion.c │ │ │ ├── iron_rations.c │ │ │ ├── jacket.c │ │ │ ├── jail_key.c │ │ │ ├── knuckles.c │ │ │ ├── leather_belt.c │ │ │ ├── leather_bodice.c │ │ │ ├── leather_coif.c │ │ │ ├── leather_gloves.c │ │ │ ├── leather_shield.c │ │ │ ├── light_chain.c │ │ │ ├── nuts.c │ │ │ ├── old_pipe.c │ │ │ ├── padded.c │ │ │ ├── pendant.c │ │ │ ├── perfume.c │ │ │ ├── plum.c │ │ │ ├── polish.c │ │ │ ├── r_armband.c │ │ │ ├── r_bracelet.c │ │ │ ├── r_broach.c │ │ │ ├── r_circlet.c │ │ │ ├── r_dress.c │ │ │ ├── r_hchief.c │ │ │ ├── r_necklace.c │ │ │ ├── r_pants.c │ │ │ ├── r_ring.c │ │ │ ├── r_scarf.c │ │ │ ├── r_shirt.c │ │ │ ├── r_shorts.c │ │ │ ├── r_skirt.c │ │ │ ├── r_top.c │ │ │ ├── r_tunic.c │ │ │ ├── rawhide.c │ │ │ ├── red_robe.c │ │ │ ├── riding_boots.c │ │ │ ├── ring_bells │ │ │ ├── robe.c │ │ │ ├── ruby_ring.c │ │ │ ├── sandals.c │ │ │ ├── sapphire_necklace.c │ │ │ ├── satin_gloves.c │ │ │ ├── satin_gown.c │ │ │ ├── short_boots.c │ │ │ ├── sign.c │ │ │ ├── silver_belt.c │ │ │ ├── silver_lance.c │ │ │ ├── silver_robe.c │ │ │ ├── silver_shield.c │ │ │ ├── silver_sword.c │ │ │ ├── silvered_helm.c │ │ │ ├── song1.c │ │ │ ├── songs │ │ │ │ ├── _bardfarewell.c │ │ │ │ ├── _battle.c │ │ │ │ ├── _blackhair.c │ │ │ │ ├── _breathename.c │ │ │ │ ├── _candlesout.c │ │ │ │ ├── _creepiecrawlies.c │ │ │ │ ├── _cryingsky.c │ │ │ │ ├── _enraptured.c │ │ │ │ ├── _gloryadventure.c │ │ │ │ ├── _openeyes.c │ │ │ │ ├── _paladinflight.c │ │ │ │ ├── _ringbells.c │ │ │ │ ├── _seahound.c │ │ │ │ ├── _sharsway.c │ │ │ │ ├── _subtlelies.c │ │ │ │ ├── bard_farewell │ │ │ │ ├── battle │ │ │ │ ├── candles_out │ │ │ │ ├── creepie_crawlies │ │ │ │ ├── crying_sky │ │ │ │ ├── enraptured │ │ │ │ ├── gentle_harp │ │ │ │ ├── glory_adventure │ │ │ │ ├── lost_ode │ │ │ │ ├── margath_poem │ │ │ │ ├── minstrel_boy │ │ │ │ ├── open │ │ │ │ ├── paladins_flight │ │ │ │ ├── ring_bells │ │ │ │ ├── shars_way │ │ │ │ ├── songs │ │ │ │ ├── songs.doc │ │ │ │ └── subtle_lies │ │ │ ├── staff.c │ │ │ ├── standard_rations.c │ │ │ ├── star_ring.c │ │ │ ├── street_light.c │ │ │ ├── summer_dress.c │ │ │ ├── tall_boots.c │ │ │ ├── tunic.c │ │ │ ├── unicorn_shield.c │ │ │ ├── vest.c │ │ │ ├── waterskin.c │ │ │ ├── waybread.c │ │ │ ├── wine_bottle.c │ │ │ └── work_pants.c │ │ ├── rooms │ │ │ ├── armor.c │ │ │ ├── backup │ │ │ │ ├── barracks.c │ │ │ │ ├── jail.c │ │ │ │ ├── jail_main.c │ │ │ │ ├── palace1.c │ │ │ │ ├── street1.c │ │ │ │ ├── street14.c │ │ │ │ ├── street19.c │ │ │ │ ├── street4.c │ │ │ │ └── street6.c │ │ │ ├── backyard1.c │ │ │ ├── backyard2.c │ │ │ ├── bank.c │ │ │ ├── bar.c │ │ │ ├── barracks.c │ │ │ ├── bathroom.c │ │ │ ├── bedroom1.c │ │ │ ├── bedroom2.c │ │ │ ├── blue_room.c │ │ │ ├── church1.c │ │ │ ├── church10.c │ │ │ ├── church11.c │ │ │ ├── church12.c │ │ │ ├── church13.c │ │ │ ├── church14.c │ │ │ ├── church2.c │ │ │ ├── church3.c │ │ │ ├── church4.c │ │ │ ├── church5.c │ │ │ ├── church6.c │ │ │ ├── church7.c │ │ │ ├── church8.c │ │ │ ├── church9.c │ │ │ ├── commanders_office.c │ │ │ ├── commanders_private.c │ │ │ ├── component.c │ │ │ ├── fountain.c │ │ │ ├── gates.c │ │ │ ├── general.c │ │ │ ├── green_room.c │ │ │ ├── gtower.c │ │ │ ├── gtower2.c │ │ │ ├── guard1.c │ │ │ ├── guard2.c │ │ │ ├── healer.c │ │ │ ├── house1.c │ │ │ ├── house2.c │ │ │ ├── house3.c │ │ │ ├── house4.c │ │ │ ├── house5.c │ │ │ ├── house6.c │ │ │ ├── house7.c │ │ │ ├── house8.c │ │ │ ├── house9.c │ │ │ ├── inherits │ │ │ │ ├── guest.c │ │ │ │ └── palace.c │ │ │ ├── inn1.c │ │ │ ├── inn2.c │ │ │ ├── inn3.c │ │ │ ├── inn4.c │ │ │ ├── inn5.c │ │ │ ├── jail.c │ │ │ ├── jail_main.c │ │ │ ├── jeweler.c │ │ │ ├── kitchen.c │ │ │ ├── kitchen1.c │ │ │ ├── kitchen2.c │ │ │ ├── kitchen3.c │ │ │ ├── leather.c │ │ │ ├── lilac_room.c │ │ │ ├── mage.c │ │ │ ├── oak_room.c │ │ │ ├── pal1.c │ │ │ ├── pal10.c │ │ │ ├── pal11.c │ │ │ ├── pal12.c │ │ │ ├── pal13.c │ │ │ ├── pal14.c │ │ │ ├── pal2.c │ │ │ ├── pal3.c │ │ │ ├── pal4.c │ │ │ ├── pal5.c │ │ │ ├── pal6.c │ │ │ ├── pal7.c │ │ │ ├── pal8.c │ │ │ ├── pal9.c │ │ │ ├── palace1.c │ │ │ ├── palace10.c │ │ │ ├── palace11.c │ │ │ ├── palace12.c │ │ │ ├── palace13.c │ │ │ ├── palace14.c │ │ │ ├── palace15.c │ │ │ ├── palace16.c │ │ │ ├── palace17.c │ │ │ ├── palace18.c │ │ │ ├── palace19.c │ │ │ ├── palace2.c │ │ │ ├── palace20.c │ │ │ ├── palace3.c │ │ │ ├── palace4.c │ │ │ ├── palace5.c │ │ │ ├── palace6.c │ │ │ ├── palace7.c │ │ │ ├── palace8.c │ │ │ ├── palace9.c │ │ │ ├── ration.c │ │ │ ├── rose_room.c │ │ │ ├── square.c │ │ │ ├── stable1.c │ │ │ ├── stable2.c │ │ │ ├── stable3.c │ │ │ ├── stable4.c │ │ │ ├── stable5.c │ │ │ ├── stable_1.c │ │ │ ├── stables.c │ │ │ ├── storage │ │ │ │ ├── armor.c │ │ │ │ ├── general.c │ │ │ │ ├── instrument.c │ │ │ │ ├── jeweler.c │ │ │ │ ├── leather.c │ │ │ │ ├── ration.c │ │ │ │ ├── tailor.c │ │ │ │ └── weapon.c │ │ │ ├── street1.c │ │ │ ├── street10.c │ │ │ ├── street11.c │ │ │ ├── street12.c │ │ │ ├── street13.c │ │ │ ├── street14.c │ │ │ ├── street15.c │ │ │ ├── street16.c │ │ │ ├── street17.c │ │ │ ├── street18.c │ │ │ ├── street19.c │ │ │ ├── street2.c │ │ │ ├── street20.c │ │ │ ├── street21.c │ │ │ ├── street22.c │ │ │ ├── street23.c │ │ │ ├── street24.c │ │ │ ├── street25.c │ │ │ ├── street26.c │ │ │ ├── street27.c │ │ │ ├── street28.c │ │ │ ├── street29.c │ │ │ ├── street3.c │ │ │ ├── street30.c │ │ │ ├── street31.c │ │ │ ├── street32.c │ │ │ ├── street4.c │ │ │ ├── street5.c │ │ │ ├── street6.c │ │ │ ├── street7.c │ │ │ ├── street8.c │ │ │ ├── street9.c │ │ │ ├── tailor.c │ │ │ ├── throne.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ ├── trail3.c │ │ │ ├── trail4.c │ │ │ ├── trail5.c │ │ │ ├── trail6.c │ │ │ ├── upstairs1.c │ │ │ ├── upstairs2.c │ │ │ ├── upstairs3.c │ │ │ ├── weap_forge.c │ │ │ ├── weapon.c │ │ │ ├── yard1.c │ │ │ ├── yard2.c │ │ │ ├── yard3.c │ │ │ ├── yard4.c │ │ │ ├── yard5.c │ │ │ ├── yard6.c │ │ │ ├── yard7.c │ │ │ ├── yard8.c │ │ │ └── yard9.c │ │ └── ruins │ ├── areadefs.h │ ├── armour │ │ ├── barkback.c │ │ ├── chestplate.c │ │ ├── robes.c │ │ ├── saddle.c │ │ ├── shadowscale.c │ │ └── wolfskin.c │ ├── cguilds │ │ ├── cleric.h │ │ ├── cleric │ │ │ ├── cleric1.c │ │ │ ├── cleric2.c │ │ │ ├── cleric3.c │ │ │ ├── cleric4.c │ │ │ ├── cleric5.c │ │ │ ├── cleric6.c │ │ │ └── research │ │ │ │ ├── akadi │ │ │ │ ├── auril │ │ │ │ ├── cyric │ │ │ │ ├── eldath │ │ │ │ ├── grumbar │ │ │ │ ├── loviatar │ │ │ │ ├── malar │ │ │ │ ├── mystra │ │ │ │ └── selune │ │ └── paladin │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hall4.c │ │ │ ├── hall5.c │ │ │ ├── liennor.c │ │ │ ├── stable.c │ │ │ └── storage.c │ ├── greaterantioch │ │ ├── elvencirclet.c │ │ ├── gantioch.h │ │ ├── mon │ │ │ ├── brothertorin.c │ │ │ ├── faris.c │ │ │ ├── farismerchant.c │ │ │ ├── gnollchieftain.c │ │ │ ├── gnollcleric.c │ │ │ ├── gnollfighter.c │ │ │ ├── gnollguard.c │ │ │ ├── gnollthief.c │ │ │ ├── gorgemerchant.c │ │ │ ├── grolin.c │ │ │ ├── lordsaradin.c │ │ │ ├── mochochocho.c │ │ │ ├── revis.c │ │ │ ├── slave.c │ │ │ ├── vythao.c │ │ │ ├── wife.c │ │ │ ├── younggnoll.c │ │ │ └── zathon.c │ │ ├── obj │ │ │ ├── ashcirclet.c │ │ │ ├── beadedlsheath.c │ │ │ ├── beadedlsleeve.c │ │ │ ├── beadedmsheath.c │ │ │ ├── beadedmsleeve.c │ │ │ ├── beadedssheath.c │ │ │ ├── chieftainaxe.c │ │ │ ├── circlet.c │ │ │ ├── destroyedcaravan.c │ │ │ ├── earrings.c │ │ │ ├── elvencirclet.c │ │ │ ├── gnollkey.c │ │ │ ├── gnollspear.c │ │ │ ├── gnollspear2.c │ │ │ ├── headband.c │ │ │ ├── healring.c │ │ │ ├── lordsring.c │ │ │ ├── note.c │ │ │ ├── quickdagger.c │ │ │ ├── redemption2.c │ │ │ ├── scraptrail.c │ │ │ ├── sfist.c │ │ │ ├── teepee.c │ │ │ ├── testcirclet.c │ │ │ ├── vynecklace.c │ │ │ ├── vythaoclaymore.c │ │ │ └── widebrimgray.c │ │ └── rooms │ │ │ ├── extra │ │ │ └── merch_storage.c │ │ │ ├── foothills.c │ │ │ ├── foothills │ │ │ ├── foothills1.c │ │ │ ├── foothills10.c │ │ │ ├── foothills11.c │ │ │ ├── foothills12.c │ │ │ ├── foothills13.c │ │ │ ├── foothills14.c │ │ │ ├── foothills15.c │ │ │ ├── foothills16.c │ │ │ ├── foothills17.c │ │ │ ├── foothills18.c │ │ │ ├── foothills19.c │ │ │ ├── foothills2.c │ │ │ ├── foothills20.c │ │ │ ├── foothills21.c │ │ │ ├── foothills22.c │ │ │ ├── foothills23.c │ │ │ ├── foothills24.c │ │ │ ├── foothills25.c │ │ │ ├── foothills26.c │ │ │ ├── foothills27.c │ │ │ ├── foothills28.c │ │ │ ├── foothills29.c │ │ │ ├── foothills3.c │ │ │ ├── foothills30.c │ │ │ ├── foothills31.c │ │ │ ├── foothills32.c │ │ │ ├── foothills33.c │ │ │ ├── foothills34.c │ │ │ ├── foothills35.c │ │ │ ├── foothills36.c │ │ │ ├── foothills37.c │ │ │ ├── foothills38.c │ │ │ ├── foothills39.c │ │ │ ├── foothills4.c │ │ │ ├── foothills40.c │ │ │ ├── foothills41.c │ │ │ ├── foothills42.c │ │ │ ├── foothills43.c │ │ │ ├── foothills44.c │ │ │ ├── foothills45.c │ │ │ ├── foothills46.c │ │ │ ├── foothills47.c │ │ │ ├── foothills48.c │ │ │ ├── foothills49.c │ │ │ ├── foothills5.c │ │ │ ├── foothills50.c │ │ │ ├── foothills51.c │ │ │ ├── foothills52.c │ │ │ ├── foothills55.c │ │ │ ├── foothills6.c │ │ │ ├── foothills7.c │ │ │ ├── foothills8.c │ │ │ ├── foothills9.c │ │ │ └── workroom.c │ │ │ ├── forest.c │ │ │ ├── grassland.c │ │ │ ├── grassland │ │ │ ├── grassland1.c │ │ │ ├── grassland10.c │ │ │ ├── grassland11.c │ │ │ ├── grassland12.c │ │ │ ├── grassland13.c │ │ │ ├── grassland14.c │ │ │ ├── grassland15.c │ │ │ ├── grassland16.c │ │ │ ├── grassland17.c │ │ │ ├── grassland18.c │ │ │ ├── grassland19.c │ │ │ ├── grassland2.c │ │ │ ├── grassland20.c │ │ │ ├── grassland24.c │ │ │ ├── grassland3.c │ │ │ ├── grassland4.c │ │ │ ├── grassland5.c │ │ │ ├── grassland6.c │ │ │ ├── grassland7.c │ │ │ ├── grassland8.c │ │ │ ├── grassland9.c │ │ │ └── teepee1.c │ │ │ ├── keep │ │ │ ├── keep1.c │ │ │ ├── keep2.c │ │ │ ├── keep3.c │ │ │ ├── keep5.c │ │ │ └── keep6.c │ │ │ ├── mound.c │ │ │ ├── mound │ │ │ ├── mound1.c │ │ │ ├── mound10.c │ │ │ ├── mound11.c │ │ │ ├── mound12.c │ │ │ ├── mound13.c │ │ │ ├── mound13a.c │ │ │ ├── mound14.c │ │ │ ├── mound2.c │ │ │ ├── mound3.c │ │ │ ├── mound4.c │ │ │ ├── mound5.c │ │ │ ├── mound6.c │ │ │ ├── mound7.c │ │ │ ├── mound8.c │ │ │ ├── mound9.c │ │ │ ├── mound_example.c │ │ │ ├── treasureroom.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ └── tunnel4.c │ │ │ ├── road.c │ │ │ ├── road │ │ │ ├── road1.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road18.c │ │ │ ├── road19.c │ │ │ ├── road2.c │ │ │ ├── road28.c │ │ │ ├── road29.c │ │ │ ├── road3.c │ │ │ ├── road30.c │ │ │ ├── road31.c │ │ │ ├── road32.c │ │ │ ├── road33.c │ │ │ ├── road34.c │ │ │ ├── road35.c │ │ │ ├── road36.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ └── road9.c │ │ │ └── village │ │ │ ├── merchanthouse1.c │ │ │ ├── merchanthouse2.c │ │ │ ├── merchanthouse3.c │ │ │ ├── village1.c │ │ │ ├── village2.c │ │ │ ├── village3.c │ │ │ ├── village4.c │ │ │ ├── village5.c │ │ │ ├── village6.c │ │ │ ├── village7.c │ │ │ └── village8.c │ ├── mon │ │ ├── 3.c │ │ ├── bag_zombie.c │ │ ├── bdemon.c │ │ ├── beggar.c │ │ ├── cobra.c │ │ ├── copperhead.c │ │ ├── cottonmouth.c │ │ ├── demon.c │ │ ├── dking.c │ │ ├── drake.c │ │ ├── drunk.c │ │ ├── drunk2.c │ │ ├── dwarf.c │ │ ├── eagle1.c │ │ ├── eagle2.c │ │ ├── fgolem.c │ │ ├── gguard1.c │ │ ├── gguard2.c │ │ ├── ghost.c │ │ ├── ghost2.c │ │ ├── goblin.c │ │ ├── grey.c │ │ ├── guard.c │ │ ├── gwizard.c │ │ ├── healer.c │ │ ├── ignatius.c │ │ ├── incartes.c │ │ ├── juggernaut.c │ │ ├── kcobra.c │ │ ├── lastria.c │ │ ├── makun.c │ │ ├── merchant.c │ │ ├── nymph.c │ │ ├── orc.c │ │ ├── painting.c │ │ ├── philosopher.c │ │ ├── poet.c │ │ ├── pony.c │ │ ├── prisoner.c │ │ ├── prisoner2.c │ │ ├── prisoner3.c │ │ ├── python.c │ │ ├── qdemon.c │ │ ├── rattlesnake.c │ │ ├── rdemon.c │ │ ├── shopper.c │ │ ├── skeleton.c │ │ ├── thorn.c │ │ ├── tr_orc.c │ │ ├── ulord.c │ │ ├── villager.c │ │ ├── wdemon.c │ │ ├── wolf.c │ │ ├── zombie.c │ │ └── zombie_guard.c │ ├── obj │ │ ├── cha_manual.c │ │ ├── cheek.c │ │ ├── con_manual.c │ │ ├── crystelic.c │ │ ├── demonic.c │ │ ├── dex_manual.c │ │ ├── diamond.c │ │ ├── gold.c │ │ ├── int_manual.c │ │ ├── lust.c │ │ ├── quest_wand.c │ │ ├── ruby.c │ │ ├── str_manual.c │ │ ├── undead.c │ │ ├── wand.c │ │ ├── wand2.c │ │ ├── water.c │ │ ├── wis_manual.c │ │ └── yellow.c │ ├── ruins │ │ ├── mons │ │ │ ├── crypt_thing.c │ │ │ ├── demon.c │ │ │ ├── devil.c │ │ │ ├── efreeti.c │ │ │ ├── grimlock.c │ │ │ ├── salamander.c │ │ │ ├── sewer_mon.c │ │ │ ├── shadow.c │ │ │ ├── shadow_demon.c │ │ │ ├── spectre.c │ │ │ └── zombie_lord.c │ │ ├── obj │ │ │ ├── battle_axe.c │ │ │ ├── bloodlust.c │ │ │ ├── bracelets.c │ │ │ ├── crystalball.c │ │ │ ├── darkbracelets.c │ │ │ ├── demon_boots.c │ │ │ ├── diamond_plate.c │ │ │ ├── diamonddagger.c │ │ │ ├── doom_bracers.c │ │ │ ├── dust_pouch.c │ │ │ ├── ebony_armor.c │ │ │ ├── eternity_sword.c │ │ │ ├── feathers.c │ │ │ ├── fire_spear.c │ │ │ ├── flower.c │ │ │ ├── gloves.c │ │ │ ├── glyph.c │ │ │ ├── hammer.c │ │ │ ├── heavens_mace.c │ │ │ ├── jerkin.c │ │ │ ├── leather.c │ │ │ ├── leggings.c │ │ │ ├── neutralgloves.c │ │ │ ├── nightbringer.c │ │ │ ├── pearl_lance.c │ │ │ ├── robes.c │ │ │ ├── rod.c │ │ │ ├── ruby_circlet.c │ │ │ ├── scales.c │ │ │ ├── serpent_hide.c │ │ │ ├── serpent_scales.c │ │ │ ├── serpent_tooth.c │ │ │ ├── serpentpike.c │ │ │ ├── shield+1.c │ │ │ ├── shield+2.c │ │ │ ├── sign.c │ │ │ ├── starlight_sword.c │ │ │ ├── starlight_sword.gar.bak.c │ │ │ ├── stone_heart.c │ │ │ ├── tooth.c │ │ │ ├── valor_cloak.c │ │ │ └── wflower.c │ │ ├── portal │ │ │ ├── entrance.c │ │ │ ├── p1.c │ │ │ ├── p10.c │ │ │ ├── p11.c │ │ │ ├── p12.c │ │ │ ├── p13.c │ │ │ ├── p14.c │ │ │ ├── p15.c │ │ │ ├── p16.c │ │ │ ├── p17.c │ │ │ ├── p18.c │ │ │ ├── p19.c │ │ │ ├── p2.c │ │ │ ├── p20.c │ │ │ ├── p21.c │ │ │ ├── p22.c │ │ │ ├── p23.c │ │ │ ├── p24.c │ │ │ ├── p25.c │ │ │ ├── p26.c │ │ │ ├── p27.c │ │ │ ├── p28.c │ │ │ ├── p29.c │ │ │ ├── p3.c │ │ │ ├── p30.c │ │ │ ├── p31.c │ │ │ ├── p32.c │ │ │ ├── p33.c │ │ │ ├── p34.c │ │ │ ├── p4.c │ │ │ ├── p5.c │ │ │ ├── p6.c │ │ │ ├── p7.c │ │ │ ├── p8.c │ │ │ ├── p9.c │ │ │ ├── plane.c │ │ │ ├── portal.c │ │ │ ├── throne1.c │ │ │ ├── throne2.c │ │ │ └── throne3.c │ │ ├── rooms │ │ │ ├── fountain.c │ │ │ ├── gates.c │ │ │ ├── graveyard.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── ruins1.c │ │ │ ├── ruins10.c │ │ │ ├── ruins11.c │ │ │ ├── ruins12.c │ │ │ ├── ruins13.c │ │ │ ├── ruins14.c │ │ │ ├── ruins15.c │ │ │ ├── ruins16.c │ │ │ ├── ruins17.c │ │ │ ├── ruins18.c │ │ │ ├── ruins2.c │ │ │ ├── ruins3.c │ │ │ ├── ruins4.c │ │ │ ├── ruins5.c │ │ │ ├── ruins6.c │ │ │ ├── ruins7.c │ │ │ ├── ruins8.c │ │ │ └── ruins9.c │ │ └── ruins.h │ ├── temple │ │ ├── pass0.c │ │ ├── pass1.c │ │ ├── pass10.c │ │ ├── pass11.c │ │ ├── pass12.c │ │ ├── pass13.c │ │ ├── pass14.c │ │ ├── pass15.c │ │ ├── pass16.c │ │ ├── pass17.c │ │ ├── pass18.c │ │ ├── pass19.c │ │ ├── pass2.c │ │ ├── pass20.c │ │ ├── pass21.c │ │ ├── pass22.c │ │ ├── pass23.c │ │ ├── pass24.c │ │ ├── pass25.c │ │ ├── pass26.c │ │ ├── pass27.c │ │ ├── pass28.c │ │ ├── pass29.c │ │ ├── pass3.c │ │ ├── pass4.c │ │ ├── pass5.c │ │ ├── pass6.c │ │ ├── pass7.c │ │ ├── pass8.c │ │ └── pass9.c │ ├── vale │ │ ├── DESC │ │ ├── forest │ │ │ ├── aash_trail1.c │ │ │ ├── aash_trail10.c │ │ │ ├── aash_trail11.c │ │ │ ├── aash_trail12.c │ │ │ ├── aash_trail13.c │ │ │ ├── aash_trail14.c │ │ │ ├── aash_trail15.c │ │ │ ├── aash_trail16.c │ │ │ ├── aash_trail2.c │ │ │ ├── aash_trail3.c │ │ │ ├── aash_trail4.c │ │ │ ├── aash_trail5.c │ │ │ ├── aash_trail6.c │ │ │ ├── aash_trail7.c │ │ │ ├── aash_trail8.c │ │ │ ├── aash_trail9.c │ │ │ ├── f1.c │ │ │ ├── f10.c │ │ │ ├── f11.c │ │ │ ├── f12.c │ │ │ ├── f13.c │ │ │ ├── f14.c │ │ │ ├── f15.c │ │ │ ├── f16.c │ │ │ ├── f17.c │ │ │ ├── f18.c │ │ │ ├── f19.c │ │ │ ├── f2.c │ │ │ ├── f20.c │ │ │ ├── f21.c │ │ │ ├── f22.c │ │ │ ├── f23.c │ │ │ ├── f24.c │ │ │ ├── f25.c │ │ │ ├── f26.c │ │ │ ├── f27.c │ │ │ ├── f28.c │ │ │ ├── f29.c │ │ │ ├── f3.c │ │ │ ├── f30.c │ │ │ ├── f31.c │ │ │ ├── f32.c │ │ │ ├── f33.c │ │ │ ├── f34.c │ │ │ ├── f35.c │ │ │ ├── f36.c │ │ │ ├── f37.c │ │ │ ├── f38.c │ │ │ ├── f39.c │ │ │ ├── f4.c │ │ │ ├── f40.c │ │ │ ├── f41.c │ │ │ ├── f42.c │ │ │ ├── f43.c │ │ │ ├── f44.c │ │ │ ├── f45.c │ │ │ ├── f46.c │ │ │ ├── f47.c │ │ │ ├── f48.c │ │ │ ├── f49.c │ │ │ ├── f5.c │ │ │ ├── f50.c │ │ │ ├── f51.c │ │ │ ├── f52.c │ │ │ ├── f53.c │ │ │ ├── f54.c │ │ │ ├── f55.c │ │ │ ├── f56.c │ │ │ ├── f57.c │ │ │ ├── f58.c │ │ │ ├── f59.c │ │ │ ├── f6.c │ │ │ ├── f60.c │ │ │ ├── f61.c │ │ │ ├── f7.c │ │ │ ├── f8.c │ │ │ ├── f9.c │ │ │ ├── trail1.c │ │ │ └── trail2.c │ │ ├── inherits │ │ │ ├── clearing.c │ │ │ ├── fborder.c │ │ │ ├── forest.c │ │ │ ├── grasslands.c │ │ │ ├── hut.c │ │ │ ├── riverbank.c │ │ │ ├── sanctuary.c │ │ │ ├── shore.c │ │ │ └── wall.c │ │ ├── rooms │ │ │ ├── c1.c │ │ │ ├── c10.c │ │ │ ├── c11.c │ │ │ ├── c12.c │ │ │ ├── c13.c │ │ │ ├── c14.c │ │ │ ├── c15.c │ │ │ ├── c16.c │ │ │ ├── c17.c │ │ │ ├── c18.c │ │ │ ├── c19.c │ │ │ ├── c2.c │ │ │ ├── c20.c │ │ │ ├── c21.c │ │ │ ├── c22.c │ │ │ ├── c23.c │ │ │ ├── c24.c │ │ │ ├── c25.c │ │ │ ├── c26.c │ │ │ ├── c27.c │ │ │ ├── c28.c │ │ │ ├── c29.c │ │ │ ├── c3.c │ │ │ ├── c30.c │ │ │ ├── c31.c │ │ │ ├── c32.c │ │ │ ├── c33.c │ │ │ ├── c34.c │ │ │ ├── c35.c │ │ │ ├── c36.c │ │ │ ├── c37.c │ │ │ ├── c38.c │ │ │ ├── c39.c │ │ │ ├── c4.c │ │ │ ├── c40.c │ │ │ ├── c41.c │ │ │ ├── c42.c │ │ │ ├── c43.c │ │ │ ├── c44.c │ │ │ ├── c45.c │ │ │ ├── c46.c │ │ │ ├── c47.c │ │ │ ├── c48.c │ │ │ ├── c49.c │ │ │ ├── c5.c │ │ │ ├── c50.c │ │ │ ├── c51.c │ │ │ ├── c52.c │ │ │ ├── c53.c │ │ │ ├── c54.c │ │ │ ├── c55.c │ │ │ ├── c6.c │ │ │ ├── c7.c │ │ │ ├── c8.c │ │ │ ├── c9.c │ │ │ ├── entrance.c │ │ │ ├── hut1.c │ │ │ ├── hut2.c │ │ │ ├── hut3.c │ │ │ ├── hut4.c │ │ │ ├── hut5.c │ │ │ ├── hut6.c │ │ │ ├── hut7.c │ │ │ ├── rbank1.c │ │ │ ├── rbank10.c │ │ │ ├── rbank11.c │ │ │ ├── rbank12.c │ │ │ ├── rbank13.c │ │ │ ├── rbank14.c │ │ │ ├── rbank15.c │ │ │ ├── rbank16.c │ │ │ ├── rbank17.c │ │ │ ├── rbank2.c │ │ │ ├── rbank3.c │ │ │ ├── rbank4.c │ │ │ ├── rbank5.c │ │ │ ├── rbank6.c │ │ │ ├── rbank7.c │ │ │ ├── rbank8.c │ │ │ ├── rbank9.c │ │ │ ├── sanctuary1.c │ │ │ ├── sanctuary2.c │ │ │ ├── sanctuary3.c │ │ │ ├── sanctuary4.c │ │ │ ├── sanctuary5.c │ │ │ ├── sanctuary6.c │ │ │ ├── sanctuary7.c │ │ │ ├── sanctuary8.c │ │ │ ├── sanctuary9.c │ │ │ ├── shore1.c │ │ │ ├── shore10.c │ │ │ ├── shore11.c │ │ │ ├── shore12.c │ │ │ ├── shore13.c │ │ │ ├── shore14.c │ │ │ ├── shore15.c │ │ │ ├── shore16.c │ │ │ ├── shore17.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── shore7.c │ │ │ ├── shore8.c │ │ │ ├── shore9.c │ │ │ ├── v1.c │ │ │ ├── v10.c │ │ │ ├── v11.c │ │ │ ├── v12.c │ │ │ ├── v13.c │ │ │ ├── v14.c │ │ │ ├── v15.c │ │ │ ├── v16.c │ │ │ ├── v17.c │ │ │ ├── v18.c │ │ │ ├── v19.c │ │ │ ├── v2.c │ │ │ ├── v20.c │ │ │ ├── v21.c │ │ │ ├── v22.c │ │ │ ├── v23.c │ │ │ ├── v24.c │ │ │ ├── v25.c │ │ │ ├── v26.c │ │ │ ├── v27.c │ │ │ ├── v28.c │ │ │ ├── v29.c │ │ │ ├── v3.c │ │ │ ├── v30.c │ │ │ ├── v31.c │ │ │ ├── v32.c │ │ │ ├── v33.c │ │ │ ├── v34.c │ │ │ ├── v35.c │ │ │ ├── v36.c │ │ │ ├── v37.c │ │ │ ├── v38.c │ │ │ ├── v39.c │ │ │ ├── v4.c │ │ │ ├── v40.c │ │ │ ├── v41.c │ │ │ ├── v42.c │ │ │ ├── v43.c │ │ │ ├── v44.c │ │ │ ├── v45.c │ │ │ ├── v46.c │ │ │ ├── v47.c │ │ │ ├── v48.c │ │ │ ├── v49.c │ │ │ ├── v5.c │ │ │ ├── v50.c │ │ │ ├── v51.c │ │ │ ├── v52.c │ │ │ ├── v53.c │ │ │ ├── v54.c │ │ │ ├── v55.c │ │ │ ├── v56.c │ │ │ ├── v57.c │ │ │ ├── v58.c │ │ │ ├── v59.c │ │ │ ├── v6.c │ │ │ ├── v60.c │ │ │ ├── v61.c │ │ │ ├── v62.c │ │ │ ├── v63.c │ │ │ ├── v64.c │ │ │ ├── v65.c │ │ │ ├── v66.c │ │ │ ├── v67.c │ │ │ ├── v68.c │ │ │ ├── v69.c │ │ │ ├── v7.c │ │ │ ├── v70.c │ │ │ ├── v71.c │ │ │ ├── v72.c │ │ │ ├── v73.c │ │ │ ├── v74.c │ │ │ ├── v75.c │ │ │ ├── v76.c │ │ │ ├── v77.c │ │ │ ├── v78.c │ │ │ ├── v79.c │ │ │ ├── v8.c │ │ │ ├── v80.c │ │ │ ├── v9.c │ │ │ ├── waterfall1.c │ │ │ ├── waterfall2.c │ │ │ ├── waterfall3.c │ │ │ └── waterfall4.c │ │ └── vale.h │ ├── valley │ │ ├── druid_placer.c │ │ ├── forest.c │ │ ├── meadow1.c │ │ ├── mons │ │ │ ├── almiraj.c │ │ │ ├── archdruid.c │ │ │ ├── ash_dryad.c │ │ │ ├── atomie.c │ │ │ ├── bbear.c │ │ │ ├── bear.c │ │ │ ├── bloodthorn.c │ │ │ ├── boar.c │ │ │ ├── bobcat.c │ │ │ ├── brownie.c │ │ │ ├── cherry_dryad.c │ │ │ ├── chestnut_dryad.c │ │ │ ├── clone_druid.c │ │ │ ├── cougar.c │ │ │ ├── creeper.c │ │ │ ├── direwolf.c │ │ │ ├── doe.c │ │ │ ├── dragonet.c │ │ │ ├── druid.c │ │ │ ├── druid1.c │ │ │ ├── druid10.c │ │ │ ├── druid11.c │ │ │ ├── druid12.c │ │ │ ├── druid2.c │ │ │ ├── druid3.c │ │ │ ├── druid4.c │ │ │ ├── druid5.c │ │ │ ├── druid6.c │ │ │ ├── druid7.c │ │ │ ├── druid8.c │ │ │ ├── druid9.c │ │ │ ├── dryad.c │ │ │ ├── dryad1.c │ │ │ ├── faerie.c │ │ │ ├── ferret.c │ │ │ ├── forest_wander.c │ │ │ ├── fox.c │ │ │ ├── gbear.c │ │ │ ├── gfeyr.c │ │ │ ├── ghast.c │ │ │ ├── ghost.c │ │ │ ├── ghost2.c │ │ │ ├── ghoul.c │ │ │ ├── gorgon.c │ │ │ ├── gsnake.c │ │ │ ├── haunt.c │ │ │ ├── heucuva.c │ │ │ ├── hshade.c │ │ │ ├── jackalw.c │ │ │ ├── kirre.c │ │ │ ├── mcenti.c │ │ │ ├── mf_wander.c │ │ │ ├── ms_wander.c │ │ │ ├── mv_wander.c │ │ │ ├── mzombie.c │ │ │ ├── neogi.c │ │ │ ├── nixie.c │ │ │ ├── nymph.c │ │ │ ├── oak_dryad.c │ │ │ ├── ogre.c │ │ │ ├── orc.c │ │ │ ├── owlbear.c │ │ │ ├── pixie.c │ │ │ ├── raccoon.c │ │ │ ├── sandling.c │ │ │ ├── sandman.c │ │ │ ├── satyr.c │ │ │ ├── sbeetle.c │ │ │ ├── sea_sprite.c │ │ │ ├── shore_wander.c │ │ │ ├── sirine.c │ │ │ ├── skeleton.c │ │ │ ├── snake.c │ │ │ ├── spider.c │ │ │ ├── sprite.c │ │ │ ├── stuff │ │ │ ├── swanmay.c │ │ │ ├── sylph.c │ │ │ ├── tworm.c │ │ │ ├── valley_wander.c │ │ │ ├── walnut_dryad.c │ │ │ ├── wdog.c │ │ │ ├── whipweed.c │ │ │ ├── wight.c │ │ │ ├── willow_dryad.c │ │ │ ├── wolfwere.c │ │ │ ├── wraith.c │ │ │ ├── wserpent.c │ │ │ ├── wskeleton.c │ │ │ ├── wstag.c │ │ │ └── zombie.c │ │ ├── obj │ │ │ ├── 2hsword.c │ │ │ ├── air_robes.c │ │ │ ├── axe.c │ │ │ ├── bbelt.c │ │ │ ├── bboots.c │ │ │ ├── belt_pouch.c │ │ │ ├── bikini.c │ │ │ ├── boquet.c │ │ │ ├── buckler.c │ │ │ ├── c_weapon.c │ │ │ ├── chainwhip.c │ │ │ ├── club.c │ │ │ ├── coral_ring.c │ │ │ ├── d_weapon.c │ │ │ ├── dhelm.c │ │ │ ├── dknife.c │ │ │ ├── dryad_staff.c │ │ │ ├── dshield.c │ │ │ ├── eagle_plate.c │ │ │ ├── evisor.c │ │ │ ├── feathercloak.c │ │ │ ├── flower_dress.c │ │ │ ├── freesia.c │ │ │ ├── gauntlets.c │ │ │ ├── gem.c │ │ │ ├── hematite_ring.c │ │ │ ├── herb.c │ │ │ ├── herb2.c │ │ │ ├── ice_cutlass.c │ │ │ ├── jewelry.c │ │ │ ├── leaf_crown.c │ │ │ ├── leaffan.c │ │ │ ├── loin.c │ │ │ ├── mandibles.c │ │ │ ├── meat.c │ │ │ ├── nymph_dress.c │ │ │ ├── nymph_dress2.c │ │ │ ├── nymph_dress2_in.c │ │ │ ├── nymph_dress_in.c │ │ │ ├── ogre_club.c │ │ │ ├── orchid.c │ │ │ ├── ornaments.c │ │ │ ├── pansies.c │ │ │ ├── phat.c │ │ │ ├── pipes.c │ │ │ ├── pshoes.c │ │ │ ├── r_legs.c │ │ │ ├── r_tunic.c │ │ │ ├── red_rose.c │ │ │ ├── rope_belt.c │ │ │ ├── rsword.c │ │ │ ├── rusty_armor.c │ │ │ ├── sea_dagger.c │ │ │ ├── shadow_blade.c │ │ │ ├── shifts.c │ │ │ ├── shining_sword.c │ │ │ ├── sirine_sword.c │ │ │ ├── skirt.c │ │ │ ├── snake_belt.c │ │ │ ├── snake_hide.c │ │ │ ├── snake_scale.c │ │ │ ├── spear.c │ │ │ ├── spider_eggs.c │ │ │ ├── sprite_arrows.c │ │ │ ├── sprite_bow.c │ │ │ ├── sshield.c │ │ │ ├── sspear.c │ │ │ ├── strawberries.c │ │ │ ├── sun_shield.c │ │ │ ├── sunblade.c │ │ │ ├── tcloak.c │ │ │ ├── teardrop.c │ │ │ ├── tempus_sword.c │ │ │ ├── tlongsword.c │ │ │ ├── trobes.c │ │ │ ├── tunics.c │ │ │ ├── vine_necklace.c │ │ │ └── white_rose.c │ │ ├── rooms │ │ │ ├── ash.c │ │ │ ├── cave1.c │ │ │ ├── cave2.c │ │ │ ├── cherry.c │ │ │ ├── chestnut.c │ │ │ ├── cliff.c │ │ │ ├── dryad1.c │ │ │ ├── dryad2.c │ │ │ ├── dryad3.c │ │ │ ├── dryad4.c │ │ │ ├── dryad5.c │ │ │ ├── dryad6.c │ │ │ ├── dt1.c │ │ │ ├── dt10.c │ │ │ ├── dt11.c │ │ │ ├── dt12.c │ │ │ ├── dt13.c │ │ │ ├── dt14.c │ │ │ ├── dt15.c │ │ │ ├── dt16.c │ │ │ ├── dt17.c │ │ │ ├── dt19.c │ │ │ ├── dt2.c │ │ │ ├── dt20.c │ │ │ ├── dt21.c │ │ │ ├── dt22.c │ │ │ ├── dt23.c │ │ │ ├── dt24.c │ │ │ ├── dt25.c │ │ │ ├── dt26.c │ │ │ ├── dt27.c │ │ │ ├── dt28.c │ │ │ ├── dt29.c │ │ │ ├── dt3.c │ │ │ ├── dt30.c │ │ │ ├── dt31.c │ │ │ ├── dt32.c │ │ │ ├── dt33.c │ │ │ ├── dt34.c │ │ │ ├── dt35.c │ │ │ ├── dt36.c │ │ │ ├── dt37.c │ │ │ ├── dt38.c │ │ │ ├── dt39.c │ │ │ ├── dt4.c │ │ │ ├── dt40.c │ │ │ ├── dt41.c │ │ │ ├── dt42.c │ │ │ ├── dt43.c │ │ │ ├── dt44.c │ │ │ ├── dt45.c │ │ │ ├── dt46.c │ │ │ ├── dt47.c │ │ │ ├── dt48.c │ │ │ ├── dt49.c │ │ │ ├── dt5.c │ │ │ ├── dt50.c │ │ │ ├── dt51.c │ │ │ ├── dt52.c │ │ │ ├── dt53.c │ │ │ ├── dt54.c │ │ │ ├── dt55.c │ │ │ ├── dt56.c │ │ │ ├── dt57.c │ │ │ ├── dt58.c │ │ │ ├── dt59.c │ │ │ ├── dt6.c │ │ │ ├── dt60.c │ │ │ ├── dt61.c │ │ │ ├── dt62.c │ │ │ ├── dt7.c │ │ │ ├── dt8.c │ │ │ ├── dt9.c │ │ │ ├── dtree.c │ │ │ ├── e1510.c │ │ │ ├── e1511.c │ │ │ ├── e1512.c │ │ │ ├── e1513.c │ │ │ ├── e1514.c │ │ │ ├── e1516.c │ │ │ ├── e1517.c │ │ │ ├── e1518.c │ │ │ ├── e1519.c │ │ │ ├── e1520.c │ │ │ ├── e1521.c │ │ │ ├── e1523.c │ │ │ ├── e1524.c │ │ │ ├── e1525.c │ │ │ ├── e1605.c │ │ │ ├── e1607.c │ │ │ ├── e1609.c │ │ │ ├── e1610.c │ │ │ ├── e1611.c │ │ │ ├── e1622.c │ │ │ ├── e1623.c │ │ │ ├── e1624.c │ │ │ ├── e1626.c │ │ │ ├── e1704.c │ │ │ ├── e1706.c │ │ │ ├── e1708.c │ │ │ ├── e1709.c │ │ │ ├── e1710.c │ │ │ ├── e1723.c │ │ │ ├── e1724.c │ │ │ ├── e1725.c │ │ │ ├── e1726.c │ │ │ ├── e1803.c │ │ │ ├── e1807.c │ │ │ ├── e1808.c │ │ │ ├── e1809.c │ │ │ ├── e1824.c │ │ │ ├── e1825.c │ │ │ ├── e1826.c │ │ │ ├── e1828.c │ │ │ ├── e1904.c │ │ │ ├── e1906.c │ │ │ ├── e1907.c │ │ │ ├── e1908.c │ │ │ ├── e1925.c │ │ │ ├── e1926.c │ │ │ ├── e1927.c │ │ │ ├── e1928.c │ │ │ ├── e1929.c │ │ │ ├── e2003.c │ │ │ ├── e2005.c │ │ │ ├── e2006.c │ │ │ ├── e2007.c │ │ │ ├── e2026.c │ │ │ ├── e2027.c │ │ │ ├── e2028.c │ │ │ ├── e2030.c │ │ │ ├── e2104.c │ │ │ ├── e2105.c │ │ │ ├── e2106.c │ │ │ ├── e2127.c │ │ │ ├── e2128.c │ │ │ ├── e2129.c │ │ │ ├── e2203.c │ │ │ ├── e2204.c │ │ │ ├── e2205.c │ │ │ ├── e2228.c │ │ │ ├── e2229.c │ │ │ ├── e2230.c │ │ │ ├── e2302.c │ │ │ ├── e2303.c │ │ │ ├── e2304.c │ │ │ ├── e2329.c │ │ │ ├── e2330.c │ │ │ ├── e2332.c │ │ │ ├── e2401.c │ │ │ ├── e2402.c │ │ │ ├── e2403.c │ │ │ ├── e2430.c │ │ │ ├── e2431.c │ │ │ ├── e2432.c │ │ │ ├── e2433.c │ │ │ ├── e2501.c │ │ │ ├── e2502.c │ │ │ ├── e2531.c │ │ │ ├── e2532.c │ │ │ ├── e2533.c │ │ │ ├── e2601.c │ │ │ ├── e2602.c │ │ │ ├── e2603.c │ │ │ ├── e2630.c │ │ │ ├── e2631.c │ │ │ ├── e2632.c │ │ │ ├── e2633.c │ │ │ ├── e2702.c │ │ │ ├── e2703.c │ │ │ ├── e2704.c │ │ │ ├── e2705.c │ │ │ ├── e2706.c │ │ │ ├── e2707.c │ │ │ ├── e2729.c │ │ │ ├── e2730.c │ │ │ ├── e2731.c │ │ │ ├── e2732.c │ │ │ ├── e2733.c │ │ │ ├── e2803.c │ │ │ ├── e2804.c │ │ │ ├── e2805.c │ │ │ ├── e2806.c │ │ │ ├── e2829.c │ │ │ ├── e2830.c │ │ │ ├── e2905.c │ │ │ ├── e2906.c │ │ │ ├── e3005.c │ │ │ ├── e3006.c │ │ │ ├── entrance.c │ │ │ ├── fring │ │ │ │ ├── f1.c │ │ │ │ ├── f10.c │ │ │ │ ├── f11.c │ │ │ │ ├── f12.c │ │ │ │ ├── f13.c │ │ │ │ ├── f2.c │ │ │ │ ├── f24.c │ │ │ │ ├── f25.c │ │ │ │ ├── f26.c │ │ │ │ ├── f3.c │ │ │ │ ├── f4.c │ │ │ │ ├── f5.c │ │ │ │ ├── f6.c │ │ │ │ ├── f7.c │ │ │ │ ├── f8.c │ │ │ │ └── f9.c │ │ │ ├── g1.c │ │ │ ├── g10.c │ │ │ ├── g100.c │ │ │ ├── g101.c │ │ │ ├── g102.c │ │ │ ├── g103.c │ │ │ ├── g104.c │ │ │ ├── g105.c │ │ │ ├── g106.c │ │ │ ├── g107.c │ │ │ ├── g108.c │ │ │ ├── g109.c │ │ │ ├── g11.c │ │ │ ├── g110.c │ │ │ ├── g111.c │ │ │ ├── g112.c │ │ │ ├── g113.c │ │ │ ├── g114.c │ │ │ ├── g115.c │ │ │ ├── g116.c │ │ │ ├── g117.c │ │ │ ├── g118.c │ │ │ ├── g119.c │ │ │ ├── g12.c │ │ │ ├── g120.c │ │ │ ├── g121.c │ │ │ ├── g13.c │ │ │ ├── g14.c │ │ │ ├── g15.c │ │ │ ├── g16.c │ │ │ ├── g17.c │ │ │ ├── g18.c │ │ │ ├── g19.c │ │ │ ├── g2.c │ │ │ ├── g20.c │ │ │ ├── g21.c │ │ │ ├── g22.c │ │ │ ├── g23.c │ │ │ ├── g24.c │ │ │ ├── g25.c │ │ │ ├── g26.c │ │ │ ├── g27.c │ │ │ ├── g28.c │ │ │ ├── g29.c │ │ │ ├── g3.c │ │ │ ├── g30.c │ │ │ ├── g31.c │ │ │ ├── g32.c │ │ │ ├── g33.c │ │ │ ├── g34.c │ │ │ ├── g35.c │ │ │ ├── g36.c │ │ │ ├── g37.c │ │ │ ├── g38.c │ │ │ ├── g39.c │ │ │ ├── g4.c │ │ │ ├── g40.c │ │ │ ├── g41.c │ │ │ ├── g42.c │ │ │ ├── g43.c │ │ │ ├── g44.c │ │ │ ├── g45.c │ │ │ ├── g46.c │ │ │ ├── g47.c │ │ │ ├── g48.c │ │ │ ├── g49.c │ │ │ ├── g5.c │ │ │ ├── g50.c │ │ │ ├── g51.c │ │ │ ├── g52.c │ │ │ ├── g53.c │ │ │ ├── g54.c │ │ │ ├── g55.c │ │ │ ├── g56.c │ │ │ ├── g57.c │ │ │ ├── g58.c │ │ │ ├── g59.c │ │ │ ├── g6.c │ │ │ ├── g60.c │ │ │ ├── g61.c │ │ │ ├── g62.c │ │ │ ├── g63.c │ │ │ ├── g64.c │ │ │ ├── g65.c │ │ │ ├── g66.c │ │ │ ├── g67.c │ │ │ ├── g68.c │ │ │ ├── g69.c │ │ │ ├── g7.c │ │ │ ├── g70.c │ │ │ ├── g71.c │ │ │ ├── g72.c │ │ │ ├── g73.c │ │ │ ├── g74.c │ │ │ ├── g75.c │ │ │ ├── g76.c │ │ │ ├── g77.c │ │ │ ├── g78.c │ │ │ ├── g79.c │ │ │ ├── g8.c │ │ │ ├── g80.c │ │ │ ├── g81.c │ │ │ ├── g82.c │ │ │ ├── g83.c │ │ │ ├── g84.c │ │ │ ├── g85.c │ │ │ ├── g86.c │ │ │ ├── g87.c │ │ │ ├── g88.c │ │ │ ├── g89.c │ │ │ ├── g9.c │ │ │ ├── g90.c │ │ │ ├── g91.c │ │ │ ├── g92.c │ │ │ ├── g93.c │ │ │ ├── g94.c │ │ │ ├── g95.c │ │ │ ├── g96.c │ │ │ ├── g97.c │ │ │ ├── g98.c │ │ │ ├── g99.c │ │ │ ├── inherit │ │ │ │ ├── darktrail.c │ │ │ │ ├── dtrail2.c │ │ │ │ ├── edge2.c │ │ │ │ ├── fring.c │ │ │ │ ├── grass.c │ │ │ │ ├── grass1.c │ │ │ │ ├── lake.c │ │ │ │ ├── lake1.c │ │ │ │ ├── meadow.c │ │ │ │ ├── rbank.c │ │ │ │ ├── river1.c │ │ │ │ ├── tree.c │ │ │ │ ├── valley.c │ │ │ │ ├── valley1.c │ │ │ │ ├── valley_1.c │ │ │ │ ├── valley_2.c │ │ │ │ └── wflowers.c │ │ │ ├── m1.c │ │ │ ├── m10.c │ │ │ ├── m11.c │ │ │ ├── m12.c │ │ │ ├── m13.c │ │ │ ├── m14.c │ │ │ ├── m15.c │ │ │ ├── m16.c │ │ │ ├── m17.c │ │ │ ├── m18.c │ │ │ ├── m19.c │ │ │ ├── m2.c │ │ │ ├── m20.c │ │ │ ├── m21.c │ │ │ ├── m22.c │ │ │ ├── m23.c │ │ │ ├── m24.c │ │ │ ├── m25.c │ │ │ ├── m26.c │ │ │ ├── m27.c │ │ │ ├── m28.c │ │ │ ├── m29.c │ │ │ ├── m3.c │ │ │ ├── m30.c │ │ │ ├── m31.c │ │ │ ├── m32.c │ │ │ ├── m33.c │ │ │ ├── m34.c │ │ │ ├── m35.c │ │ │ ├── m36.c │ │ │ ├── m4.c │ │ │ ├── m5.c │ │ │ ├── m6.c │ │ │ ├── m7.c │ │ │ ├── m8.c │ │ │ ├── m9.c │ │ │ ├── oak.c │ │ │ ├── ogrecamp.c │ │ │ ├── orccave.c │ │ │ ├── rb1.c │ │ │ ├── rb10.c │ │ │ ├── rb11.c │ │ │ ├── rb12.c │ │ │ ├── rb13.c │ │ │ ├── rb14.c │ │ │ ├── rb15.c │ │ │ ├── rb16.c │ │ │ ├── rb2.c │ │ │ ├── rb3.c │ │ │ ├── rb4.c │ │ │ ├── rb5.c │ │ │ ├── rb6.c │ │ │ ├── rb7.c │ │ │ ├── rb8.c │ │ │ ├── rb9.c │ │ │ ├── rbank1.c │ │ │ ├── selune_shrine.c │ │ │ ├── shore1.c │ │ │ ├── shore10.c │ │ │ ├── shore11.c │ │ │ ├── shore12.c │ │ │ ├── shore13.c │ │ │ ├── shore14.c │ │ │ ├── shore15.c │ │ │ ├── shore16.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── shore7.c │ │ │ ├── shore8.c │ │ │ ├── shore9.c │ │ │ ├── snake.c │ │ │ ├── spider1.c │ │ │ ├── spider2.c │ │ │ ├── spider3.c │ │ │ ├── spider4.c │ │ │ ├── test.c │ │ │ ├── tree1.c │ │ │ ├── tree2.c │ │ │ ├── tree3.c │ │ │ ├── tree4.c │ │ │ ├── v1.c │ │ │ ├── v10.c │ │ │ ├── v11.c │ │ │ ├── v12.c │ │ │ ├── v13.c │ │ │ ├── v14.c │ │ │ ├── v15.c │ │ │ ├── v16.c │ │ │ ├── v17.c │ │ │ ├── v18.c │ │ │ ├── v19.c │ │ │ ├── v2.c │ │ │ ├── v20.c │ │ │ ├── v21.c │ │ │ ├── v22.c │ │ │ ├── v23.c │ │ │ ├── v24.c │ │ │ ├── v25.c │ │ │ ├── v26.c │ │ │ ├── v27.c │ │ │ ├── v28.c │ │ │ ├── v29.c │ │ │ ├── v3.c │ │ │ ├── v30.c │ │ │ ├── v31.c │ │ │ ├── v32.c │ │ │ ├── v33.c │ │ │ ├── v34.c │ │ │ ├── v35.c │ │ │ ├── v36.c │ │ │ ├── v37.c │ │ │ ├── v38.c │ │ │ ├── v39.c │ │ │ ├── v4.c │ │ │ ├── v40.c │ │ │ ├── v41.c │ │ │ ├── v42.c │ │ │ ├── v43.c │ │ │ ├── v44.c │ │ │ ├── v45.c │ │ │ ├── v46.c │ │ │ ├── v47.c │ │ │ ├── v48.c │ │ │ ├── v49.c │ │ │ ├── v5.c │ │ │ ├── v50.c │ │ │ ├── v51.c │ │ │ ├── v52.c │ │ │ ├── v53.c │ │ │ ├── v54.c │ │ │ ├── v55.c │ │ │ ├── v56.c │ │ │ ├── v57.c │ │ │ ├── v58.c │ │ │ ├── v59.c │ │ │ ├── v6.c │ │ │ ├── v60.c │ │ │ ├── v61.c │ │ │ ├── v62.c │ │ │ ├── v63.c │ │ │ ├── v64.c │ │ │ ├── v65.c │ │ │ ├── v66.c │ │ │ ├── v67.c │ │ │ ├── v68.c │ │ │ ├── v69.c │ │ │ ├── v7.c │ │ │ ├── v70.c │ │ │ ├── v71.c │ │ │ ├── v72.c │ │ │ ├── v73.c │ │ │ ├── v74.c │ │ │ ├── v75.c │ │ │ ├── v76.c │ │ │ ├── v77.c │ │ │ ├── v78.c │ │ │ ├── v79.c │ │ │ ├── v8.c │ │ │ ├── v80.c │ │ │ ├── v81.c │ │ │ ├── v82.c │ │ │ ├── v83.c │ │ │ ├── v84.c │ │ │ ├── v85.c │ │ │ ├── v86.c │ │ │ ├── v87.c │ │ │ ├── v88.c │ │ │ ├── v89.c │ │ │ ├── v9.c │ │ │ ├── v90.c │ │ │ ├── w1.c │ │ │ ├── w2.c │ │ │ ├── w3.c │ │ │ ├── w4.c │ │ │ ├── w5.c │ │ │ ├── walnut.c │ │ │ └── willow.c │ │ ├── s_bank.c │ │ ├── trails.c │ │ ├── val.c │ │ └── valley.h │ ├── virtual │ │ ├── antiforest │ │ │ ├── 0,6.antiforest.c │ │ │ ├── 10,9.antiforest.c │ │ │ ├── 11,10.antiforest.c │ │ │ ├── 20,10.antiforest.c │ │ │ ├── 9,10.antiforest.c │ │ │ ├── antiforest.desc │ │ │ ├── antiforest.exits │ │ │ └── antiforest.terrain │ │ ├── antiforest_daemon.c │ │ ├── antiforest_server.c │ │ ├── test │ │ │ ├── 0,0.test.c │ │ │ ├── test.desc │ │ │ ├── test.exits │ │ │ └── test.terrain │ │ ├── test_daemon.c │ │ └── test_server.c │ ├── weapon │ │ ├── arm.c │ │ ├── axe.c │ │ ├── fogdagger.c │ │ ├── longsword.c │ │ ├── paintbrush.c │ │ ├── sceptre.c │ │ ├── shortsword.c │ │ ├── skelsword.c │ │ └── stick.c │ ├── wild │ │ ├── forest │ │ │ ├── chapel_out.c │ │ │ ├── forest_entr1.c │ │ │ ├── forest_sign.c │ │ │ ├── towncrier.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ ├── trail3.c │ │ │ ├── trail4.c │ │ │ ├── trail5.c │ │ │ ├── trail6.c │ │ │ └── virtual │ │ │ │ ├── antiforest │ │ │ │ ├── 20,11.antiforest.c │ │ │ │ ├── antiforest.desc │ │ │ │ ├── antiforest.exits │ │ │ │ ├── antiforest.terrain │ │ │ │ └── eastgate.c │ │ │ │ ├── antiforest_daemon.c │ │ │ │ ├── antiforest_server.c │ │ │ │ ├── test │ │ │ │ ├── test.desc │ │ │ │ ├── test.exits │ │ │ │ └── test.terrain │ │ │ │ ├── test_daemon.c │ │ │ │ └── test_server.c │ │ └── mount │ │ │ ├── muln │ │ │ ├── mon │ │ │ │ └── muln.c │ │ │ ├── obj │ │ │ │ ├── andavenseye.c │ │ │ │ ├── conjwand.c │ │ │ │ ├── foesgift.c │ │ │ │ ├── frostreaver.c │ │ │ │ ├── icedagger.c │ │ │ │ ├── icediamond.c │ │ │ │ ├── iolitemail.c │ │ │ │ ├── linenpants.c │ │ │ │ ├── staffvital.c │ │ │ │ ├── talsanklet.c │ │ │ │ └── whdragonplate.c │ │ │ ├── paths.h │ │ │ └── rooms │ │ │ │ └── atrium.c │ │ │ ├── pass_1.c │ │ │ ├── pass_10.c │ │ │ ├── pass_11.c │ │ │ ├── pass_2.c │ │ │ ├── pass_3.c │ │ │ ├── pass_4.c │ │ │ ├── pass_5.c │ │ │ ├── pass_6.c │ │ │ ├── tcastle_1.c │ │ │ ├── tcastle_roof.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ └── trail3.c │ └── wiz_hall │ │ ├── gro_ofc.c │ │ ├── ign_ofc.c │ │ ├── wizard_rm1.c │ │ └── wizard_rm2.c ├── atoyatl │ ├── bridge_monitor_d.c │ ├── canoe_d.c │ ├── garus_locator_d.c │ ├── hexer_d.c │ ├── maze_d.c │ ├── reporter_d.c │ ├── tecqumin │ │ ├── base_files │ │ │ ├── air.c │ │ │ ├── bridge_base.c │ │ │ ├── canalbank_base.c │ │ │ ├── canoe.c │ │ │ ├── canyon_path_base.c │ │ │ ├── canyon_riverbank_base.c │ │ │ ├── city_jung_base.c │ │ │ ├── clear_road01.c │ │ │ ├── clear_road_base.c │ │ │ ├── corridor_base.c │ │ │ ├── garden_base.c │ │ │ ├── grand_hut_base.c │ │ │ ├── grand_ruin_base.c │ │ │ ├── hut_base.c │ │ │ ├── hut_interior_base.c │ │ │ ├── jung_base.c │ │ │ ├── kayak.c │ │ │ ├── leftbank_base.c │ │ │ ├── maze_base.c │ │ │ ├── maze_base.l2 │ │ │ ├── maze_base.l3 │ │ │ ├── maze_base.lj4 │ │ │ ├── maze_base.luj2 │ │ │ ├── ragged_road_base.c │ │ │ ├── rightbank_base.c │ │ │ ├── river.c │ │ │ ├── ropebridge_base.c │ │ │ ├── ruin_base.c │ │ │ ├── tunbase.c │ │ │ └── zig_int_base.c │ │ ├── chants.h │ │ ├── circe │ │ │ ├── abomination.c │ │ │ ├── c_yuan-ti_flavor.c │ │ │ ├── macana.c │ │ │ ├── ruins1.c │ │ │ ├── ruins2.c │ │ │ ├── tooth_necklace.c │ │ │ └── yuan-ti_flavor.c │ │ ├── city │ │ │ └── rooms │ │ │ │ ├── balcony.c │ │ │ │ ├── bridge01.c │ │ │ │ ├── bridge02.c │ │ │ │ ├── bridge_base.c │ │ │ │ ├── broken_bridge01.c │ │ │ │ ├── broken_bridge02.c │ │ │ │ ├── canalbank01.c │ │ │ │ ├── canalbank02.c │ │ │ │ ├── canalbank03.c │ │ │ │ ├── canalbank04.c │ │ │ │ ├── canalbank_base.c │ │ │ │ ├── city_jung01.c │ │ │ │ ├── city_jung02.c │ │ │ │ ├── city_jung03.c │ │ │ │ ├── city_jung04.c │ │ │ │ ├── city_jung05.c │ │ │ │ ├── city_jung06.c │ │ │ │ ├── city_jung07.c │ │ │ │ ├── city_jung08.c │ │ │ │ ├── city_jung09.c │ │ │ │ ├── city_jung10.c │ │ │ │ ├── city_jung11.c │ │ │ │ ├── city_jung12.c │ │ │ │ ├── city_jung13.c │ │ │ │ ├── city_jung15.c │ │ │ │ ├── city_jung16.c │ │ │ │ ├── city_jung17.c │ │ │ │ ├── city_jung18.c │ │ │ │ ├── city_jung_base.c │ │ │ │ ├── clear_road01.c │ │ │ │ ├── clear_road02.c │ │ │ │ ├── clear_road_base.c │ │ │ │ ├── east_corridor1.c │ │ │ │ ├── east_corridor2.c │ │ │ │ ├── east_tower.c │ │ │ │ ├── garden_east.c │ │ │ │ ├── garden_west.c │ │ │ │ ├── grand_hut01.c │ │ │ │ ├── grand_hut02.c │ │ │ │ ├── grand_hut_base.c │ │ │ │ ├── grand_interior01.c │ │ │ │ ├── grand_interior02.c │ │ │ │ ├── grand_ruin01.c │ │ │ │ ├── grand_ruin02.c │ │ │ │ ├── grand_ruin03.c │ │ │ │ ├── grand_ruin_base.c │ │ │ │ ├── hut01.c │ │ │ │ ├── hut02.c │ │ │ │ ├── hut_base.c │ │ │ │ ├── hut_int01.c │ │ │ │ ├── mehaq_room.c │ │ │ │ ├── palace_approach.c │ │ │ │ ├── palace_entrance.c │ │ │ │ ├── palace_entry_hall.c │ │ │ │ ├── plaza.c │ │ │ │ ├── ragged_road01.c │ │ │ │ ├── ragged_road02.c │ │ │ │ ├── ragged_road03.c │ │ │ │ ├── ragged_road04.c │ │ │ │ ├── ragged_road_base.c │ │ │ │ ├── ropebridge.h │ │ │ │ ├── ruin01.c │ │ │ │ ├── ruin02.c │ │ │ │ ├── ruin03.c │ │ │ │ ├── ruin04.c │ │ │ │ ├── ruin_base.c │ │ │ │ ├── taluc_room.c │ │ │ │ ├── throne_room.c │ │ │ │ ├── trophy_room.c │ │ │ │ ├── west_corridor1.c │ │ │ │ ├── west_corridor2.c │ │ │ │ ├── west_tower.c │ │ │ │ └── zig_approach.c │ │ ├── dealer.c │ │ ├── j_maze11.c │ │ ├── jungle │ │ │ ├── rooms │ │ │ │ ├── air.c │ │ │ │ ├── air1.c │ │ │ │ ├── air2.c │ │ │ │ ├── air3.c │ │ │ │ ├── air4.c │ │ │ │ ├── air5.c │ │ │ │ ├── bbridge_e1.c │ │ │ │ ├── bbridge_e2.c │ │ │ │ ├── bbridge_e3.c │ │ │ │ ├── bbridge_e4.c │ │ │ │ ├── bbridge_w1.c │ │ │ │ ├── bbridge_w2.c │ │ │ │ ├── bbridge_w3.c │ │ │ │ ├── bbridge_w4.c │ │ │ │ ├── bridge_monitor_d.c │ │ │ │ ├── bungee_room.c │ │ │ │ ├── canyon_path1.c │ │ │ │ ├── canyon_path10.c │ │ │ │ ├── canyon_path11.c │ │ │ │ ├── canyon_path12.c │ │ │ │ ├── canyon_path2.c │ │ │ │ ├── canyon_path3.c │ │ │ │ ├── canyon_path4.c │ │ │ │ ├── canyon_path5.c │ │ │ │ ├── canyon_path6.c │ │ │ │ ├── canyon_path7.c │ │ │ │ ├── canyon_path8.c │ │ │ │ ├── canyon_path9.c │ │ │ │ ├── canyon_riverbank.c │ │ │ │ ├── canyon_riverbank_west.c │ │ │ │ ├── cavern.c │ │ │ │ ├── fountain_youth.c │ │ │ │ ├── grand_interior02.c │ │ │ │ ├── inter_void.c │ │ │ │ ├── inter_void1.c │ │ │ │ ├── j_link2a │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── jag_lair_ground.c │ │ │ │ ├── jag_lair_outside.c │ │ │ │ ├── jag_tree1.c │ │ │ │ ├── jag_tree2.c │ │ │ │ ├── jaguar_lair.c │ │ │ │ ├── jung_base.c │ │ │ │ ├── jung_clearing.c │ │ │ │ ├── jung_waterfall.c │ │ │ │ ├── jung_waterhole.c │ │ │ │ ├── midway.c │ │ │ │ ├── river1.c │ │ │ │ ├── river2.c │ │ │ │ ├── river3.c │ │ │ │ ├── river4.c │ │ │ │ ├── river5.c │ │ │ │ ├── ropebridge0.c │ │ │ │ ├── ropebridge1.c │ │ │ │ ├── ropebridge2.c │ │ │ │ ├── ropebridge3.c │ │ │ │ ├── ropebridge4.c │ │ │ │ ├── ropebridge5.c │ │ │ │ ├── ropebridge_base.c │ │ │ │ ├── ropebridge_base.c.c │ │ │ │ ├── shore.c │ │ │ │ ├── tower_top.c │ │ │ │ ├── tun_entry.c │ │ │ │ └── void.c │ │ │ └── tecqumin.h │ │ ├── junglea │ │ │ └── rooms │ │ │ │ ├── j_link1.c │ │ │ │ ├── j_link8a.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ └── jung_waterhole.c │ │ ├── jungleb │ │ │ └── rooms │ │ │ │ ├── city_entrance.c │ │ │ │ ├── j_link1a.c │ │ │ │ ├── j_link2.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ └── jung_waterfall.c │ │ ├── junglec │ │ │ └── rooms │ │ │ │ ├── branch.c │ │ │ │ ├── j_link2a.c │ │ │ │ ├── j_link3.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── snake_room.c │ │ │ │ └── tower.c │ │ ├── jungled │ │ │ └── rooms │ │ │ │ ├── city_jung14.c │ │ │ │ ├── j_link3a.c │ │ │ │ ├── j_link4.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── j_mazej_maze0.c │ │ │ │ ├── jag_lair_entry.c │ │ │ │ └── tabaxi_exit.c │ │ ├── junglee │ │ │ ├── rightbank1.c │ │ │ ├── rightbank10.c │ │ │ ├── rightbank11.c │ │ │ ├── rightbank12.c │ │ │ ├── rightbank13.c │ │ │ ├── rightbank14.c │ │ │ ├── rightbank15.c │ │ │ ├── rightbank16.c │ │ │ ├── rightbank17.c │ │ │ ├── rightbank18.c │ │ │ ├── rightbank19.c │ │ │ ├── rightbank2.c │ │ │ ├── rightbank20.c │ │ │ ├── rightbank21.c │ │ │ ├── rightbank22.c │ │ │ ├── rightbank23.c │ │ │ ├── rightbank24.c │ │ │ ├── rightbank25.c │ │ │ ├── rightbank26.c │ │ │ ├── rightbank27.c │ │ │ ├── rightbank28.c │ │ │ ├── rightbank29.c │ │ │ ├── rightbank3.c │ │ │ ├── rightbank30.c │ │ │ ├── rightbank31.c │ │ │ ├── rightbank32.c │ │ │ ├── rightbank33.c │ │ │ ├── rightbank34.c │ │ │ ├── rightbank35.c │ │ │ ├── rightbank36.c │ │ │ ├── rightbank37.c │ │ │ ├── rightbank38.c │ │ │ ├── rightbank39.c │ │ │ ├── rightbank4.c │ │ │ ├── rightbank40.c │ │ │ ├── rightbank41.c │ │ │ ├── rightbank42.c │ │ │ ├── rightbank43.c │ │ │ ├── rightbank44.c │ │ │ ├── rightbank45.c │ │ │ ├── rightbank46.c │ │ │ ├── rightbank47.c │ │ │ ├── rightbank48.c │ │ │ ├── rightbank49.c │ │ │ ├── rightbank5.c │ │ │ ├── rightbank50.c │ │ │ ├── rightbank6.c │ │ │ ├── rightbank7.c │ │ │ ├── rightbank8.c │ │ │ ├── rightbank9.c │ │ │ └── rooms │ │ │ │ ├── j_link4a.c │ │ │ │ ├── j_link5.c │ │ │ │ ├── j_link9.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── rightbank0.c │ │ │ │ ├── rightbank1.c │ │ │ │ ├── rightbank10.c │ │ │ │ ├── rightbank11.c │ │ │ │ ├── rightbank12.c │ │ │ │ ├── rightbank13.c │ │ │ │ ├── rightbank14.c │ │ │ │ ├── rightbank15.c │ │ │ │ ├── rightbank16.c │ │ │ │ ├── rightbank17.c │ │ │ │ ├── rightbank18.c │ │ │ │ ├── rightbank19.c │ │ │ │ ├── rightbank2.c │ │ │ │ ├── rightbank20.c │ │ │ │ ├── rightbank21.c │ │ │ │ ├── rightbank22.c │ │ │ │ ├── rightbank23.c │ │ │ │ ├── rightbank24.c │ │ │ │ ├── rightbank25.c │ │ │ │ ├── rightbank26.c │ │ │ │ ├── rightbank27.c │ │ │ │ ├── rightbank28.c │ │ │ │ ├── rightbank29.c │ │ │ │ ├── rightbank3.c │ │ │ │ ├── rightbank30.c │ │ │ │ ├── rightbank31.c │ │ │ │ ├── rightbank32.c │ │ │ │ ├── rightbank33.c │ │ │ │ ├── rightbank34.c │ │ │ │ ├── rightbank35.c │ │ │ │ ├── rightbank36.c │ │ │ │ ├── rightbank37.c │ │ │ │ ├── rightbank38.c │ │ │ │ ├── rightbank39.c │ │ │ │ ├── rightbank4.c │ │ │ │ ├── rightbank40.c │ │ │ │ ├── rightbank41.c │ │ │ │ ├── rightbank42.c │ │ │ │ ├── rightbank43.c │ │ │ │ ├── rightbank44.c │ │ │ │ ├── rightbank45.c │ │ │ │ ├── rightbank47.c │ │ │ │ ├── rightbank48.c │ │ │ │ ├── rightbank49.c │ │ │ │ ├── rightbank5.c │ │ │ │ ├── rightbank50.c │ │ │ │ ├── rightbank6.c │ │ │ │ ├── rightbank7.c │ │ │ │ ├── rightbank8.c │ │ │ │ └── rightbank9.c │ │ ├── junglef │ │ │ └── rooms │ │ │ │ ├── bungee_room.c │ │ │ │ ├── city_jung18.c │ │ │ │ ├── j_link5a.c │ │ │ │ ├── j_link6.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── ragged_road_connection.c │ │ │ │ └── rightbank1.c │ │ ├── jungleg │ │ │ ├── chants.h │ │ │ └── rooms │ │ │ │ ├── branch.c │ │ │ │ ├── j_link6a.c │ │ │ │ ├── j_link7.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── jung_clearing.c │ │ │ │ ├── parrot_room.c │ │ │ │ ├── riverbank.c │ │ │ │ ├── shore.c │ │ │ │ └── snake_room.c │ │ ├── jungleh │ │ │ └── rooms │ │ │ │ ├── j_link7a.c │ │ │ │ ├── j_link8.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── maze_d.c │ │ │ │ └── tun_entry.c │ │ ├── junglei │ │ │ ├── j_maze0.c │ │ │ ├── j_maze1.c │ │ │ ├── j_maze10.c │ │ │ ├── j_maze11.c │ │ │ ├── j_maze12.c │ │ │ ├── j_maze13.c │ │ │ ├── j_maze14.c │ │ │ ├── j_maze15.c │ │ │ ├── j_maze16.c │ │ │ ├── j_maze17.c │ │ │ ├── j_maze18.c │ │ │ ├── j_maze25.c │ │ │ ├── j_maze26.c │ │ │ ├── j_maze27.c │ │ │ ├── j_maze28.c │ │ │ ├── j_maze29.c │ │ │ ├── j_maze3.c │ │ │ ├── j_maze30.c │ │ │ ├── j_maze31.c │ │ │ ├── j_maze32.c │ │ │ ├── j_maze33.c │ │ │ ├── j_maze41.c │ │ │ ├── j_maze42.c │ │ │ ├── j_maze43.c │ │ │ ├── j_maze44.c │ │ │ ├── j_maze45.c │ │ │ ├── j_maze46.c │ │ │ ├── j_maze47.c │ │ │ ├── j_maze48.c │ │ │ ├── j_maze49.c │ │ │ ├── j_maze5.c │ │ │ ├── j_maze58.c │ │ │ ├── j_maze59.c │ │ │ ├── j_maze60.c │ │ │ ├── j_maze61.c │ │ │ ├── j_maze62.c │ │ │ ├── j_maze63.c │ │ │ ├── j_maze64.c │ │ │ ├── j_maze66.c │ │ │ └── rooms │ │ │ │ ├── j_link10.c │ │ │ │ ├── j_link9a.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── leftbank0.c │ │ │ │ ├── leftbank1.c │ │ │ │ ├── leftbank10.c │ │ │ │ ├── leftbank11.c │ │ │ │ ├── leftbank12.c │ │ │ │ ├── leftbank13.c │ │ │ │ ├── leftbank14.c │ │ │ │ ├── leftbank15.c │ │ │ │ ├── leftbank16.c │ │ │ │ ├── leftbank17.c │ │ │ │ ├── leftbank18.c │ │ │ │ ├── leftbank19.c │ │ │ │ ├── leftbank2.c │ │ │ │ ├── leftbank20.c │ │ │ │ ├── leftbank21.c │ │ │ │ ├── leftbank22.c │ │ │ │ ├── leftbank23.c │ │ │ │ ├── leftbank24.c │ │ │ │ ├── leftbank25.c │ │ │ │ ├── leftbank26.c │ │ │ │ ├── leftbank27.c │ │ │ │ ├── leftbank28.c │ │ │ │ ├── leftbank29.c │ │ │ │ ├── leftbank3.c │ │ │ │ ├── leftbank30.c │ │ │ │ ├── leftbank31.c │ │ │ │ ├── leftbank32.c │ │ │ │ ├── leftbank33.c │ │ │ │ ├── leftbank34.c │ │ │ │ ├── leftbank35.c │ │ │ │ ├── leftbank36.c │ │ │ │ ├── leftbank37.c │ │ │ │ ├── leftbank38.c │ │ │ │ ├── leftbank39.c │ │ │ │ ├── leftbank4.c │ │ │ │ ├── leftbank40.c │ │ │ │ ├── leftbank41.c │ │ │ │ ├── leftbank42.c │ │ │ │ ├── leftbank43.c │ │ │ │ ├── leftbank44.c │ │ │ │ ├── leftbank45.c │ │ │ │ ├── leftbank46.c │ │ │ │ ├── leftbank47.c │ │ │ │ ├── leftbank48.c │ │ │ │ ├── leftbank49.c │ │ │ │ ├── leftbank5.c │ │ │ │ ├── leftbank50.c │ │ │ │ ├── leftbank6.c │ │ │ │ ├── leftbank7.c │ │ │ │ ├── leftbank8.c │ │ │ │ ├── leftbank9.c │ │ │ │ ├── rightbank10.c │ │ │ │ ├── rightbank11.c │ │ │ │ ├── rightbank12.c │ │ │ │ ├── rightbank13.c │ │ │ │ ├── rightbank14.c │ │ │ │ ├── rightbank15.c │ │ │ │ ├── rightbank16.c │ │ │ │ ├── rightbank17.c │ │ │ │ ├── rightbank18.c │ │ │ │ ├── rightbank19.c │ │ │ │ ├── rightbank20.c │ │ │ │ ├── rightbank21.c │ │ │ │ ├── rightbank22.c │ │ │ │ ├── rightbank23.c │ │ │ │ ├── rightbank24.c │ │ │ │ ├── rightbank25.c │ │ │ │ ├── rightbank26.c │ │ │ │ ├── rightbank27.c │ │ │ │ ├── rightbank28.c │ │ │ │ ├── rightbank29.c │ │ │ │ ├── rightbank30.c │ │ │ │ ├── rightbank31.c │ │ │ │ ├── rightbank32.c │ │ │ │ ├── rightbank33.c │ │ │ │ ├── rightbank34.c │ │ │ │ ├── rightbank35.c │ │ │ │ ├── rightbank36.c │ │ │ │ ├── rightbank37.c │ │ │ │ ├── rightbank38.c │ │ │ │ ├── rightbank39.c │ │ │ │ ├── rightbank40.c │ │ │ │ ├── rightbank41.c │ │ │ │ ├── rightbank42.c │ │ │ │ ├── rightbank43.c │ │ │ │ ├── rightbank44.c │ │ │ │ ├── rightbank45.c │ │ │ │ ├── rightbank46.c │ │ │ │ ├── rightbank47.c │ │ │ │ ├── rightbank48.c │ │ │ │ ├── rightbank49.c │ │ │ │ ├── rightbank50.c │ │ │ │ ├── rightbank7.c │ │ │ │ ├── rightbank8.c │ │ │ │ └── rightbank9.c │ │ ├── junglej │ │ │ └── rooms │ │ │ │ ├── carved_gate.c │ │ │ │ ├── j_link10a.c │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ ├── jung_base.rem │ │ │ │ └── leftbank1.c │ │ ├── junglek │ │ │ └── rooms │ │ │ │ ├── j_maze0.c │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ └── j_maze99.c │ │ ├── junglel │ │ │ └── rooms │ │ │ │ ├── j_maze1.c │ │ │ │ ├── j_maze10.c │ │ │ │ ├── j_maze100.c │ │ │ │ ├── j_maze11.c │ │ │ │ ├── j_maze12.c │ │ │ │ ├── j_maze13.c │ │ │ │ ├── j_maze14.c │ │ │ │ ├── j_maze15.c │ │ │ │ ├── j_maze16.c │ │ │ │ ├── j_maze17.c │ │ │ │ ├── j_maze18.c │ │ │ │ ├── j_maze19.c │ │ │ │ ├── j_maze2.c │ │ │ │ ├── j_maze20.c │ │ │ │ ├── j_maze21.c │ │ │ │ ├── j_maze22.c │ │ │ │ ├── j_maze23.c │ │ │ │ ├── j_maze24.c │ │ │ │ ├── j_maze25.c │ │ │ │ ├── j_maze26.c │ │ │ │ ├── j_maze27.c │ │ │ │ ├── j_maze28.c │ │ │ │ ├── j_maze29.c │ │ │ │ ├── j_maze3.c │ │ │ │ ├── j_maze30.c │ │ │ │ ├── j_maze31.c │ │ │ │ ├── j_maze32.c │ │ │ │ ├── j_maze33.c │ │ │ │ ├── j_maze34.c │ │ │ │ ├── j_maze35.c │ │ │ │ ├── j_maze36.c │ │ │ │ ├── j_maze37.c │ │ │ │ ├── j_maze38.c │ │ │ │ ├── j_maze39.c │ │ │ │ ├── j_maze4.c │ │ │ │ ├── j_maze40.c │ │ │ │ ├── j_maze41.c │ │ │ │ ├── j_maze42.c │ │ │ │ ├── j_maze43.c │ │ │ │ ├── j_maze44.c │ │ │ │ ├── j_maze45.c │ │ │ │ ├── j_maze46.c │ │ │ │ ├── j_maze47.c │ │ │ │ ├── j_maze48.c │ │ │ │ ├── j_maze49.c │ │ │ │ ├── j_maze5.c │ │ │ │ ├── j_maze50.c │ │ │ │ ├── j_maze51.c │ │ │ │ ├── j_maze52.c │ │ │ │ ├── j_maze53.c │ │ │ │ ├── j_maze54.c │ │ │ │ ├── j_maze55.c │ │ │ │ ├── j_maze56.c │ │ │ │ ├── j_maze57.c │ │ │ │ ├── j_maze58.c │ │ │ │ ├── j_maze59.c │ │ │ │ ├── j_maze6.c │ │ │ │ ├── j_maze60.c │ │ │ │ ├── j_maze61.c │ │ │ │ ├── j_maze62.c │ │ │ │ ├── j_maze63.c │ │ │ │ ├── j_maze64.c │ │ │ │ ├── j_maze65.c │ │ │ │ ├── j_maze66.c │ │ │ │ ├── j_maze67.c │ │ │ │ ├── j_maze68.c │ │ │ │ ├── j_maze69.c │ │ │ │ ├── j_maze7.c │ │ │ │ ├── j_maze70.c │ │ │ │ ├── j_maze71.c │ │ │ │ ├── j_maze72.c │ │ │ │ ├── j_maze73.c │ │ │ │ ├── j_maze74.c │ │ │ │ ├── j_maze75.c │ │ │ │ ├── j_maze76.c │ │ │ │ ├── j_maze77.c │ │ │ │ ├── j_maze78.c │ │ │ │ ├── j_maze79.c │ │ │ │ ├── j_maze8.c │ │ │ │ ├── j_maze80.c │ │ │ │ ├── j_maze81.c │ │ │ │ ├── j_maze82.c │ │ │ │ ├── j_maze83.c │ │ │ │ ├── j_maze84.c │ │ │ │ ├── j_maze85.c │ │ │ │ ├── j_maze86.c │ │ │ │ ├── j_maze87.c │ │ │ │ ├── j_maze88.c │ │ │ │ ├── j_maze89.c │ │ │ │ ├── j_maze9.c │ │ │ │ ├── j_maze90.c │ │ │ │ ├── j_maze91.c │ │ │ │ ├── j_maze92.c │ │ │ │ ├── j_maze93.c │ │ │ │ ├── j_maze94.c │ │ │ │ ├── j_maze95.c │ │ │ │ ├── j_maze96.c │ │ │ │ ├── j_maze97.c │ │ │ │ ├── j_maze98.c │ │ │ │ ├── j_maze99.c │ │ │ │ └── jung_base.c │ │ ├── maze │ │ │ ├── maze0.c │ │ │ ├── maze1.c │ │ │ ├── maze10.c │ │ │ ├── maze11.c │ │ │ ├── maze12.c │ │ │ ├── maze13.c │ │ │ ├── maze14.c │ │ │ ├── maze15.c │ │ │ ├── maze16.c │ │ │ ├── maze17.c │ │ │ ├── maze18.c │ │ │ ├── maze19.c │ │ │ ├── maze2.c │ │ │ ├── maze20.c │ │ │ ├── maze21.c │ │ │ ├── maze22.c │ │ │ ├── maze23.c │ │ │ ├── maze24.c │ │ │ ├── maze25.c │ │ │ ├── maze26.c │ │ │ ├── maze27.c │ │ │ ├── maze28.c │ │ │ ├── maze29.c │ │ │ ├── maze3.c │ │ │ ├── maze30.c │ │ │ ├── maze31.c │ │ │ ├── maze32.c │ │ │ ├── maze33.c │ │ │ ├── maze34.c │ │ │ ├── maze35.c │ │ │ ├── maze36.c │ │ │ ├── maze37.c │ │ │ ├── maze38.c │ │ │ ├── maze39.c │ │ │ ├── maze4.c │ │ │ ├── maze40.c │ │ │ ├── maze41.c │ │ │ ├── maze42.c │ │ │ ├── maze43.c │ │ │ ├── maze44.c │ │ │ ├── maze45.c │ │ │ ├── maze46.c │ │ │ ├── maze47.c │ │ │ ├── maze48.c │ │ │ ├── maze49.c │ │ │ ├── maze5.c │ │ │ ├── maze50.c │ │ │ ├── maze51.c │ │ │ ├── maze52.c │ │ │ ├── maze53.c │ │ │ ├── maze54.c │ │ │ ├── maze55.c │ │ │ ├── maze56.c │ │ │ ├── maze57.c │ │ │ ├── maze58.c │ │ │ ├── maze59.c │ │ │ ├── maze6.c │ │ │ ├── maze60.c │ │ │ ├── maze61.c │ │ │ ├── maze62.c │ │ │ ├── maze63.c │ │ │ ├── maze64.c │ │ │ ├── maze65.c │ │ │ ├── maze66.c │ │ │ ├── maze7.c │ │ │ ├── maze8.c │ │ │ ├── maze9.c │ │ │ ├── maze_entry.c │ │ │ ├── maze_exit.c │ │ │ └── mazebase.c │ │ ├── mons │ │ │ ├── QNPC.c │ │ │ ├── QNPC.luk │ │ │ ├── alpha_dire_warthog.c │ │ │ ├── anaconda.c │ │ │ ├── apothecary.c │ │ │ ├── archer_squad.c │ │ │ ├── archer_troop.c │ │ │ ├── battlement.c │ │ │ ├── blacksmith.c │ │ │ ├── dire_warthog.c │ │ │ ├── empress.c │ │ │ ├── epithon.c │ │ │ ├── followmob.c │ │ │ ├── garus.c │ │ │ ├── ghost_priest.c │ │ │ ├── ghost_psywarrior.c │ │ │ ├── ghost_warrior.c │ │ │ ├── ghost_warrior2.c │ │ │ ├── gi_croc.c │ │ │ ├── greater_dire_warthog.c │ │ │ ├── guamansuri.c │ │ │ ├── hobble.c │ │ │ ├── hunt_mon.c │ │ │ ├── infettered_base.c │ │ │ ├── infettered_main.c │ │ │ ├── ixchel.c │ │ │ ├── jontar.c │ │ │ ├── mantis.c │ │ │ ├── mummy.c │ │ │ ├── nobacherie.c │ │ │ ├── oog_squad.c │ │ │ ├── orchevid.c │ │ │ ├── orog.c │ │ │ ├── orog.lujk │ │ │ ├── orog_archer.c │ │ │ ├── orog_berserker.c │ │ │ ├── orog_squad.c │ │ │ ├── orog_squad.l2 │ │ │ ├── orog_troop.c │ │ │ ├── parrot.c │ │ │ ├── parrot.l2 │ │ │ ├── pathfinder_d.c │ │ │ ├── phase_mon.c │ │ │ ├── python_treed.c │ │ │ ├── quali.c │ │ │ ├── ram_mob.c │ │ │ ├── rope.c │ │ │ ├── seal_mob.c │ │ │ ├── snakestomach.c │ │ │ ├── sprite.c │ │ │ ├── stomach_lining.c │ │ │ ├── tabaxi.c │ │ │ ├── tabaxi_archer.c │ │ │ ├── tabaxi_blacksmith.c │ │ │ ├── tabaxi_explorer.c │ │ │ ├── tabaxi_warrior.c │ │ │ ├── taluc.c │ │ │ ├── troop.c │ │ │ ├── unfettered_base.c │ │ │ ├── unfettered_base.larry │ │ │ ├── unfettered_clone.c │ │ │ ├── unfettered_main.c │ │ │ ├── werejag.c │ │ │ ├── werejag13.c │ │ │ └── werejaguar.c │ │ ├── obj │ │ │ ├── Object.c │ │ │ ├── aerial_root.c │ │ │ ├── amulet_of_seeking.c │ │ │ ├── aventurine.c │ │ │ ├── bag_logic.c │ │ │ ├── bind.c │ │ │ ├── bolas.c │ │ │ ├── bolas_greater.c │ │ │ ├── bungee_anchor.c │ │ │ ├── bungee_harness.c │ │ │ ├── cardpics.h │ │ │ ├── cardpics2.h │ │ │ ├── colouredserp.c │ │ │ ├── composite_bow.c │ │ │ ├── cultural_items.c │ │ │ ├── draught_flowers.c │ │ │ ├── ectoplasm.c │ │ │ ├── energy_source_base.c │ │ │ ├── ether_knife.c │ │ │ ├── ether_knife_greater.c │ │ │ ├── ether_sword.c │ │ │ ├── ether_sword_greater.c │ │ │ ├── expansion_belt.c │ │ │ ├── eyeofhelm.c │ │ │ ├── far_scanner2.c │ │ │ ├── far_scanner3.c │ │ │ ├── fermented_fruit.c │ │ │ ├── figurine.c │ │ │ ├── game_belt.c │ │ │ ├── greater_mummy_wrappings.c │ │ │ ├── grottokey.c │ │ │ ├── head.c │ │ │ ├── healstone.c │ │ │ ├── inner_void.c │ │ │ ├── jade_axe.c │ │ │ ├── jetstone.c │ │ │ ├── jung_maze.c │ │ │ ├── jung_maze2.c │ │ │ ├── jung_maze3.c │ │ │ ├── jung_maze4.c │ │ │ ├── jung_maze5.c │ │ │ ├── jung_maze6.c │ │ │ ├── jung_maze7.c │ │ │ ├── jung_maze8.c │ │ │ ├── jungle_heart.c │ │ │ ├── keystone.c │ │ │ ├── kilt.c │ │ │ ├── kilt_greater.c │ │ │ ├── macana.c │ │ │ ├── macquahuitl.c │ │ │ ├── maze_builder2.c │ │ │ ├── maze_builder3.c │ │ │ ├── mummy_wrappings.c │ │ │ ├── orchevid_root.c │ │ │ ├── paddle.c │ │ │ ├── parrot.c │ │ │ ├── parrot.l3 │ │ │ ├── plumed_headdress.c │ │ │ ├── poncho.c │ │ │ ├── poncho_greater.c │ │ │ ├── powdered_bone.c │ │ │ ├── powerstone.c │ │ │ ├── profile.c │ │ │ ├── pyramidkey.c │ │ │ ├── sac_knife.c │ │ │ ├── sack.c │ │ │ ├── seal.c │ │ │ ├── seal_pics.h │ │ │ ├── seeing_head.c │ │ │ ├── sign.c │ │ │ ├── silver_plate.c │ │ │ ├── snag.c │ │ │ ├── spear.c │ │ │ ├── stake.c │ │ │ ├── stakes.c │ │ │ ├── stone_buckler.c │ │ │ ├── stone_hammer.c │ │ │ ├── stone_shield │ │ │ ├── stone_shield.c │ │ │ ├── stoneball.c │ │ │ ├── tabaxi_battler.c │ │ │ ├── table.c │ │ │ ├── table_ob │ │ │ ├── table_ob.c │ │ │ ├── tablet.c │ │ │ ├── tec_maze.c │ │ │ ├── tentacle_monster.c │ │ │ ├── torc_greater.c │ │ │ ├── torc_lesser.c │ │ │ ├── totem.c │ │ │ ├── transporter.c │ │ │ ├── urn.c │ │ │ ├── void.c │ │ │ ├── waystation.c │ │ │ ├── waystation0.c │ │ │ ├── waystation1.c │ │ │ ├── waystation2.c │ │ │ └── wisp_of_hair.c │ │ ├── rooms │ │ │ ├── _web2ftp_com_IP_84_71_37_203.txt │ │ │ ├── air.c │ │ │ ├── air1.c │ │ │ ├── air2.c │ │ │ ├── air3.c │ │ │ ├── air4.c │ │ │ ├── air5.c │ │ │ ├── alcove.c │ │ │ ├── bbridge_e1.c │ │ │ ├── bbridge_e2.c │ │ │ ├── bbridge_e3.c │ │ │ ├── bbridge_e4.c │ │ │ ├── bbridge_w1.c │ │ │ ├── bbridge_w2.c │ │ │ ├── bbridge_w3.c │ │ │ ├── bbridge_w4.c │ │ │ ├── beach2.c │ │ │ ├── beach3.c │ │ │ ├── beach4.c │ │ │ ├── bridge_monitor_d.c │ │ │ ├── brokenroom.c │ │ │ ├── bungee_room.c │ │ │ ├── canoe1 │ │ │ ├── canoe1.c │ │ │ ├── canoe1.l2 │ │ │ ├── canoe1.l3 │ │ │ ├── canoe2.c │ │ │ ├── canoe_entry.c │ │ │ ├── canyon_path1.c │ │ │ ├── canyon_path10.c │ │ │ ├── canyon_path11.c │ │ │ ├── canyon_path12.c │ │ │ ├── canyon_path2.c │ │ │ ├── canyon_path3.c │ │ │ ├── canyon_path4.c │ │ │ ├── canyon_path5.c │ │ │ ├── canyon_path6.c │ │ │ ├── canyon_path7.c │ │ │ ├── canyon_path8.c │ │ │ ├── canyon_path9.c │ │ │ ├── canyon_riverbank.c │ │ │ ├── canyon_riverbank_west.c │ │ │ ├── carved_gate.c │ │ │ ├── cavern.c │ │ │ ├── cavern.l │ │ │ ├── corridor.c │ │ │ ├── corridor1.c │ │ │ ├── corridor2.c │ │ │ ├── corridor3.c │ │ │ ├── corridor4.c │ │ │ ├── corridor5.c │ │ │ ├── corridor6.c │ │ │ ├── corridor7.c │ │ │ ├── crowsnest.c │ │ │ ├── destination_room.c │ │ │ ├── destination_room2.c │ │ │ ├── fallen_tree.c │ │ │ ├── fountain_of_youth.c │ │ │ ├── fountain_youth.c │ │ │ ├── grand_interior02.c │ │ │ ├── ground_floor.c │ │ │ ├── guardcham.c │ │ │ ├── guardstep.c │ │ │ ├── head_room.c │ │ │ ├── hoard1.c │ │ │ ├── inter_void.c │ │ │ ├── inter_void1.c │ │ │ ├── j_link2a │ │ │ ├── j_maze0.c │ │ │ ├── j_maze1.c │ │ │ ├── j_maze10.c │ │ │ ├── j_maze11.c │ │ │ ├── j_maze12.c │ │ │ ├── j_maze13.c │ │ │ ├── j_maze14.c │ │ │ ├── j_maze15.c │ │ │ ├── j_maze16.c │ │ │ ├── j_maze17.c │ │ │ ├── j_maze18.c │ │ │ ├── j_maze19.c │ │ │ ├── j_maze2.c │ │ │ ├── j_maze20.c │ │ │ ├── j_maze21.c │ │ │ ├── j_maze22.c │ │ │ ├── j_maze23.c │ │ │ ├── j_maze24.c │ │ │ ├── j_maze25.c │ │ │ ├── j_maze26.c │ │ │ ├── j_maze27.c │ │ │ ├── j_maze28.c │ │ │ ├── j_maze29.c │ │ │ ├── j_maze3.c │ │ │ ├── j_maze30.c │ │ │ ├── j_maze31.c │ │ │ ├── j_maze32.c │ │ │ ├── j_maze33.c │ │ │ ├── j_maze34.c │ │ │ ├── j_maze35.c │ │ │ ├── j_maze36.c │ │ │ ├── j_maze37.c │ │ │ ├── j_maze38.c │ │ │ ├── j_maze39.c │ │ │ ├── j_maze4.c │ │ │ ├── j_maze40.c │ │ │ ├── j_maze41.c │ │ │ ├── j_maze42.c │ │ │ ├── j_maze43.c │ │ │ ├── j_maze44.c │ │ │ ├── j_maze45.c │ │ │ ├── j_maze46.c │ │ │ ├── j_maze47.c │ │ │ ├── j_maze48.c │ │ │ ├── j_maze49.c │ │ │ ├── j_maze5.c │ │ │ ├── j_maze50.c │ │ │ ├── j_maze51.c │ │ │ ├── j_maze52.c │ │ │ ├── j_maze53.c │ │ │ ├── j_maze54.c │ │ │ ├── j_maze55.c │ │ │ ├── j_maze56.c │ │ │ ├── j_maze57.c │ │ │ ├── j_maze58.c │ │ │ ├── j_maze59.c │ │ │ ├── j_maze6.c │ │ │ ├── j_maze60.c │ │ │ ├── j_maze61.c │ │ │ ├── j_maze62.c │ │ │ ├── j_maze63.c │ │ │ ├── j_maze64.c │ │ │ ├── j_maze65.c │ │ │ ├── j_maze66.c │ │ │ ├── j_maze67.c │ │ │ ├── j_maze68.c │ │ │ ├── j_maze69.c │ │ │ ├── j_maze7.c │ │ │ ├── j_maze70.c │ │ │ ├── j_maze8.c │ │ │ ├── j_maze9.c │ │ │ ├── jag_lair_ground.c │ │ │ ├── jag_lair_outside.c │ │ │ ├── jag_tree1.c │ │ │ ├── jag_tree2.c │ │ │ ├── jaguar_lair.c │ │ │ ├── jontar_room.c │ │ │ ├── jung_base.c │ │ │ ├── jung_clearing.c │ │ │ ├── jung_waterfall.c │ │ │ ├── jung_waterhole.c │ │ │ ├── kayak │ │ │ ├── kayak.luj3 │ │ │ ├── leftbank3.c │ │ │ ├── lowmaze1.c │ │ │ ├── maze0.c │ │ │ ├── maze1.c │ │ │ ├── maze10.c │ │ │ ├── maze11.c │ │ │ ├── maze12.c │ │ │ ├── maze13.c │ │ │ ├── maze14.c │ │ │ ├── maze15.c │ │ │ ├── maze16.c │ │ │ ├── maze17.c │ │ │ ├── maze18.c │ │ │ ├── maze19.c │ │ │ ├── maze2.c │ │ │ ├── maze20.c │ │ │ ├── maze21.c │ │ │ ├── maze22.c │ │ │ ├── maze23.c │ │ │ ├── maze24.c │ │ │ ├── maze25.c │ │ │ ├── maze26.c │ │ │ ├── maze27.c │ │ │ ├── maze28.c │ │ │ ├── maze29.c │ │ │ ├── maze3.c │ │ │ ├── maze30.c │ │ │ ├── maze31.c │ │ │ ├── maze32.c │ │ │ ├── maze33.c │ │ │ ├── maze34.c │ │ │ ├── maze35.c │ │ │ ├── maze36.c │ │ │ ├── maze37.c │ │ │ ├── maze38.c │ │ │ ├── maze39.c │ │ │ ├── maze4.c │ │ │ ├── maze40.c │ │ │ ├── maze41.c │ │ │ ├── maze42.c │ │ │ ├── maze43.c │ │ │ ├── maze44.c │ │ │ ├── maze45.c │ │ │ ├── maze46.c │ │ │ ├── maze47.c │ │ │ ├── maze48.c │ │ │ ├── maze49.c │ │ │ ├── maze5.c │ │ │ ├── maze50.c │ │ │ ├── maze51.c │ │ │ ├── maze52.c │ │ │ ├── maze53.c │ │ │ ├── maze54.c │ │ │ ├── maze55.c │ │ │ ├── maze56.c │ │ │ ├── maze57.c │ │ │ ├── maze58.c │ │ │ ├── maze59.c │ │ │ ├── maze6.c │ │ │ ├── maze60.c │ │ │ ├── maze61.c │ │ │ ├── maze62.c │ │ │ ├── maze63.c │ │ │ ├── maze64.c │ │ │ ├── maze65.c │ │ │ ├── maze66.c │ │ │ ├── maze7.c │ │ │ ├── maze8.c │ │ │ ├── maze9.c │ │ │ ├── mazebase.c │ │ │ ├── midway.c │ │ │ ├── mummy.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path_base.c │ │ │ ├── pitroom.c │ │ │ ├── process_start.c │ │ │ ├── processional.c │ │ │ ├── processoinal.c │ │ │ ├── river.c │ │ │ ├── river1.c │ │ │ ├── river2.c │ │ │ ├── river3.c │ │ │ ├── river4.c │ │ │ ├── river5.c │ │ │ ├── river_beach.c │ │ │ ├── ropebridge0.c │ │ │ ├── ropebridge1.c │ │ │ ├── ropebridge2.c │ │ │ ├── ropebridge3.c │ │ │ ├── ropebridge4.c │ │ │ ├── ropebridge5.c │ │ │ ├── ropebridge_base.c │ │ │ ├── ropebridge_base.c.c │ │ │ ├── sac_eq_store.c │ │ │ ├── shore.c │ │ │ ├── snakestomach.c │ │ │ ├── spell.c │ │ │ ├── step1.c │ │ │ ├── step10.c │ │ │ ├── step11.c │ │ │ ├── step12.c │ │ │ ├── step2.c │ │ │ ├── step3.c │ │ │ ├── step4.c │ │ │ ├── step5.c │ │ │ ├── step6.c │ │ │ ├── step7.c │ │ │ ├── step8.c │ │ │ ├── step9.c │ │ │ ├── step_high.c │ │ │ ├── step_low.c │ │ │ ├── step_mid.c │ │ │ ├── storage.c │ │ │ ├── storage │ │ │ │ └── tec_storage.c │ │ │ ├── t_house_middle.c │ │ │ ├── tecqumin.h │ │ │ ├── tecqumin_seal_d.c │ │ │ ├── tower.c │ │ │ ├── tower_top.c │ │ │ ├── treetop.c │ │ │ ├── treetop01.c │ │ │ ├── treetop02.c │ │ │ ├── treetop03.c │ │ │ ├── treetop04.c │ │ │ ├── treetop05.c │ │ │ ├── treetop06.c │ │ │ ├── treetop07.c │ │ │ ├── treetop08.c │ │ │ ├── treetop_base.c │ │ │ ├── treetop_base01.c │ │ │ ├── treetop_base02.c │ │ │ ├── treetop_base03.c │ │ │ ├── treetop_base04.c │ │ │ ├── treetop_base05.c │ │ │ ├── treetop_base06.c │ │ │ ├── treetop_base07.c │ │ │ ├── treetop_base08.c │ │ │ ├── tun01.c │ │ │ ├── tun02.c │ │ │ ├── tun03.c │ │ │ ├── tun04.c │ │ │ ├── tun05.c │ │ │ ├── tun06.c │ │ │ ├── tun07.c │ │ │ ├── tun08.c │ │ │ ├── tun09.c │ │ │ ├── tun10.c │ │ │ ├── tun11.c │ │ │ ├── tun12.c │ │ │ ├── tun13.c │ │ │ ├── tun14.c │ │ │ ├── tun15.c │ │ │ ├── tun16.c │ │ │ ├── tun17.c │ │ │ ├── tun18.c │ │ │ ├── tun19.c │ │ │ ├── tun20.c │ │ │ ├── tun21.c │ │ │ ├── tun22.c │ │ │ ├── tun23.c │ │ │ ├── tun24.c │ │ │ ├── tun_entry.c │ │ │ ├── tunexit.c │ │ │ ├── unfettered_base.c │ │ │ ├── upper_floor.c │ │ │ ├── vestibule.c │ │ │ ├── void.c │ │ │ ├── zig.c │ │ │ ├── zig01.c │ │ │ ├── zig_front_low.c │ │ │ ├── zig_front_mid.c │ │ │ ├── zig_high.c │ │ │ ├── zig_highest.c │ │ │ ├── zig_int_base.c │ │ │ ├── zig_low.c │ │ │ ├── zig_mid.c │ │ │ ├── zighigh101.c │ │ │ ├── zighigh102.c │ │ │ ├── zighigh103.c │ │ │ ├── zighigh104.c │ │ │ ├── zighigh105.c │ │ │ ├── zighigh106.c │ │ │ ├── zighigh107.c │ │ │ ├── zighigh108.c │ │ │ ├── zighigh201.c │ │ │ ├── zighigh202.c │ │ │ ├── zighigh203.c │ │ │ ├── zighigh204.c │ │ │ ├── ziglow101.c │ │ │ ├── ziglow102.c │ │ │ ├── ziglow103.c │ │ │ ├── ziglow104.c │ │ │ ├── ziglow105.c │ │ │ ├── ziglow106.c │ │ │ ├── ziglow107.c │ │ │ ├── ziglow108.c │ │ │ ├── ziglow109.c │ │ │ ├── ziglow110.c │ │ │ ├── ziglow111.c │ │ │ ├── ziglow112.c │ │ │ ├── ziglow113.c │ │ │ ├── ziglow114.c │ │ │ ├── ziglow115.c │ │ │ ├── ziglow116.c │ │ │ ├── ziglow117.c │ │ │ ├── ziglow118.c │ │ │ ├── ziglow119.c │ │ │ ├── ziglow120.c │ │ │ ├── ziglow121.c │ │ │ ├── ziglow122.c │ │ │ ├── ziglow123.c │ │ │ ├── ziglow124.c │ │ │ ├── ziglow125.c │ │ │ ├── ziglow126.c │ │ │ ├── ziglow127.c │ │ │ ├── ziglow128.c │ │ │ ├── ziglow129.c │ │ │ ├── ziglow130.c │ │ │ ├── ziglow131.c │ │ │ ├── ziglow132.c │ │ │ ├── ziglow133.c │ │ │ ├── ziglow134.c │ │ │ ├── ziglow135.c │ │ │ ├── ziglow136.c │ │ │ ├── ziglow137.c │ │ │ ├── ziglow138.c │ │ │ ├── ziglow139.c │ │ │ ├── ziglow140.c │ │ │ ├── ziglow201.c │ │ │ ├── ziglow202.c │ │ │ ├── ziglow203.c │ │ │ ├── ziglow204.c │ │ │ ├── ziglow205.c │ │ │ ├── ziglow206.c │ │ │ ├── ziglow207.c │ │ │ ├── ziglow208.c │ │ │ ├── ziglow209.c │ │ │ ├── ziglow210.c │ │ │ ├── ziglow211.c │ │ │ ├── ziglow212.c │ │ │ ├── ziglow213.c │ │ │ ├── ziglow214.c │ │ │ ├── ziglow215.c │ │ │ ├── ziglow216.c │ │ │ ├── ziglow217.c │ │ │ ├── ziglow218.c │ │ │ ├── ziglow219.c │ │ │ ├── ziglow220.c │ │ │ ├── ziglow221.c │ │ │ ├── ziglow222.c │ │ │ ├── ziglow223.c │ │ │ ├── ziglow224.c │ │ │ ├── ziglow225.c │ │ │ ├── ziglow226.c │ │ │ ├── ziglow227.c │ │ │ ├── ziglow228.c │ │ │ ├── ziglow229.c │ │ │ ├── ziglow230.c │ │ │ ├── ziglow231.c │ │ │ ├── ziglow232.c │ │ │ ├── zigmid101.c │ │ │ ├── zigmid102.c │ │ │ ├── zigmid103.c │ │ │ ├── zigmid104.c │ │ │ ├── zigmid105.c │ │ │ ├── zigmid106.c │ │ │ ├── zigmid107.c │ │ │ ├── zigmid108.c │ │ │ ├── zigmid109.c │ │ │ ├── zigmid110.c │ │ │ ├── zigmid111.c │ │ │ ├── zigmid112.c │ │ │ ├── zigmid113.c │ │ │ ├── zigmid114.c │ │ │ ├── zigmid115.c │ │ │ ├── zigmid116.c │ │ │ ├── zigmid117.c │ │ │ ├── zigmid118.c │ │ │ ├── zigmid119.c │ │ │ ├── zigmid120.c │ │ │ ├── zigmid121.c │ │ │ ├── zigmid122.c │ │ │ ├── zigmid123.c │ │ │ ├── zigmid124.c │ │ │ ├── zigmid201.c │ │ │ ├── zigmid202.c │ │ │ ├── zigmid203.c │ │ │ ├── zigmid204.c │ │ │ ├── zigmid205.c │ │ │ ├── zigmid206.c │ │ │ ├── zigmid207.c │ │ │ ├── zigmid208.c │ │ │ ├── zigmid209.c │ │ │ ├── zigmid210.c │ │ │ ├── zigmid211.c │ │ │ ├── zigmid212.c │ │ │ ├── zigmid213.c │ │ │ ├── zigmid214.c │ │ │ ├── zigmid215.c │ │ │ ├── zigmid216.c │ │ │ └── zigzenith.c │ │ ├── seal_pic_d.c │ │ ├── seal_pics.h │ │ ├── tabaxi │ │ │ ├── base_files │ │ │ │ └── stock_wall_base.c │ │ │ ├── obj │ │ │ │ ├── brazier.c │ │ │ │ ├── bucket1.c │ │ │ │ ├── bucket2.c │ │ │ │ ├── bucket3.c │ │ │ │ ├── bucket_base.c │ │ │ │ ├── canteen.c │ │ │ │ ├── canvas.c │ │ │ │ ├── catapult.c │ │ │ │ ├── cauldron.c │ │ │ │ ├── clinging_orog.c │ │ │ │ ├── eyepatch.c │ │ │ │ ├── fender.c │ │ │ │ ├── greater_machete.c │ │ │ │ ├── greater_map.c │ │ │ │ ├── hip_flask.c │ │ │ │ ├── hot_rocks.c │ │ │ │ ├── hot_sand.c │ │ │ │ ├── ladder.c │ │ │ │ ├── machete.c │ │ │ │ ├── parchment_map.c │ │ │ │ ├── ram.c │ │ │ │ ├── ram_interior.c │ │ │ │ ├── rocks.c │ │ │ │ ├── sand.c │ │ │ │ ├── spade.c │ │ │ │ ├── stakes.c │ │ │ │ ├── tabaxi_battler.c │ │ │ │ ├── tabaxi_key.c │ │ │ │ ├── targeter.c │ │ │ │ └── utility_belt.c │ │ │ └── rooms │ │ │ │ ├── arch1.c │ │ │ │ ├── archery.c │ │ │ │ ├── archery_platform.c │ │ │ │ ├── battlement.c │ │ │ │ ├── battlement1.c │ │ │ │ ├── battlement2.c │ │ │ │ ├── battlement3.c │ │ │ │ ├── battlement4.c │ │ │ │ ├── battlement5.c │ │ │ │ ├── battlement6.c │ │ │ │ ├── battlement7.c │ │ │ │ ├── battlement8.c │ │ │ │ ├── centre.c │ │ │ │ ├── corner_field1.c │ │ │ │ ├── corner_field2.c │ │ │ │ ├── east_section.c │ │ │ │ ├── elder.c │ │ │ │ ├── entry.c │ │ │ │ ├── field_base.c │ │ │ │ ├── field_base.lujle │ │ │ │ ├── foodhall.c │ │ │ │ ├── granary.c │ │ │ │ ├── healer.c │ │ │ │ ├── high_field.c │ │ │ │ ├── ixchel.c │ │ │ │ ├── j_link1.c │ │ │ │ ├── j_link1a.c │ │ │ │ ├── jungle01.c │ │ │ │ ├── jungle02.c │ │ │ │ ├── jungle03.c │ │ │ │ ├── jungle04.c │ │ │ │ ├── jungle05.c │ │ │ │ ├── jungle06.c │ │ │ │ ├── jungle07.c │ │ │ │ ├── jungle08.c │ │ │ │ ├── jungle09.c │ │ │ │ ├── jungle10.c │ │ │ │ ├── jungle11.c │ │ │ │ ├── jungle12.c │ │ │ │ ├── jungle13.c │ │ │ │ ├── jungle14.c │ │ │ │ ├── jungle15.c │ │ │ │ ├── jungle16.c │ │ │ │ ├── jungle17.c │ │ │ │ ├── jungle18.c │ │ │ │ ├── jungle19.c │ │ │ │ ├── jungle20.c │ │ │ │ ├── jungle21.c │ │ │ │ ├── jungle22.c │ │ │ │ ├── jungle23.c │ │ │ │ ├── jungle24.c │ │ │ │ ├── jungle25.c │ │ │ │ ├── jungle26.c │ │ │ │ ├── jungle27.c │ │ │ │ ├── jungle28.c │ │ │ │ ├── jungle29.c │ │ │ │ ├── jungle30.c │ │ │ │ ├── jungle31.c │ │ │ │ ├── jungle32.c │ │ │ │ ├── jungle33.c │ │ │ │ ├── jungle34.c │ │ │ │ ├── jungle35.c │ │ │ │ ├── jungle36.c │ │ │ │ ├── jungle37.c │ │ │ │ ├── jungle38.c │ │ │ │ ├── jungle39.c │ │ │ │ ├── jungle40.c │ │ │ │ ├── jungle41.c │ │ │ │ ├── jungle42.c │ │ │ │ ├── jungle43.c │ │ │ │ ├── jungle44.c │ │ │ │ ├── jungle45.c │ │ │ │ ├── jungle46.c │ │ │ │ ├── jungle47.c │ │ │ │ ├── jungle48.c │ │ │ │ ├── jungle49.c │ │ │ │ ├── jungle50.c │ │ │ │ ├── jungle51.c │ │ │ │ ├── jungle52.c │ │ │ │ ├── jungle53.c │ │ │ │ ├── jungle54.c │ │ │ │ ├── kitchen.c │ │ │ │ ├── low_field.c │ │ │ │ ├── main_field.c │ │ │ │ ├── north_section.c │ │ │ │ ├── northeast_corner.c │ │ │ │ ├── northwest_corner.c │ │ │ │ ├── orog_entry.c │ │ │ │ ├── orogs01.c │ │ │ │ ├── smithy.c │ │ │ │ ├── southeast_corner.c │ │ │ │ ├── southwest_corner.c │ │ │ │ ├── stock_wall1.c │ │ │ │ ├── stock_wall2.c │ │ │ │ ├── stock_wall3.c │ │ │ │ ├── stock_wall_base.c │ │ │ │ ├── stockade.c │ │ │ │ ├── training.c │ │ │ │ ├── treetop.c │ │ │ │ ├── treetop1.c │ │ │ │ ├── treetop2.c │ │ │ │ ├── treetop3.c │ │ │ │ ├── treetop_base.c │ │ │ │ ├── treetop_base1.c │ │ │ │ ├── treetop_base2.c │ │ │ │ ├── treetop_base3.c │ │ │ │ ├── watchtower.c │ │ │ │ └── west_section.c │ │ ├── tecqumin.h │ │ ├── test │ │ │ ├── alcove.c │ │ │ ├── carved_gate.c │ │ │ ├── cavern.c │ │ │ ├── ground_floor.c │ │ │ ├── guardcham.c │ │ │ ├── head_room.c │ │ │ ├── jont_room.c │ │ │ ├── meha_room.c │ │ │ ├── qual_room.c │ │ │ ├── start.c │ │ │ ├── tal_room.c │ │ │ ├── throne_room.c │ │ │ ├── tower.c │ │ │ ├── tun01.c │ │ │ ├── tun02.c │ │ │ ├── tun03.c │ │ │ ├── tun04.c │ │ │ ├── tun05.c │ │ │ ├── tun06.c │ │ │ ├── tun07.c │ │ │ ├── tun08.c │ │ │ ├── tun09.c │ │ │ ├── tun10.c │ │ │ ├── tun11.c │ │ │ ├── tun12.c │ │ │ ├── tun13.c │ │ │ ├── tun14.c │ │ │ ├── tun15.c │ │ │ ├── tun16.c │ │ │ ├── tun17.c │ │ │ ├── tun18.c │ │ │ ├── tun19.c │ │ │ ├── tun20.c │ │ │ ├── tun21.c │ │ │ ├── tun22.c │ │ │ ├── tun23.c │ │ │ ├── tun24.c │ │ │ ├── tunbase.c │ │ │ └── upper_floor.c │ │ ├── testbridge.c │ │ ├── treehouse │ │ │ └── rooms │ │ │ │ ├── crowsnest.c │ │ │ │ ├── platform01.c │ │ │ │ ├── platform02.c │ │ │ │ ├── platform03.c │ │ │ │ ├── platform04.c │ │ │ │ ├── platform05.c │ │ │ │ ├── platform06.c │ │ │ │ ├── platform07.c │ │ │ │ ├── platform08.c │ │ │ │ ├── platform1.c │ │ │ │ ├── platform_base.c │ │ │ │ ├── t_house_base.c │ │ │ │ ├── t_house_middle.c │ │ │ │ ├── treetop.c │ │ │ │ ├── treetop01.c │ │ │ │ ├── treetop02.c │ │ │ │ ├── treetop03.c │ │ │ │ ├── treetop04.c │ │ │ │ ├── treetop05.c │ │ │ │ ├── treetop06.c │ │ │ │ ├── treetop07.c │ │ │ │ ├── treetop08.c │ │ │ │ ├── treetop1.c │ │ │ │ ├── treetop_base.c │ │ │ │ ├── treetop_base01.c │ │ │ │ ├── treetop_base02.c │ │ │ │ ├── treetop_base03.c │ │ │ │ ├── treetop_base04.c │ │ │ │ ├── treetop_base05.c │ │ │ │ ├── treetop_base06.c │ │ │ │ ├── treetop_base07.c │ │ │ │ └── treetop_base08.c │ │ └── void │ │ │ ├── curse.c │ │ │ ├── inner_void0.c │ │ │ ├── inner_void1.c │ │ │ ├── inner_void100.c │ │ │ ├── inner_void101.c │ │ │ ├── inner_void102.c │ │ │ ├── inner_void103.c │ │ │ ├── inner_void104.c │ │ │ ├── inner_void105.c │ │ │ ├── inner_void106.c │ │ │ ├── inner_void107.c │ │ │ ├── inner_void108.c │ │ │ ├── inner_void2.c │ │ │ ├── inner_void3.c │ │ │ ├── inner_void4.c │ │ │ ├── inner_void5.c │ │ │ ├── inner_void6.c │ │ │ ├── inner_void7.c │ │ │ ├── inner_void8.c │ │ │ ├── inner_void_base.c │ │ │ ├── outer_ │ │ │ ├── outer_void1.c │ │ │ ├── outer_void10.c │ │ │ ├── outer_void101.c │ │ │ ├── outer_void102.c │ │ │ ├── outer_void103.c │ │ │ ├── outer_void104.c │ │ │ ├── outer_void105.c │ │ │ ├── outer_void106.c │ │ │ ├── outer_void107.c │ │ │ ├── outer_void108.c │ │ │ ├── outer_void109.c │ │ │ ├── outer_void11.c │ │ │ ├── outer_void110.c │ │ │ ├── outer_void111.c │ │ │ ├── outer_void112.c │ │ │ ├── outer_void113.c │ │ │ ├── outer_void114.c │ │ │ ├── outer_void115.c │ │ │ ├── outer_void116.c │ │ │ ├── outer_void12.c │ │ │ ├── outer_void13.c │ │ │ ├── outer_void14.c │ │ │ ├── outer_void15.c │ │ │ ├── outer_void16.c │ │ │ ├── outer_void2.c │ │ │ ├── outer_void3.c │ │ │ ├── outer_void4.c │ │ │ ├── outer_void5.c │ │ │ ├── outer_void6.c │ │ │ ├── outer_void7.c │ │ │ ├── outer_void8.c │ │ │ ├── outer_void9.c │ │ │ └── outer_void_base.c │ ├── tecqumin_d.c │ ├── unfettered_d.c │ ├── unfettered_restorer_d.c │ ├── vis_climb_d.c │ ├── vis_climb_d.l │ └── wemic │ │ ├── base_files │ │ ├── beachbase.c │ │ ├── lakebase.c │ │ ├── pathbase.c │ │ └── trailbase.c │ │ ├── mons │ │ ├── fourarr.c │ │ ├── mungrraff.c │ │ ├── pietrrr.c │ │ ├── trail06.c │ │ └── wargruf.c │ │ ├── obj │ │ ├── connectfour.c │ │ ├── gameboard.c │ │ ├── othello.c │ │ ├── othello2.c │ │ └── stacks.c │ │ ├── rooms │ │ ├── armourer.c │ │ ├── balcony.c │ │ ├── beach01.c │ │ ├── beach02.c │ │ ├── beach03.c │ │ ├── beach04.c │ │ ├── beach05.c │ │ ├── beach06.c │ │ ├── beach07.c │ │ ├── beach08.c │ │ ├── beach09.c │ │ ├── beach10.c │ │ ├── campfire.c │ │ ├── healer.c │ │ ├── lake01.c │ │ ├── lake02.c │ │ ├── lake03.c │ │ ├── lake04.c │ │ ├── lake05.c │ │ ├── lake06.c │ │ ├── lake07.c │ │ ├── lake08.c │ │ ├── lake09.c │ │ ├── lake10.c │ │ ├── lake11.c │ │ ├── lake12.c │ │ ├── lake13.c │ │ ├── lake14.c │ │ ├── lake15.c │ │ ├── lake16.c │ │ ├── lake17.c │ │ ├── lake18.c │ │ ├── lake19.c │ │ ├── lake20.c │ │ ├── lake21.c │ │ ├── lake22.c │ │ ├── lodge.c │ │ ├── path01.c │ │ ├── path02.c │ │ ├── path03.c │ │ ├── path04.c │ │ ├── path05.c │ │ ├── path06.c │ │ ├── path07.c │ │ ├── path08.c │ │ ├── path09.c │ │ ├── path10.c │ │ ├── path11.c │ │ ├── path12.c │ │ ├── path13.c │ │ ├── path14.c │ │ ├── path15.c │ │ ├── path16.c │ │ ├── path17.c │ │ ├── path18.c │ │ ├── trail01.c │ │ ├── trail02.c │ │ ├── trail03.c │ │ ├── trail04.c │ │ ├── trail05.c │ │ ├── trail06.c │ │ ├── trail07.c │ │ ├── trail08.c │ │ └── trail09.c │ │ ├── store │ │ └── armour_storage.c │ │ └── wemic.h ├── attaya │ ├── base │ │ ├── base1.c │ │ ├── base10.c │ │ ├── base11.c │ │ ├── base12.c │ │ ├── base13.c │ │ ├── base14.c │ │ ├── base15.c │ │ ├── base16.c │ │ ├── base17.c │ │ ├── base18.c │ │ ├── base19.c │ │ ├── base2.c │ │ ├── base20.c │ │ ├── base21.c │ │ ├── base22.c │ │ ├── base23.c │ │ ├── base24.c │ │ ├── base25.c │ │ ├── base26.c │ │ ├── base27.c │ │ ├── base28.c │ │ ├── base29.c │ │ ├── base3.c │ │ ├── base30.c │ │ ├── base31.c │ │ ├── base32.c │ │ ├── base33.c │ │ ├── base34.c │ │ ├── base35.c │ │ ├── base36.c │ │ ├── base37.c │ │ ├── base38.c │ │ ├── base39.c │ │ ├── base4.c │ │ ├── base40.c │ │ ├── base41.c │ │ ├── base42.c │ │ ├── base43.c │ │ ├── base44.c │ │ ├── base45.c │ │ ├── base46.c │ │ ├── base47.c │ │ ├── base48.c │ │ ├── base49.c │ │ ├── base5.c │ │ ├── base50.c │ │ ├── base6.c │ │ ├── base7.c │ │ ├── base8.c │ │ ├── base9.c │ │ ├── boatdock.c │ │ ├── enter.c │ │ ├── enter2.c │ │ ├── lookout.gre │ │ ├── lookout1.c │ │ ├── lookout10.c │ │ ├── lookout11.c │ │ ├── lookout12.c │ │ ├── lookout13.c │ │ ├── lookout14.c │ │ ├── lookout15.c │ │ ├── lookout17.c │ │ ├── lookout2.c │ │ ├── lookout3.c │ │ ├── lookout4.c │ │ ├── lookout5.c │ │ ├── lookout6.c │ │ ├── lookout7.c │ │ ├── lookout8.c │ │ ├── lookout9.c │ │ ├── obliette53.c │ │ ├── oubliette1.c │ │ ├── oubliette10.c │ │ ├── oubliette11.c │ │ ├── oubliette12.c │ │ ├── oubliette13.c │ │ ├── oubliette14.c │ │ ├── oubliette15.c │ │ ├── oubliette16.c │ │ ├── oubliette17.c │ │ ├── oubliette18.c │ │ ├── oubliette19.c │ │ ├── oubliette2.c │ │ ├── oubliette20.c │ │ ├── oubliette21.c │ │ ├── oubliette22.c │ │ ├── oubliette23.c │ │ ├── oubliette24.c │ │ ├── oubliette25.c │ │ ├── oubliette26.c │ │ ├── oubliette27.c │ │ ├── oubliette28.c │ │ ├── oubliette29.c │ │ ├── oubliette3.c │ │ ├── oubliette30.c │ │ ├── oubliette31.c │ │ ├── oubliette32.c │ │ ├── oubliette33.c │ │ ├── oubliette34.c │ │ ├── oubliette35.c │ │ ├── oubliette36.c │ │ ├── oubliette37.c │ │ ├── oubliette38.c │ │ ├── oubliette39.c │ │ ├── oubliette4.c │ │ ├── oubliette40.c │ │ ├── oubliette41.c │ │ ├── oubliette42.c │ │ ├── oubliette43.c │ │ ├── oubliette44.c │ │ ├── oubliette45.c │ │ ├── oubliette46.c │ │ ├── oubliette47.c │ │ ├── oubliette48.c │ │ ├── oubliette49.c │ │ ├── oubliette5.c │ │ ├── oubliette50.c │ │ ├── oubliette51.c │ │ ├── oubliette52.c │ │ ├── oubliette53.c │ │ ├── oubliette6.c │ │ ├── oubliette7.c │ │ ├── oubliette8.c │ │ ├── oubliette9.c │ │ ├── pillar1.c │ │ ├── pillar2.c │ │ ├── pillar3.c │ │ ├── pool1.c │ │ ├── pool10.c │ │ ├── pool11.c │ │ ├── pool12.c │ │ ├── pool13.c │ │ ├── pool14.c │ │ ├── pool15.c │ │ ├── pool16.c │ │ ├── pool17.c │ │ ├── pool18.c │ │ ├── pool19.c │ │ ├── pool2.c │ │ ├── pool20.c │ │ ├── pool21.c │ │ ├── pool22.c │ │ ├── pool23.c │ │ ├── pool24.c │ │ ├── pool25.c │ │ ├── pool26.c │ │ ├── pool27.c │ │ ├── pool28.c │ │ ├── pool29.c │ │ ├── pool3.c │ │ ├── pool30.c │ │ ├── pool31.c │ │ ├── pool32.c │ │ ├── pool33.c │ │ ├── pool34.c │ │ ├── pool35.c │ │ ├── pool36.c │ │ ├── pool37.c │ │ ├── pool38.c │ │ ├── pool39.c │ │ ├── pool4.c │ │ ├── pool40.c │ │ ├── pool41.c │ │ ├── pool42.c │ │ ├── pool43.c │ │ ├── pool44.c │ │ ├── pool45.c │ │ ├── pool46.c │ │ ├── pool47.c │ │ ├── pool48.c │ │ ├── pool49.c │ │ ├── pool5.c │ │ ├── pool50.c │ │ ├── pool51.c │ │ ├── pool52.c │ │ ├── pool53.c │ │ ├── pool54.c │ │ ├── pool55.c │ │ ├── pool56.c │ │ ├── pool57.c │ │ ├── pool58.c │ │ ├── pool59.c │ │ ├── pool6.c │ │ ├── pool60.c │ │ ├── pool61.c │ │ ├── pool62.c │ │ ├── pool63.c │ │ ├── pool64.c │ │ ├── pool65.c │ │ ├── pool66.c │ │ ├── pool67.c │ │ ├── pool68.c │ │ ├── pool69.c │ │ ├── pool7.c │ │ ├── pool8.c │ │ ├── pool9.c │ │ ├── soulchamber.c │ │ ├── spec │ │ │ ├── base_cd.c │ │ │ └── oubliette.c │ │ ├── testroom.c │ │ ├── wall1.c │ │ ├── wall10.c │ │ ├── wall11.c │ │ ├── wall12.c │ │ ├── wall13.c │ │ ├── wall14.c │ │ ├── wall15.c │ │ ├── wall16.c │ │ ├── wall17.c │ │ ├── wall18.c │ │ ├── wall19.c │ │ ├── wall2.c │ │ ├── wall20.c │ │ ├── wall21.c │ │ ├── wall22.c │ │ ├── wall23.c │ │ ├── wall24.c │ │ ├── wall25.c │ │ ├── wall26.c │ │ ├── wall27.c │ │ ├── wall28.c │ │ ├── wall29.c │ │ ├── wall3.c │ │ ├── wall30.c │ │ ├── wall4.c │ │ ├── wall5.c │ │ ├── wall6.c │ │ ├── wall7.c │ │ ├── wall8.c │ │ ├── wall9.c │ │ └── warp.c │ ├── beach │ │ └── old │ │ │ ├── beach1.c │ │ │ ├── beach10.c │ │ │ ├── beach11.c │ │ │ ├── beach12.c │ │ │ ├── beach13.c │ │ │ ├── beach14.c │ │ │ ├── beach15.c │ │ │ ├── beach16.c │ │ │ ├── beach17.c │ │ │ ├── beach18.c │ │ │ ├── beach19.c │ │ │ ├── beach1n.c │ │ │ ├── beach2.c │ │ │ ├── beach20.c │ │ │ ├── beach21.c │ │ │ ├── beach22.c │ │ │ ├── beach23.c │ │ │ ├── beach24.c │ │ │ ├── beach25.c │ │ │ ├── beach26.c │ │ │ ├── beach27.c │ │ │ ├── beach28.c │ │ │ ├── beach29.c │ │ │ ├── beach2n.c │ │ │ ├── beach3.c │ │ │ ├── beach30.c │ │ │ ├── beach31.c │ │ │ ├── beach4.c │ │ │ ├── beach5.c │ │ │ ├── beach6.c │ │ │ ├── beach7.c │ │ │ ├── beach8.c │ │ │ └── beach9.c │ ├── beach1.c │ ├── beach10.c │ ├── beach11.c │ ├── beach12.c │ ├── beach13.c │ ├── beach14.c │ ├── beach15.c │ ├── beach16.c │ ├── beach17.c │ ├── beach18.c │ ├── beach1n.c │ ├── beach2.c │ ├── beach20.c │ ├── beach21.c │ ├── beach22.c │ ├── beach23.c │ ├── beach24.c │ ├── beach25.c │ ├── beach26.c │ ├── beach27.c │ ├── beach2n.c │ ├── beach3.c │ ├── beach31.c │ ├── beach4.c │ ├── beach5.c │ ├── beach6.c │ ├── beach7.c │ ├── beach8.c │ ├── beach9.c │ ├── boat1.c │ ├── boat1a.c │ ├── boat2.c │ ├── boat2a.c │ ├── boat3.c │ ├── boat3a.c │ ├── boat4.c │ ├── boat4a.c │ ├── boat5.c │ ├── boat5a.c │ ├── cliff1.c │ ├── cliff10.c │ ├── cliff11.c │ ├── cliff12.c │ ├── cliff13.c │ ├── cliff14.c │ ├── cliff15.c │ ├── cliff16.c │ ├── cliff17.c │ ├── cliff18.c │ ├── cliff19.c │ ├── cliff2.c │ ├── cliff20.c │ ├── cliff21.c │ ├── cliff22.c │ ├── cliff23.c │ ├── cliff24.c │ ├── cliff25.c │ ├── cliff26.c │ ├── cliff27.c │ ├── cliff28.c │ ├── cliff29.c │ ├── cliff3.c │ ├── cliff30.c │ ├── cliff31.c │ ├── cliff32.c │ ├── cliff33.c │ ├── cliff34.c │ ├── cliff35.c │ ├── cliff36.c │ ├── cliff37.c │ ├── cliff38.c │ ├── cliff39.c │ ├── cliff4.c │ ├── cliff40.c │ ├── cliff41.c │ ├── cliff42.c │ ├── cliff43.c │ ├── cliff44.c │ ├── cliff45.c │ ├── cliff46.c │ ├── cliff47.c │ ├── cliff48.c │ ├── cliff49.c │ ├── cliff5.c │ ├── cliff50.c │ ├── cliff55.c │ ├── cliff56.c │ ├── cliff57.c │ ├── cliff58.c │ ├── cliff59.c │ ├── cliff6.c │ ├── cliff60.c │ ├── cliff61.c │ ├── cliff62.c │ ├── cliff63.c │ ├── cliff64.c │ ├── cliff65.c │ ├── cliff66.c │ ├── cliff67.c │ ├── cliff68.c │ ├── cliff69.c │ ├── cliff7.c │ ├── cliff70.c │ ├── cliff71.c │ ├── cliff72.c │ ├── cliff73.c │ ├── cliff74.c │ ├── cliff75.c │ ├── cliff76.c │ ├── cliff77.c │ ├── cliff8.c │ ├── cliff9.c │ ├── cliffdock.c │ ├── crafters │ │ ├── desert │ │ │ ├── 279.c │ │ │ ├── Odes227.c │ │ │ ├── des1.c │ │ │ ├── des10.c │ │ │ ├── des100.c │ │ │ ├── des101.c │ │ │ ├── des102.c │ │ │ ├── des103.c │ │ │ ├── des104.c │ │ │ ├── des105.c │ │ │ ├── des106.c │ │ │ ├── des107.c │ │ │ ├── des108.c │ │ │ ├── des109.c │ │ │ ├── des11.c │ │ │ ├── des110.c │ │ │ ├── des111.c │ │ │ ├── des112.c │ │ │ ├── des113.c │ │ │ ├── des114.c │ │ │ ├── des115.c │ │ │ ├── des116.c │ │ │ ├── des117.c │ │ │ ├── des118.c │ │ │ ├── des119.c │ │ │ ├── des12.c │ │ │ ├── des120.c │ │ │ ├── des121.c │ │ │ ├── des122.c │ │ │ ├── des123.c │ │ │ ├── des124.c │ │ │ ├── des125.c │ │ │ ├── des126.c │ │ │ ├── des127.c │ │ │ ├── des128.c │ │ │ ├── des129.c │ │ │ ├── des13.c │ │ │ ├── des130.c │ │ │ ├── des131.c │ │ │ ├── des132.c │ │ │ ├── des133.c │ │ │ ├── des134.c │ │ │ ├── des135.c │ │ │ ├── des136.c │ │ │ ├── des137.c │ │ │ ├── des138.c │ │ │ ├── des139.c │ │ │ ├── des14.c │ │ │ ├── des140.c │ │ │ ├── des141.c │ │ │ ├── des142.c │ │ │ ├── des143.c │ │ │ ├── des144.c │ │ │ ├── des145.c │ │ │ ├── des146.c │ │ │ ├── des147.c │ │ │ ├── des148.c │ │ │ ├── des149.c │ │ │ ├── des15.c │ │ │ ├── des150.c │ │ │ ├── des151.c │ │ │ ├── des152.c │ │ │ ├── des153.c │ │ │ ├── des154.c │ │ │ ├── des155.c │ │ │ ├── des156.c │ │ │ ├── des157.c │ │ │ ├── des158.c │ │ │ ├── des159.c │ │ │ ├── des16.c │ │ │ ├── des160.c │ │ │ ├── des161.c │ │ │ ├── des162.c │ │ │ ├── des163.c │ │ │ ├── des164.c │ │ │ ├── des165.c │ │ │ ├── des166.c │ │ │ ├── des167.c │ │ │ ├── des168.c │ │ │ ├── des169.c │ │ │ ├── des17.c │ │ │ ├── des170.c │ │ │ ├── des171.c │ │ │ ├── des172.c │ │ │ ├── des173.c │ │ │ ├── des174.c │ │ │ ├── des175.c │ │ │ ├── des176.c │ │ │ ├── des177.c │ │ │ ├── des178.c │ │ │ ├── des179.c │ │ │ ├── des18.c │ │ │ ├── des180.c │ │ │ ├── des181.c │ │ │ ├── des182.c │ │ │ ├── des183.c │ │ │ ├── des184.c │ │ │ ├── des185.c │ │ │ ├── des186.c │ │ │ ├── des187.c │ │ │ ├── des188.c │ │ │ ├── des189.c │ │ │ ├── des19.c │ │ │ ├── des190.c │ │ │ ├── des191.c │ │ │ ├── des192.c │ │ │ ├── des193.c │ │ │ ├── des194.c │ │ │ ├── des195.c │ │ │ ├── des196.c │ │ │ ├── des197.c │ │ │ ├── des198.c │ │ │ ├── des199.c │ │ │ ├── des2.c │ │ │ ├── des20.c │ │ │ ├── des200.c │ │ │ ├── des201.c │ │ │ ├── des202.c │ │ │ ├── des203.c │ │ │ ├── des204.c │ │ │ ├── des205.c │ │ │ ├── des206.c │ │ │ ├── des207.c │ │ │ ├── des208.c │ │ │ ├── des209.c │ │ │ ├── des21.c │ │ │ ├── des210.c │ │ │ ├── des211.c │ │ │ ├── des212.c │ │ │ ├── des213.c │ │ │ ├── des214.c │ │ │ ├── des215.c │ │ │ ├── des216.c │ │ │ ├── des217.c │ │ │ ├── des218.c │ │ │ ├── des219.c │ │ │ ├── des22.c │ │ │ ├── des220.c │ │ │ ├── des221.c │ │ │ ├── des223.c │ │ │ ├── des224.c │ │ │ ├── des225.c │ │ │ ├── des226.c │ │ │ ├── des228.c │ │ │ ├── des229.c │ │ │ ├── des23.c │ │ │ ├── des230.c │ │ │ ├── des231.c │ │ │ ├── des232.c │ │ │ ├── des233.c │ │ │ ├── des234.c │ │ │ ├── des235.c │ │ │ ├── des236.c │ │ │ ├── des237.c │ │ │ ├── des238.c │ │ │ ├── des239.c │ │ │ ├── des24.c │ │ │ ├── des240.c │ │ │ ├── des241.c │ │ │ ├── des242.c │ │ │ ├── des243.c │ │ │ ├── des244 │ │ │ ├── des244.c │ │ │ ├── des245.c │ │ │ ├── des246.c │ │ │ ├── des247.c │ │ │ ├── des248.c │ │ │ ├── des249.c │ │ │ ├── des25.c │ │ │ ├── des250.c │ │ │ ├── des251.c │ │ │ ├── des252.c │ │ │ ├── des253.c │ │ │ ├── des254.c │ │ │ ├── des255.c │ │ │ ├── des256.c │ │ │ ├── des257.c │ │ │ ├── des258.c │ │ │ ├── des259.c │ │ │ ├── des26.c │ │ │ ├── des260.c │ │ │ ├── des261.c │ │ │ ├── des262.c │ │ │ ├── des263.c │ │ │ ├── des264.c │ │ │ ├── des265.c │ │ │ ├── des266.c │ │ │ ├── des267.c │ │ │ ├── des268.c │ │ │ ├── des269.c │ │ │ ├── des27.c │ │ │ ├── des270.c │ │ │ ├── des271.c │ │ │ ├── des272.c │ │ │ ├── des273.c │ │ │ ├── des274.c │ │ │ ├── des275.c │ │ │ ├── des276.c │ │ │ ├── des277.c │ │ │ ├── des278.c │ │ │ ├── des279.c │ │ │ ├── des28.c │ │ │ ├── des280.c │ │ │ ├── des281.c │ │ │ ├── des282.c │ │ │ ├── des283.c │ │ │ ├── des284.c │ │ │ ├── des29.c │ │ │ ├── des294.c │ │ │ ├── des295.c │ │ │ ├── des296.c │ │ │ ├── des297.c │ │ │ ├── des298.c │ │ │ ├── des299.c │ │ │ ├── des3.c │ │ │ ├── des30.c │ │ │ ├── des300.c │ │ │ ├── des301.c │ │ │ ├── des31.c │ │ │ ├── des32.c │ │ │ ├── des33.c │ │ │ ├── des34.c │ │ │ ├── des35.c │ │ │ ├── des36.c │ │ │ ├── des37.c │ │ │ ├── des38.c │ │ │ ├── des39.c │ │ │ ├── des4.c │ │ │ ├── des40.c │ │ │ ├── des41.c │ │ │ ├── des42.c │ │ │ ├── des43.c │ │ │ ├── des44.c │ │ │ ├── des45.c │ │ │ ├── des46.c │ │ │ ├── des47.c │ │ │ ├── des48.c │ │ │ ├── des49.c │ │ │ ├── des5.c │ │ │ ├── des50.c │ │ │ ├── des51.c │ │ │ ├── des52.c │ │ │ ├── des53.c │ │ │ ├── des54.c │ │ │ ├── des55.c │ │ │ ├── des56.c │ │ │ ├── des57.c │ │ │ ├── des58.c │ │ │ ├── des59.c │ │ │ ├── des6.c │ │ │ ├── des60.c │ │ │ ├── des61.c │ │ │ ├── des62.c │ │ │ ├── des63.c │ │ │ ├── des64.c │ │ │ ├── des65.c │ │ │ ├── des66.c │ │ │ ├── des67.c │ │ │ ├── des68.c │ │ │ ├── des69.c │ │ │ ├── des7.c │ │ │ ├── des70.c │ │ │ ├── des71.c │ │ │ ├── des72.c │ │ │ ├── des73.c │ │ │ ├── des74.c │ │ │ ├── des75.c │ │ │ ├── des76.c │ │ │ ├── des77.c │ │ │ ├── des78.c │ │ │ ├── des79.c │ │ │ ├── des8.c │ │ │ ├── des80.c │ │ │ ├── des81.c │ │ │ ├── des82.c │ │ │ ├── des83.c │ │ │ ├── des84.c │ │ │ ├── des85.c │ │ │ ├── des86.c │ │ │ ├── des87.c │ │ │ ├── des88.c │ │ │ ├── des89.c │ │ │ ├── des9.c │ │ │ ├── des90.c │ │ │ ├── des91.c │ │ │ ├── des92.c │ │ │ ├── des93.c │ │ │ ├── des94.c │ │ │ ├── des95.c │ │ │ ├── des96.c │ │ │ ├── des97.c │ │ │ ├── des98.c │ │ │ ├── des99.c │ │ │ └── stuff │ │ │ │ ├── parrot.c │ │ │ │ ├── salieka.c │ │ │ │ ├── sign.c │ │ │ │ ├── slip_test.c │ │ │ │ ├── slip_test2.c │ │ │ │ ├── slip_test3.c │ │ │ │ ├── slip_testa.c │ │ │ │ ├── slip_testb.c │ │ │ │ ├── slip_testc.c │ │ │ │ └── slip_testd.c │ │ └── mon │ │ │ ├── dstalker.c │ │ │ ├── earwig.c │ │ │ └── scorpion.c │ ├── crossover.c │ ├── crossover2.c │ ├── defs.h │ ├── dock.c │ ├── doomsday.c │ ├── firedock.c │ ├── guard1.c │ ├── guard2.c │ ├── guard3.c │ ├── healer.c │ ├── inherit │ │ ├── jungpath.c │ │ ├── platform1.c │ │ └── riftvalley.c │ ├── jungle │ │ ├── jun1.c │ │ ├── jun10.c │ │ ├── jun11.c │ │ ├── jun12.c │ │ ├── jun13.c │ │ ├── jun14.c │ │ ├── jun15.c │ │ ├── jun16.c │ │ ├── jun17.c │ │ ├── jun18.c │ │ ├── jun19.c │ │ ├── jun2.c │ │ ├── jun20.c │ │ ├── jun21.c │ │ ├── jun22.c │ │ ├── jun23.c │ │ ├── jun24.c │ │ ├── jun25.c │ │ ├── jun26.c │ │ ├── jun27.c │ │ ├── jun28.c │ │ ├── jun29.c │ │ ├── jun3.c │ │ ├── jun30.c │ │ ├── jun31.c │ │ ├── jun31a.c │ │ ├── jun32.c │ │ ├── jun33.c │ │ ├── jun34.c │ │ ├── jun35.c │ │ ├── jun36.c │ │ ├── jun37.c │ │ ├── jun38.c │ │ ├── jun39.c │ │ ├── jun4.c │ │ ├── jun40.c │ │ ├── jun41.c │ │ ├── jun42.c │ │ ├── jun43.c │ │ ├── jun44.c │ │ ├── jun45.c │ │ ├── jun46.c │ │ ├── jun47.c │ │ ├── jun48.c │ │ ├── jun49.c │ │ ├── jun5.c │ │ ├── jun50.c │ │ ├── jun51.c │ │ ├── jun52.c │ │ ├── jun53.c │ │ ├── jun54.c │ │ ├── jun55.c │ │ ├── jun56.c │ │ ├── jun57.c │ │ ├── jun58.c │ │ ├── jun59.c │ │ ├── jun6.c │ │ ├── jun7.c │ │ ├── jun8.c │ │ ├── jun9.c │ │ ├── rift1.c │ │ ├── rift10.c │ │ ├── rift11.c │ │ ├── rift12.c │ │ ├── rift13.c │ │ ├── rift14.c │ │ ├── rift15.c │ │ ├── rift16.c │ │ ├── rift18.c │ │ ├── rift2.c │ │ ├── rift20.c │ │ ├── rift21.c │ │ ├── rift22.c │ │ ├── rift23.c │ │ ├── rift24.c │ │ ├── rift25.c │ │ ├── rift26.c │ │ ├── rift27.c │ │ ├── rift28.c │ │ ├── rift29.c │ │ ├── rift3.c │ │ ├── rift30.c │ │ ├── rift31.c │ │ ├── rift32.c │ │ ├── rift33.c │ │ ├── rift34.c │ │ ├── rift35.c │ │ ├── rift36.c │ │ ├── rift37.c │ │ ├── rift38.c │ │ ├── rift39.c │ │ ├── rift4.c │ │ ├── rift40.c │ │ ├── rift41.c │ │ ├── rift42.c │ │ ├── rift43.c │ │ ├── rift5.c │ │ ├── rift6.c │ │ ├── rift7.c │ │ ├── rift8.c │ │ └── rift9.c │ ├── mon │ │ ├── acheck.log │ │ ├── airdemon.c │ │ ├── archer.c │ │ ├── archer2.c │ │ ├── ashtar.c │ │ ├── autarkis.c │ │ ├── banisher.c │ │ ├── barkeep.c │ │ ├── bishimon.c │ │ ├── bwyvern.c │ │ ├── callista.c │ │ ├── crow.c │ │ ├── cursed_entity.c │ │ ├── dust_mephit.c │ │ ├── entity.c │ │ ├── firebolt.c │ │ ├── firedemon.c │ │ ├── grimwall.c │ │ ├── guardian.c │ │ ├── gwyvern.c │ │ ├── healer.c │ │ ├── hunter.c │ │ ├── intruder.c │ │ ├── intruderII.c │ │ ├── intruderblah.c │ │ ├── io.c │ │ ├── jackal.c │ │ ├── judatac.c │ │ ├── knight.c │ │ ├── knight2.c │ │ ├── magus.c │ │ ├── necrophidius.c │ │ ├── nightstalker.c │ │ ├── nomad.c │ │ ├── phaeton.c │ │ ├── phalanx.c │ │ ├── poltergeist.c │ │ ├── red_skeleton.c │ │ ├── riptide.c │ │ ├── riptide2.c │ │ ├── riptide3.c │ │ ├── roper.c │ │ ├── rwyvern.c │ │ ├── scorpion.c │ │ ├── seer.c │ │ ├── solstice.c │ │ ├── spal.c │ │ ├── spiritdancer.c │ │ ├── supersolstice.c │ │ ├── swyvern.c │ │ ├── toclahar.c │ │ ├── toclhar.c │ │ ├── tyrant.c │ │ ├── tyrant2.c │ │ ├── uwarrior.c │ │ ├── volkerps.c │ │ ├── warlock.c │ │ ├── waterdemon.c │ │ ├── wonder.c │ │ └── wyvern.c │ ├── newseneca │ │ ├── cguilds │ │ │ ├── mage │ │ │ │ ├── carina.c │ │ │ │ ├── mage1.c │ │ │ │ ├── mage2.c │ │ │ │ ├── mage3.c │ │ │ │ ├── mage4.c │ │ │ │ ├── mage5.c │ │ │ │ ├── mrobe.c │ │ │ │ ├── mstorage.c │ │ │ │ ├── noma.c │ │ │ │ ├── shea.c │ │ │ │ └── soul.c │ │ │ └── thief │ │ │ │ ├── 2thief9.c │ │ │ │ ├── nellie.c │ │ │ │ ├── sharp.c │ │ │ │ ├── sharp_storage.c │ │ │ │ ├── storage.c │ │ │ │ ├── tbookcase.c │ │ │ │ ├── thief1.c │ │ │ │ ├── thief10.c │ │ │ │ ├── thief11.c │ │ │ │ ├── thief2.c │ │ │ │ ├── thief3.c │ │ │ │ ├── thief4.c │ │ │ │ ├── thief5.c │ │ │ │ ├── thief6.c │ │ │ │ ├── thief7.c │ │ │ │ ├── thief8.c │ │ │ │ └── thief9.c │ │ ├── mon │ │ │ ├── adelaide.c │ │ │ ├── akanar.c │ │ │ ├── armorer.c │ │ │ ├── baker_tile.c │ │ │ ├── bank_teller.c │ │ │ ├── city_guard.c │ │ │ ├── clover.c │ │ │ ├── corin.c │ │ │ ├── costume_designer.c │ │ │ ├── cyril.c │ │ │ ├── dire_shark.c │ │ │ ├── dolly.c │ │ │ ├── elbert.c │ │ │ ├── esteban.c │ │ │ ├── gemcutter.c │ │ │ ├── godfrey.c │ │ │ ├── hound_boss.c │ │ │ ├── imp.c │ │ │ ├── inn_baker.c │ │ │ ├── inn_barkeep.c │ │ │ ├── jailer.c │ │ │ ├── jericho.c │ │ │ ├── knight.c │ │ │ ├── librarian.c │ │ │ ├── maddox.c │ │ │ ├── mage_server.c │ │ │ ├── minniwyn.c │ │ │ ├── mohsen.c │ │ │ ├── n_guard.c │ │ │ ├── new_hound.c │ │ │ ├── octavia.c │ │ │ ├── orphan1.c │ │ │ ├── orphan2.c │ │ │ ├── pilman.c │ │ │ ├── psi_guard.c │ │ │ ├── restaurant_server.c │ │ │ ├── restaurant_server2.c │ │ │ ├── sayen.c │ │ │ ├── seamonster_boss.c │ │ │ ├── seneca_clerk.c │ │ │ ├── stable_hand.c │ │ │ ├── tarolina.c │ │ │ ├── testdummy.c │ │ │ ├── toymaker.c │ │ │ ├── verity.c │ │ │ ├── wave_maker.c │ │ │ ├── weaponsmith.c │ │ │ ├── worker1.c │ │ │ ├── worker2.c │ │ │ ├── worker3.c │ │ │ └── worker4.c │ │ ├── obj │ │ │ ├── SENECA_MAP │ │ │ ├── TD_branding.c │ │ │ ├── TD_jawbreaker.c │ │ │ ├── TD_lead.c │ │ │ ├── TD_pillory.c │ │ │ ├── TD_poker.c │ │ │ ├── TD_thumbscrews.c │ │ │ ├── TD_torturekit.c │ │ │ ├── TOY_bear.c │ │ │ ├── TOY_boydoll.c │ │ │ ├── TOY_browndog.c │ │ │ ├── TOY_bunny.c │ │ │ ├── TOY_dog.c │ │ │ ├── TOY_giant.c │ │ │ ├── TOY_girldoll.c │ │ │ ├── TOY_kitten.c │ │ │ ├── TOY_monster.c │ │ │ ├── TOY_piggy.c │ │ │ ├── TOY_pinkdragon.c │ │ │ ├── TOY_purpledragon.c │ │ │ ├── TOY_wolf.c │ │ │ ├── base_earrings.c │ │ │ ├── base_erobe.c │ │ │ ├── base_girdle.c │ │ │ ├── base_jacket.c │ │ │ ├── base_pants.c │ │ │ ├── base_pcloak.c │ │ │ ├── base_shoes.c │ │ │ ├── base_tunic.c │ │ │ ├── battle_axe.c │ │ │ ├── beach_lamp.c │ │ │ ├── bread.c │ │ │ ├── candle.c │ │ │ ├── chess_enclave.c │ │ │ ├── clance.c │ │ │ ├── coffee.c │ │ │ ├── conch_bracelet.c │ │ │ ├── costume.c │ │ │ ├── costume_angel.c │ │ │ ├── costume_ballerina.c │ │ │ ├── costume_bride.c │ │ │ ├── costume_bunny.c │ │ │ ├── costume_butterfly.c │ │ │ ├── costume_cat.c │ │ │ ├── costume_dancer.c │ │ │ ├── costume_devil.c │ │ │ ├── costume_fairy.c │ │ │ ├── costume_ghost.c │ │ │ ├── costume_goblin.c │ │ │ ├── costume_groom.c │ │ │ ├── costume_guard.c │ │ │ ├── costume_jester.c │ │ │ ├── costume_king.c │ │ │ ├── costume_knight.c │ │ │ ├── costume_lion.c │ │ │ ├── costume_mermaid.c │ │ │ ├── costume_monk.c │ │ │ ├── costume_mummy.c │ │ │ ├── costume_ninja.c │ │ │ ├── costume_pig.c │ │ │ ├── costume_pirate.c │ │ │ ├── costume_queen.c │ │ │ ├── costume_skeleton.c │ │ │ ├── costume_vampire.c │ │ │ ├── costume_witch.c │ │ │ ├── costume_wizard.c │ │ │ ├── costume_zombie.c │ │ │ ├── cowry_necklace.c │ │ │ ├── deity_animals.c │ │ │ ├── deity_animals.tita.c │ │ │ ├── deity_stuffed.c │ │ │ ├── deity_stuffed.tita.c │ │ │ ├── dome.c │ │ │ ├── domelistener.c │ │ │ ├── e_cloak.c │ │ │ ├── e_cloak_base.c │ │ │ ├── e_coat.c │ │ │ ├── e_coat_base.c │ │ │ ├── e_gloves.c │ │ │ ├── e_gloves_base.c │ │ │ ├── e_pants.c │ │ │ ├── e_pants_base.c │ │ │ ├── e_shirt.c │ │ │ ├── e_shirt_base.c │ │ │ ├── e_shoes.c │ │ │ ├── e_shoes_base.c │ │ │ ├── earrings.c │ │ │ ├── ench_bastard_two.c │ │ │ ├── ench_battle_axe.c │ │ │ ├── ench_claw.c │ │ │ ├── ench_dagger.c │ │ │ ├── ench_flail.c │ │ │ ├── ench_lance.c │ │ │ ├── ench_longsword.c │ │ │ ├── ench_mace.c │ │ │ ├── ench_mstaff.c │ │ │ ├── ench_rapier.c │ │ │ ├── ench_shortsword.c │ │ │ ├── ench_warhammer.c │ │ │ ├── ench_whip.c │ │ │ ├── erobe.c │ │ │ ├── eyepatch.c │ │ │ ├── fcloak.c │ │ │ ├── feathered_mask.c │ │ │ ├── final_map │ │ │ ├── fruit.c │ │ │ ├── girdle.c │ │ │ ├── gloves.c │ │ │ ├── herb_inherit.c │ │ │ ├── herb_pouch.c │ │ │ ├── horned_helm.c │ │ │ ├── hose.c │ │ │ ├── jewelry_box.c │ │ │ ├── kalimex_statue.c │ │ │ ├── kite_cloud.c │ │ │ ├── kite_quad.c │ │ │ ├── leloran_statue.c │ │ │ ├── light_ring.c │ │ │ ├── map.c │ │ │ ├── mask_abyss.c │ │ │ ├── mask_arborea.c │ │ │ ├── mask_baator.c │ │ │ ├── mask_celestia.c │ │ │ ├── mask_flame.c │ │ │ ├── mask_jester.c │ │ │ ├── mask_snowflake.c │ │ │ ├── monk_robe.c │ │ │ ├── monk_statue.c │ │ │ ├── music_box1.c │ │ │ ├── music_box2.c │ │ │ ├── music_box3.c │ │ │ ├── mystery_cone.c │ │ │ ├── new_symbols │ │ │ │ ├── jarmila │ │ │ │ ├── kismet │ │ │ │ ├── krey │ │ │ │ ├── lordshadow │ │ │ │ ├── lysara │ │ │ │ └── nilith │ │ │ ├── orange.c │ │ │ ├── oriaum_bplate.c │ │ │ ├── oriaum_helm.c │ │ │ ├── pants.c │ │ │ ├── pearl_strand.c │ │ │ ├── petals.c │ │ │ ├── petals_spread.c │ │ │ ├── picnic_basket.c │ │ │ ├── picnic_blanket.c │ │ │ ├── picnic_cup.c │ │ │ ├── picnic_cutlery.c │ │ │ ├── picnic_plate.c │ │ │ ├── plcloak.c │ │ │ ├── puka_anklet.c │ │ │ ├── puka_bracelet.c │ │ │ ├── puka_necklace.c │ │ │ ├── rboots.c │ │ │ ├── sand_jar.c │ │ │ ├── sandals.c │ │ │ ├── sboots.c │ │ │ ├── seaweedcloak.c │ │ │ ├── seneca_belt.c │ │ │ ├── seneca_boots.c │ │ │ ├── seneca_coat.c │ │ │ ├── seneca_gloves.c │ │ │ ├── seneca_hat.c │ │ │ ├── seneca_key.c │ │ │ ├── seneca_pants.c │ │ │ ├── shark_necklace.c │ │ │ ├── sharktooth.c │ │ │ ├── shell_necklace.c │ │ │ ├── shell_rose.c │ │ │ ├── shield.c │ │ │ ├── ship_bottle.c │ │ │ ├── shoes.c │ │ │ ├── sjacket.c │ │ │ ├── stew.c │ │ │ ├── street_lamp.c │ │ │ ├── symbols │ │ │ │ ├── akadi │ │ │ │ ├── anhur │ │ │ │ ├── auppenser │ │ │ │ ├── auril │ │ │ │ ├── bane │ │ │ │ ├── beshaba │ │ │ │ ├── cyric │ │ │ │ ├── grumbar │ │ │ │ ├── helm │ │ │ │ ├── istishia │ │ │ │ ├── kelemvor │ │ │ │ ├── kossuth │ │ │ │ ├── lathander │ │ │ │ ├── malar │ │ │ │ ├── mask │ │ │ │ ├── mielikki │ │ │ │ ├── mystra │ │ │ │ ├── oghma │ │ │ │ ├── selune │ │ │ │ ├── shar │ │ │ │ ├── shaundakul │ │ │ │ ├── sune │ │ │ │ ├── talos │ │ │ │ ├── tempus │ │ │ │ ├── torm │ │ │ │ ├── tymora │ │ │ │ └── tyr │ │ │ ├── tattoos │ │ │ │ ├── aashaenael_armflames.c │ │ │ │ ├── aashaenael_flames.c │ │ │ │ ├── aelaj_iokharic_insignia.c │ │ │ │ ├── alzar_Chaos.c │ │ │ │ ├── alzar_dorjetat.c │ │ │ │ ├── alzar_dorjetattoo.c │ │ │ │ ├── alzar_murderousrage.c │ │ │ │ ├── alzar_murderouswinter.c │ │ │ │ ├── alzar_snowywasteland.c │ │ │ │ ├── alzar_wasteland.c │ │ │ │ ├── alzar_wintertat.c │ │ │ │ ├── alzar_winterwasteland.c │ │ │ │ ├── alzar_winterywasteland.c │ │ │ │ ├── alzar_wintrymix.c │ │ │ │ ├── amaryllis_doomcrow.c │ │ │ │ ├── ansekin_psionscalp.c │ │ │ │ ├── ansekin_psiontat2.c │ │ │ │ ├── arelyn_rosedragon.c │ │ │ │ ├── azkhadaehlia_illithid.c │ │ │ │ ├── azkhadaehlia_klauthdragon.c │ │ │ │ ├── bannic_tribalcrawl.c │ │ │ │ ├── bentalf_symbolofasmodeus.c │ │ │ │ ├── castius_fistofbane.c │ │ │ │ ├── castius_handofbane.c │ │ │ │ ├── castius_symbolofbane.c │ │ │ │ ├── chuinli_tat1.c │ │ │ │ ├── circe_pseudodragon.c │ │ │ │ ├── circe_testing.c │ │ │ │ ├── demiathus_keybook1.c │ │ │ │ ├── dorje_violetflame.c │ │ │ │ ├── dorje_violetflame1.c │ │ │ │ ├── eireen_newscarab.c │ │ │ │ ├── eireen_rosevine.c │ │ │ │ ├── eireen_rosevine2.c │ │ │ │ ├── eireen_scarab.c │ │ │ │ ├── eireen_scarab3.c │ │ │ │ ├── eireen_scarab5.c │ │ │ │ ├── eireen_scarabA.c │ │ │ │ ├── eireen_scarabnew.c │ │ │ │ ├── eireen_scarabthree.c │ │ │ │ ├── geoffrey_numbertat.c │ │ │ │ ├── geoffrey_prisonnumber.c │ │ │ │ ├── gorgyrion_neckhammer.c │ │ │ │ ├── grzzktzywlrvp_skullbreakertattoo1.c │ │ │ │ ├── hererr_skullbreaker.c │ │ │ │ ├── hrokr_blackcrow.c │ │ │ │ ├── ibn_Circle.c │ │ │ │ ├── isaiah_stars.c │ │ │ │ ├── isaiah_tattoo,_star_tattoo.c │ │ │ │ ├── ivyes_p-tat.c │ │ │ │ ├── ivyes_ptat.c │ │ │ │ ├── ivyes_ptatt.c │ │ │ │ ├── ivyes_ptattoo.c │ │ │ │ ├── ivyes_ptatty.c │ │ │ │ ├── ivyes_ratqueen.c │ │ │ │ ├── ivyes_the15thtimesacharm.c │ │ │ │ ├── jesi_q.c │ │ │ │ ├── jimijuker_.c │ │ │ │ ├── jimijuker_13.c │ │ │ │ ├── jimijuker_13tat.c │ │ │ │ ├── jimijuker_M.c │ │ │ │ ├── jimijuker_NMRP.c │ │ │ │ ├── jimijuker_armsleeveright.c │ │ │ │ ├── jimijuker_bandidotat.c │ │ │ │ ├── jimijuker_bardic.c │ │ │ │ ├── jimijuker_bardskull.c │ │ │ │ ├── jimijuker_bold13.c │ │ │ │ ├── jimijuker_cointat.c │ │ │ │ ├── jimijuker_crowdie.c │ │ │ │ ├── jimijuker_crowtat.c │ │ │ │ ├── jimijuker_gig.c │ │ │ │ ├── jimijuker_gignos.c │ │ │ │ ├── jimijuker_gignosken.c │ │ │ │ ├── jimijuker_gnomeskull.c │ │ │ │ ├── jimijuker_gutterboy.c │ │ │ │ ├── jimijuker_leaf.c │ │ │ │ ├── jimijuker_leaftattoo.c │ │ │ │ ├── jimijuker_magentaskullbreakers.c │ │ │ │ ├── jimijuker_musicnotes.c │ │ │ │ ├── jimijuker_note.c │ │ │ │ ├── jimijuker_notetat.c │ │ │ │ ├── jimijuker_pentadragon.c │ │ │ │ ├── jimijuker_pentadragons.c │ │ │ │ ├── jimijuker_pentadragons1.c │ │ │ │ ├── jimijuker_picktattoo.c │ │ │ │ ├── jimijuker_raven.c │ │ │ │ ├── jimijuker_rocktat2.c │ │ │ │ ├── jimijuker_rocktatt.c │ │ │ │ ├── jimijuker_skull13.c │ │ │ │ ├── jimijuker_skullbreakerclan.c │ │ │ │ ├── jimijuker_skullcrossbones.c │ │ │ │ ├── jimijuker_skullscrossbones.c │ │ │ │ ├── jimijuker_skulltat.c │ │ │ │ ├── jimijuker_skulltattoo.c │ │ │ │ ├── jimijuker_small13.c │ │ │ │ ├── jimijuker_smudg2.c │ │ │ │ ├── jimijuker_swan.c │ │ │ │ ├── jimijuker_swantattoo.c │ │ │ │ ├── jimijuker_tatcrow.c │ │ │ │ ├── jimijuker_tatgig.c │ │ │ │ ├── jimijuker_tathirteen.c │ │ │ │ ├── jimijuker_tato.c │ │ │ │ ├── jimijuker_tatpalm.c │ │ │ │ ├── jimijuker_tattoo13.c │ │ │ │ ├── jimijuker_thirteen.c │ │ │ │ ├── jimijuker_thirteen13.c │ │ │ │ ├── jimijuker_thirteenblack.c │ │ │ │ ├── jimijuker_toestats1.c │ │ │ │ ├── jimijuker_toetat2.c │ │ │ │ ├── jimijuker_tribaldragon.c │ │ │ │ ├── jimijuker_weedtat.c │ │ │ │ ├── kain_blackfeather.c │ │ │ │ ├── kain_darktattoo.c │ │ │ │ ├── kain_kainstattoo.c │ │ │ │ ├── kain_kaintattoo.c │ │ │ │ ├── ketami_tattoo,_tribal,_tribe.c │ │ │ │ ├── koil_greatspider.c │ │ │ │ ├── koil_spider.c │ │ │ │ ├── loraedi_tribal.c │ │ │ │ ├── mandren_FaceTribal.c │ │ │ │ ├── mandren_bloodclaw.c │ │ │ │ ├── mandren_lefteye.c │ │ │ │ ├── mandren_lefteyetattoo.c │ │ │ │ ├── mandren_righteyetattoo.c │ │ │ │ ├── ochgier_skullbreakers.c │ │ │ │ ├── odin_odintesttat.c │ │ │ │ ├── og_hugesymboltempus.c │ │ │ │ ├── og_hugetempussymbol.c │ │ │ │ ├── og_tempussymbol.c │ │ │ │ ├── pangretor_blackdragon.c │ │ │ │ ├── pangretor_dragon.c │ │ │ │ ├── pangretor_dragon1.c │ │ │ │ ├── pangretor_fingerbolt.c │ │ │ │ ├── pangretor_ivyesletter.c │ │ │ │ ├── pangretor_necktalos.c │ │ │ │ ├── pangretor_vardasymbol.c │ │ │ │ ├── pangretor_walkunafraidchest.c │ │ │ │ ├── phade_vine.c │ │ │ │ ├── phade_vines.c │ │ │ │ ├── ramius_sunrise.c │ │ │ │ ├── raveena_bluerose.c │ │ │ │ ├── raveena_blurose.c │ │ │ │ ├── raveena_cloud.c │ │ │ │ ├── raveena_silvercloud.c │ │ │ │ ├── raveena_silverycloud.c │ │ │ │ ├── sadhara_face.c │ │ │ │ ├── saide_saidetest.c │ │ │ │ ├── samnir_armtribal.c │ │ │ │ ├── saresh_tormtar.c │ │ │ │ ├── shinu_penta.c │ │ │ │ ├── shinu_pentagram.c │ │ │ │ ├── sierra_nightmare.c │ │ │ │ ├── sierra_orchid.c │ │ │ │ ├── sierra_skull.c │ │ │ │ ├── sixx_pentadragon.c │ │ │ │ ├── sudelilah_bluestar.c │ │ │ │ ├── sudelilah_bluestar2.c │ │ │ │ ├── tarn_AnhursGlory.c │ │ │ │ ├── tattoo.h │ │ │ │ ├── tattoo_base1.c │ │ │ │ ├── tattoo_base2.c │ │ │ │ ├── tattoo_base3.c │ │ │ │ ├── tattoo_base4.c │ │ │ │ ├── tattoo_base5.c │ │ │ │ ├── teroai_dancingflame.c │ │ │ │ ├── testlackey_phoenix.c │ │ │ │ ├── theoros_arcanetattoo.c │ │ │ │ ├── tobius_q.c │ │ │ │ ├── tsera1.c │ │ │ │ ├── verbannon_eaglespear.c │ │ │ │ ├── wyngardt_chaosstar.c │ │ │ │ ├── xangli_silverdragon.c │ │ │ │ ├── xian_GreenDragonSword.c │ │ │ │ ├── xian_LoveIsEvil.c │ │ │ │ ├── xian_elvenwoman.c │ │ │ │ ├── xian_mother.c │ │ │ │ ├── ygdrasalia_wings.c │ │ │ │ └── zresmyra_dragon.c │ │ │ ├── tea.c │ │ │ ├── tier_statue.c │ │ │ ├── tunic.c │ │ │ ├── valuables.c │ │ │ ├── valuables_base.c │ │ │ ├── valuables_special.c │ │ │ ├── water.c │ │ │ ├── water_vials.c │ │ │ └── wbow.c │ │ ├── rooms │ │ │ ├── armor.c │ │ │ ├── bank.c │ │ │ ├── bar.c │ │ │ ├── bar_cards.c │ │ │ ├── bar_storage.c │ │ │ ├── bard_costume.c │ │ │ ├── barracks_common1.c │ │ │ ├── barracks_dining.c │ │ │ ├── barracks_entry.c │ │ │ ├── barracks_housing1.c │ │ │ ├── barracks_housing2.c │ │ │ ├── barracks_women.c │ │ │ ├── beach1.c │ │ │ ├── beach10.c │ │ │ ├── beach11.c │ │ │ ├── beach2.c │ │ │ ├── beach3.c │ │ │ ├── beach4.c │ │ │ ├── beach5.c │ │ │ ├── beach6.c │ │ │ ├── beach7.c │ │ │ ├── beach8.c │ │ │ ├── beach9.c │ │ │ ├── boardwalk1.c │ │ │ ├── boardwalk2.c │ │ │ ├── boardwalk3.c │ │ │ ├── cath_basement.c │ │ │ ├── cath_cell1.c │ │ │ ├── cath_cell2.c │ │ │ ├── cath_chancel.c │ │ │ ├── cath_foyer.c │ │ │ ├── cath_hall1.c │ │ │ ├── cath_hall2.c │ │ │ ├── cath_kitchen.c │ │ │ ├── cath_living.c │ │ │ ├── cath_nave.c │ │ │ ├── cath_study.c │ │ │ ├── cath_tower1.c │ │ │ ├── cath_tower10.c │ │ │ ├── cath_tower2.c │ │ │ ├── cath_tower3.c │ │ │ ├── cath_tower4.c │ │ │ ├── cath_tower5.c │ │ │ ├── cath_tower6.c │ │ │ ├── cath_tower7.c │ │ │ ├── cath_tower8.c │ │ │ ├── cath_tower9.c │ │ │ ├── cath_vestry.c │ │ │ ├── cath_workroom.c │ │ │ ├── cath_yard.c │ │ │ ├── cemetery.c │ │ │ ├── clothing2.c │ │ │ ├── estreet13.c │ │ │ ├── estreet14.c │ │ │ ├── estreet15.c │ │ │ ├── estreet16.c │ │ │ ├── estreet17.c │ │ │ ├── estreet18.c │ │ │ ├── estreet19.c │ │ │ ├── estreet20.c │ │ │ ├── estreet21.c │ │ │ ├── estreet22.c │ │ │ ├── garden1.c │ │ │ ├── garden2.c │ │ │ ├── garden3.c │ │ │ ├── gazebo.c │ │ │ ├── general_store.c │ │ │ ├── healer.c │ │ │ ├── herb_shop.c │ │ │ ├── inn_balcony.c │ │ │ ├── inn_bar.c │ │ │ ├── inn_common.c │ │ │ ├── inn_entrance.c │ │ │ ├── inn_main.c │ │ │ ├── inn_orchid.c │ │ │ ├── inn_plumeria.c │ │ │ ├── inn_restaurant.c │ │ │ ├── inn_restroom.c │ │ │ ├── inn_stairs.c │ │ │ ├── inn_stairs2.c │ │ │ ├── inn_stairs3.c │ │ │ ├── inn_suite.c │ │ │ ├── jail_cell.c │ │ │ ├── jail_main.c │ │ │ ├── jousting1.c │ │ │ ├── jousting2.c │ │ │ ├── library.c │ │ │ ├── mage_combat.c │ │ │ ├── mage_combat2.c │ │ │ ├── mage_comps.c │ │ │ ├── mage_entry.c │ │ │ ├── mage_kitchen.c │ │ │ ├── mage_lab.c │ │ │ ├── mage_landing1.c │ │ │ ├── mage_landing2.c │ │ │ ├── mage_landing3.c │ │ │ ├── mage_landing4.c │ │ │ ├── mage_landing5.c │ │ │ ├── mage_landing6.c │ │ │ ├── mage_meeting.c │ │ │ ├── mage_shrine.c │ │ │ ├── mage_store.c │ │ │ ├── main_stable.c │ │ │ ├── monument1.c │ │ │ ├── monument2.c │ │ │ ├── monument3.c │ │ │ ├── monument4.c │ │ │ ├── park.c │ │ │ ├── portal.c │ │ │ ├── psi_comps.c │ │ │ ├── psi_entry.c │ │ │ ├── psi_foyer.c │ │ │ ├── psi_landing1.c │ │ │ ├── psi_landing2.c │ │ │ ├── psi_landing3.c │ │ │ ├── psi_landing4.c │ │ │ ├── psi_landing5.c │ │ │ ├── psi_landing6.c │ │ │ ├── psi_meditation.c │ │ │ ├── psi_meeting.c │ │ │ ├── psi_roof.c │ │ │ ├── psi_store.c │ │ │ ├── psi_workroom.c │ │ │ ├── restaurant1.c │ │ │ ├── restaurant2.c │ │ │ ├── rockypath1.c │ │ │ ├── rockypath10.c │ │ │ ├── rockypath11.c │ │ │ ├── rockypath12.c │ │ │ ├── rockypath13.c │ │ │ ├── rockypath2.c │ │ │ ├── rockypath3.c │ │ │ ├── rockypath4.c │ │ │ ├── rockypath5.c │ │ │ ├── rockypath6.c │ │ │ ├── rockypath7.c │ │ │ ├── rockypath8.c │ │ │ ├── rockypath9.c │ │ │ ├── scribe.c │ │ │ ├── shore1.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── shore7.c │ │ │ ├── skyline41.c │ │ │ ├── skyline42.c │ │ │ ├── skyline43.c │ │ │ ├── skyline44.c │ │ │ ├── skyline45.c │ │ │ ├── skyline46.c │ │ │ ├── skyline47.c │ │ │ ├── smithy.c │ │ │ ├── souvenir.c │ │ │ ├── souveniryard.c │ │ │ ├── square.c │ │ │ ├── sstreet23.c │ │ │ ├── sstreet24.c │ │ │ ├── sstreet25.c │ │ │ ├── sstreet26.c │ │ │ ├── sstreet27.c │ │ │ ├── sstreet28.c │ │ │ ├── sstreet29.c │ │ │ ├── sstreet30.c │ │ │ ├── sstreet31.c │ │ │ ├── sstreet32.c │ │ │ ├── sstreet48.c │ │ │ ├── stable.c │ │ │ ├── street10.c │ │ │ ├── street11.c │ │ │ ├── street12.c │ │ │ ├── street2.c │ │ │ ├── street3.c │ │ │ ├── street4.c │ │ │ ├── street5.c │ │ │ ├── street6.c │ │ │ ├── street7.c │ │ │ ├── street8.c │ │ │ ├── street9.c │ │ │ ├── tailor.c │ │ │ ├── tattoo.c │ │ │ ├── test_room.c │ │ │ ├── test_room2.c │ │ │ ├── town_entry.c │ │ │ ├── toystore.c │ │ │ ├── viento49.c │ │ │ ├── viento50.c │ │ │ ├── viento51.c │ │ │ ├── viento52.c │ │ │ ├── viento53.c │ │ │ ├── viento54.c │ │ │ ├── viento55.c │ │ │ ├── viento56.c │ │ │ ├── viento57.c │ │ │ ├── viento58.c │ │ │ ├── weapon.c │ │ │ ├── wstreet1.c │ │ │ ├── wstreet33.c │ │ │ ├── wstreet34.c │ │ │ ├── wstreet35.c │ │ │ ├── wstreet36.c │ │ │ ├── wstreet37.c │ │ │ ├── wstreet38.c │ │ │ ├── wstreet39.c │ │ │ └── wstreet40.c │ │ ├── seneca.h │ │ └── storage │ │ │ ├── armor_storage.c │ │ │ ├── beach.c │ │ │ ├── cath_tower.c │ │ │ ├── cloth_storage.c │ │ │ ├── costume_storage.c │ │ │ ├── driftwood.c │ │ │ ├── esteban_storage.c │ │ │ ├── estreet.c │ │ │ ├── garden_inherit.c │ │ │ ├── general.c │ │ │ ├── herb_storage.c │ │ │ ├── mage_landing.c │ │ │ ├── psi_landing.c │ │ │ ├── rocky_path.c │ │ │ ├── shore.c │ │ │ ├── skyline_boulevard.c │ │ │ ├── sstreet.c │ │ │ ├── street.c │ │ │ ├── toy_storage.c │ │ │ ├── toy_storage.tita.c │ │ │ ├── viento_lane.c │ │ │ ├── weapon_storage.c │ │ │ └── wstreet.c │ ├── obj │ │ ├── arrows.c │ │ ├── aut_armor.c │ │ ├── aut_notpball.c │ │ ├── axe.c │ │ ├── azure.c │ │ ├── bench.c │ │ ├── bhelm.c │ │ ├── bish_gauntlets.c │ │ ├── bish_helm.c │ │ ├── bish_plate.c │ │ ├── black_swan.c │ │ ├── bonestripper.c │ │ ├── bookcase.c │ │ ├── bookcase2.c │ │ ├── bookcase3.c │ │ ├── boots.c │ │ ├── cal_armor.c │ │ ├── cal_crysknife.c │ │ ├── cal_gcutlass.c │ │ ├── cal_pants.c │ │ ├── callistaarmor.c │ │ ├── chair.c │ │ ├── crysknife.c │ │ ├── cursed.c │ │ ├── deathbow.c │ │ ├── dmace.c │ │ ├── doomsday.c │ │ ├── falchion.c │ │ ├── forcefield.c │ │ ├── gauntlets.c │ │ ├── gcutlass.c │ │ ├── goldbrick.c │ │ ├── goldstatue.c │ │ ├── guardianoftelquessir.c │ │ ├── hammer.c │ │ ├── ice_hammer.c │ │ ├── karmor.c │ │ ├── kilt.c │ │ ├── lgauntlets.c │ │ ├── lightning.c │ │ ├── moonrobe.c │ │ ├── note.c │ │ ├── notpball.c │ │ ├── orb.c │ │ ├── pants.c │ │ ├── path_torches.c │ │ ├── phantasmic_plate.c │ │ ├── profile.c │ │ ├── pshield.c │ │ ├── psword.c │ │ ├── rgauntlets.c │ │ ├── rguantlets.c │ │ ├── rock1.c │ │ ├── rock2.c │ │ ├── rock3.c │ │ ├── rustb.c │ │ ├── rusts.c │ │ ├── scimitar.c │ │ ├── screamer.c │ │ ├── shelm.c │ │ ├── shimmeringcape.c │ │ ├── shorts.c │ │ ├── shoulderplate.c │ │ ├── shoulderplates.c │ │ ├── shroud.c │ │ ├── silkdrape.c │ │ ├── silkvest.c │ │ ├── singer.obs │ │ ├── statue2.c │ │ ├── stormkey.c │ │ ├── stormsabre.c │ │ ├── table.c │ │ ├── table2.c │ │ ├── uarmor.c │ │ ├── volkerps.c │ │ ├── warning.c │ │ ├── warning2.c │ │ └── z_boots.c │ ├── old │ │ ├── jun1.c │ │ ├── jun10.c │ │ ├── jun100.c │ │ ├── jun101.c │ │ ├── jun102.c │ │ ├── jun103.c │ │ ├── jun11.c │ │ ├── jun12.c │ │ ├── jun13.c │ │ ├── jun14.c │ │ ├── jun15.c │ │ ├── jun16.c │ │ ├── jun17.c │ │ ├── jun18.c │ │ ├── jun19.c │ │ ├── jun2.c │ │ ├── jun20.c │ │ ├── jun21.c │ │ ├── jun22.c │ │ ├── jun23.c │ │ ├── jun24.c │ │ ├── jun25.c │ │ ├── jun26.c │ │ ├── jun27.c │ │ ├── jun28.c │ │ ├── jun29.c │ │ ├── jun3.c │ │ ├── jun30.c │ │ ├── jun31.c │ │ ├── jun31a.c │ │ ├── jun32.c │ │ ├── jun33.c │ │ ├── jun34.c │ │ ├── jun35.c │ │ ├── jun36.c │ │ ├── jun37.c │ │ ├── jun38.c │ │ ├── jun39.c │ │ ├── jun4.c │ │ ├── jun40.c │ │ ├── jun41.c │ │ ├── jun42.c │ │ ├── jun43.c │ │ ├── jun44.c │ │ ├── jun45.c │ │ ├── jun46.c │ │ ├── jun47.c │ │ ├── jun48.c │ │ ├── jun49.c │ │ ├── jun5.c │ │ ├── jun50.c │ │ ├── jun51.c │ │ ├── jun52.c │ │ ├── jun53.c │ │ ├── jun54.c │ │ ├── jun55.c │ │ ├── jun56.c │ │ ├── jun57.c │ │ ├── jun58.c │ │ ├── jun59.c │ │ ├── jun6.c │ │ ├── jun60.c │ │ ├── jun61.c │ │ ├── jun62.c │ │ ├── jun63.c │ │ ├── jun64.c │ │ ├── jun65.c │ │ ├── jun66.c │ │ ├── jun67.c │ │ ├── jun68.c │ │ ├── jun69.c │ │ ├── jun7.c │ │ ├── jun70.c │ │ ├── jun71.c │ │ ├── jun72.c │ │ ├── jun73.c │ │ ├── jun74.c │ │ ├── jun75.c │ │ ├── jun76.c │ │ ├── jun77.c │ │ ├── jun78.c │ │ ├── jun79.c │ │ ├── jun8.c │ │ ├── jun80.c │ │ ├── jun81.c │ │ ├── jun82.c │ │ ├── jun83.c │ │ ├── jun84.c │ │ ├── jun85.c │ │ ├── jun86.c │ │ ├── jun86.gre2 │ │ ├── jun87.c │ │ ├── jun88.c │ │ ├── jun89.c │ │ ├── jun9.c │ │ ├── jun90.c │ │ ├── jun91.c │ │ ├── jun92.c │ │ ├── jun93.c │ │ ├── jun94.c │ │ ├── jun95.c │ │ ├── jun96.c │ │ ├── jun97.c │ │ ├── jun98.c │ │ └── jun99.c │ ├── pain.c │ ├── pub.c │ ├── seneca │ │ ├── adv_hall.c │ │ ├── advyard.c │ │ ├── alchemist.c │ │ ├── arena │ │ │ ├── arena1.c │ │ │ ├── arena10.c │ │ │ ├── arena11.c │ │ │ ├── arena12.c │ │ │ ├── arena13.c │ │ │ ├── arena14.c │ │ │ ├── arena15.c │ │ │ ├── arena16.c │ │ │ ├── arena2.c │ │ │ ├── arena3.c │ │ │ ├── arena4.c │ │ │ ├── arena5.c │ │ │ ├── arena6.c │ │ │ ├── arena7.c │ │ │ ├── arena8.c │ │ │ ├── arena9.c │ │ │ └── defeat.closed │ │ ├── arenain.closed │ │ ├── arenajoin.closed │ │ ├── arenayard.closed │ │ ├── armor │ │ │ ├── aster.c │ │ │ ├── c_armor.c │ │ │ ├── cs_armor.c │ │ │ ├── cw_armor.c │ │ │ ├── deflector.c │ │ │ ├── m_armor.c │ │ │ ├── shield1.c │ │ │ ├── standard.c │ │ │ └── sunarmor.c │ │ ├── armor2.c │ │ ├── armorshop.c │ │ ├── armoryard.c │ │ ├── bank.c │ │ ├── bankyard.c │ │ ├── boardwalk1.c │ │ ├── boardwalk2.c │ │ ├── boardwalk3.c │ │ ├── cathyard.c │ │ ├── cguilds │ │ │ ├── mage │ │ │ │ ├── carina.c │ │ │ │ ├── mage1.c │ │ │ │ ├── mage2.c │ │ │ │ ├── mage3.c │ │ │ │ ├── mage4.c │ │ │ │ ├── mage5.c │ │ │ │ ├── mona.c │ │ │ │ ├── mrobe.c │ │ │ │ ├── mstorage.c │ │ │ │ ├── noma.c │ │ │ │ ├── shea.c │ │ │ │ └── soul.c │ │ │ └── thief │ │ │ │ ├── 2thief9.c │ │ │ │ ├── nellie.c │ │ │ │ ├── sharp.c │ │ │ │ ├── sharp_storage.c │ │ │ │ ├── storage.c │ │ │ │ ├── tbookcase.c │ │ │ │ ├── thief1.c │ │ │ │ ├── thief10.c │ │ │ │ ├── thief11.c │ │ │ │ ├── thief2.c │ │ │ │ ├── thief3.c │ │ │ │ ├── thief4.c │ │ │ │ ├── thief5.c │ │ │ │ ├── thief6.c │ │ │ │ ├── thief7.c │ │ │ │ ├── thief8.c │ │ │ │ └── thief9.c │ │ ├── church.c │ │ ├── church10.c │ │ ├── church2.c │ │ ├── church3.c │ │ ├── church4.c │ │ ├── church5.c │ │ ├── church6.c │ │ ├── church7.c │ │ ├── church8.c │ │ ├── church9.c │ │ ├── churchyard.c │ │ ├── clothshop.c │ │ ├── clothyard.c │ │ ├── gazebo.c │ │ ├── guardhouse.c │ │ ├── hall_announce.c │ │ ├── hall_complaint.c │ │ ├── hall_main.c │ │ ├── hallyard.c │ │ ├── healer.c │ │ ├── healyard.c │ │ ├── inherit │ │ │ ├── city_inside.c │ │ │ └── city_outside.c │ │ ├── mon │ │ │ ├── akanar.c │ │ │ ├── altherian.c │ │ │ ├── antral.c │ │ │ ├── armorer.c │ │ │ ├── cervantes.c │ │ │ ├── guard1.c │ │ │ ├── healer.c │ │ │ ├── mohsen.c │ │ │ ├── monk.c │ │ │ ├── pardima.c │ │ │ ├── trainer.c │ │ │ ├── vaistus.c │ │ │ └── waiter.c │ │ ├── obj │ │ │ ├── bell.c │ │ │ ├── bronzemesh.c │ │ │ ├── claw.c │ │ │ ├── claymore.c │ │ │ ├── clothing │ │ │ │ ├── backups │ │ │ │ │ ├── About_these_files │ │ │ │ │ ├── erobe.c │ │ │ │ │ ├── fcloak.c │ │ │ │ │ ├── girdle.c │ │ │ │ │ ├── gloves.c │ │ │ │ │ ├── hose.c │ │ │ │ │ ├── pants.c │ │ │ │ │ ├── plcloak.c │ │ │ │ │ ├── rboots.c │ │ │ │ │ ├── sandals.c │ │ │ │ │ ├── sboots.c │ │ │ │ │ ├── shoes.c │ │ │ │ │ ├── sjacket.c │ │ │ │ │ └── tunic.c │ │ │ │ ├── base_erobe.c │ │ │ │ ├── base_girdle.c │ │ │ │ ├── base_jacket.c │ │ │ │ ├── base_pants.c │ │ │ │ ├── base_pcloak.c │ │ │ │ ├── base_shoes.c │ │ │ │ ├── base_tunic.c │ │ │ │ ├── erobe.c │ │ │ │ ├── fcloak.c │ │ │ │ ├── girdle.c │ │ │ │ ├── gloves.c │ │ │ │ ├── hose.c │ │ │ │ ├── pants.c │ │ │ │ ├── plcloak.c │ │ │ │ ├── rboots.c │ │ │ │ ├── sandals.c │ │ │ │ ├── sboots.c │ │ │ │ ├── shoes.c │ │ │ │ ├── sjacket.c │ │ │ │ └── tunic.c │ │ │ ├── fakelight.c │ │ │ ├── fountain.c │ │ │ ├── head.c │ │ │ ├── kirshan.c │ │ │ ├── medic.obs │ │ │ ├── pike.c │ │ │ ├── sabre.c │ │ │ └── tcstatue.c │ │ ├── pawnshop.c │ │ ├── pawnyard.c │ │ ├── portal.c │ │ ├── psion1.c │ │ ├── questhall.c │ │ ├── questyard.c │ │ ├── rest1.c │ │ ├── road1.c │ │ ├── road10.c │ │ ├── road11.c │ │ ├── road12.c │ │ ├── road13.c │ │ ├── road14.c │ │ ├── road15.c │ │ ├── road16.c │ │ ├── road17.c │ │ ├── road18.c │ │ ├── road19.c │ │ ├── road2.c │ │ ├── road20.c │ │ ├── road21.c │ │ ├── road22.c │ │ ├── road23.c │ │ ├── road24.c │ │ ├── road25.c │ │ ├── road26.c │ │ ├── road27.c │ │ ├── road28.c │ │ ├── road29.c │ │ ├── road3.c │ │ ├── road30.c │ │ ├── road31.c │ │ ├── road32.c │ │ ├── road33.c │ │ ├── road34.c │ │ ├── road35.c │ │ ├── road36.c │ │ ├── road37.c │ │ ├── road38.c │ │ ├── road39.c │ │ ├── road4.c │ │ ├── road5.c │ │ ├── road6.c │ │ ├── road7.c │ │ ├── road8.c │ │ ├── road9.c │ │ ├── scribe.c │ │ ├── seneca │ │ ├── seneca3.c │ │ ├── short.h │ │ ├── square.c │ │ ├── storage │ │ │ ├── armor_storage.c │ │ │ ├── cloth_storage.c │ │ │ └── pawn_storage.c │ │ ├── street1.c │ │ ├── street10.c │ │ ├── street11.c │ │ ├── street12.c │ │ ├── street13.c │ │ ├── street14.c │ │ ├── street2.c │ │ ├── street3.c │ │ ├── street4.c │ │ ├── street5.c │ │ ├── street6.c │ │ ├── street7.c │ │ ├── street8.c │ │ ├── street9.c │ │ ├── tchall2.defunct │ │ ├── tcyard.defunct │ │ ├── thiefyard.c │ │ ├── trainer.c │ │ ├── weaponshop.c │ │ └── weaponyard.c │ ├── seneca1.c │ ├── seneca2.c │ ├── seneca3.c │ ├── seneca4.c │ ├── seneca7.c │ ├── seneca8.c │ ├── senund │ │ ├── areadefs.h │ │ ├── mon │ │ │ ├── assassin.c │ │ │ ├── assassin2.c │ │ │ ├── assassinfight.c │ │ │ ├── assassinmage.c │ │ │ ├── assassinrang.c │ │ │ ├── elseroad.c │ │ │ ├── gambrill.c │ │ │ ├── geilfuss.c │ │ │ └── priest.c │ │ ├── obj │ │ │ ├── blackcape.c │ │ │ ├── darkrobe.c │ │ │ ├── emdagger.c │ │ │ ├── gate_key.c │ │ │ ├── kinmask.c │ │ │ ├── magebane.c │ │ │ ├── old_key.c │ │ │ ├── riftund.c │ │ │ └── rubysword.c │ │ ├── roommain.c │ │ └── rooms │ │ │ ├── beach19.c │ │ │ ├── clericroom.c │ │ │ ├── entrance.c │ │ │ ├── magelab.c │ │ │ ├── portalroom.c │ │ │ ├── rm1.c │ │ │ ├── rm10.c │ │ │ ├── rm11.c │ │ │ ├── rm12.c │ │ │ ├── rm13.c │ │ │ ├── rm14.c │ │ │ ├── rm15.c │ │ │ ├── rm16.c │ │ │ ├── rm17.c │ │ │ ├── rm18.c │ │ │ ├── rm19.c │ │ │ ├── rm2.c │ │ │ ├── rm20.c │ │ │ ├── rm21.c │ │ │ ├── rm22.c │ │ │ ├── rm23.c │ │ │ ├── rm24.c │ │ │ ├── rm25.c │ │ │ ├── rm26.c │ │ │ ├── rm27.c │ │ │ ├── rm28.c │ │ │ ├── rm29.c │ │ │ ├── rm3.c │ │ │ ├── rm30.c │ │ │ ├── rm31.c │ │ │ ├── rm32.c │ │ │ ├── rm33.c │ │ │ ├── rm34.c │ │ │ ├── rm35.c │ │ │ ├── rm4.c │ │ │ ├── rm5.c │ │ │ ├── rm6.c │ │ │ ├── rm7.c │ │ │ ├── rm8.c │ │ │ ├── rm9.c │ │ │ ├── senbeach2.c │ │ │ ├── senbeach3.c │ │ │ ├── senbeach4.c │ │ │ └── throne.c │ ├── spec │ │ ├── atemple.c │ │ ├── attaya_cd.c │ │ ├── cliff.c │ │ ├── cliff2.c │ │ ├── ledge.c │ │ ├── ledge2.c │ │ └── ledge3.c │ ├── statue.c │ ├── statue2.c │ ├── story.c │ ├── tmp │ │ ├── jun1.c │ │ ├── jun10.c │ │ ├── jun100.c │ │ ├── jun101.c │ │ ├── jun102.c │ │ ├── jun103.c │ │ ├── jun11.c │ │ ├── jun12.c │ │ ├── jun13.c │ │ ├── jun14.c │ │ ├── jun15.c │ │ ├── jun16.c │ │ ├── jun17.c │ │ ├── jun18.c │ │ ├── jun19.c │ │ ├── jun2.c │ │ ├── jun20.c │ │ ├── jun21.c │ │ ├── jun22.c │ │ ├── jun23.c │ │ ├── jun24.c │ │ ├── jun25.c │ │ ├── jun26.c │ │ ├── jun27.c │ │ ├── jun28.c │ │ ├── jun29.c │ │ ├── jun3.c │ │ ├── jun30.c │ │ ├── jun31.c │ │ ├── jun31a.c │ │ ├── jun32.c │ │ ├── jun33.c │ │ ├── jun34.c │ │ ├── jun35.c │ │ ├── jun36.c │ │ ├── jun37.c │ │ ├── jun38.c │ │ ├── jun39.c │ │ ├── jun4.c │ │ ├── jun40.c │ │ ├── jun41.c │ │ ├── jun42.c │ │ ├── jun43.c │ │ ├── jun44.c │ │ ├── jun45.c │ │ ├── jun46.c │ │ ├── jun47.c │ │ ├── jun48.c │ │ ├── jun49.c │ │ ├── jun5.c │ │ ├── jun50.c │ │ ├── jun51.c │ │ ├── jun52.c │ │ ├── jun53.c │ │ ├── jun54.c │ │ ├── jun55.c │ │ ├── jun56.c │ │ ├── jun57.c │ │ ├── jun58.c │ │ ├── jun59.c │ │ ├── jun6.c │ │ ├── jun60.c │ │ ├── jun61.c │ │ ├── jun62.c │ │ ├── jun63.c │ │ ├── jun64.c │ │ ├── jun65.c │ │ ├── jun66.c │ │ ├── jun67.c │ │ ├── jun68.c │ │ ├── jun69.c │ │ ├── jun7.c │ │ ├── jun70.c │ │ ├── jun71.c │ │ ├── jun72.c │ │ ├── jun73.c │ │ ├── jun74.c │ │ ├── jun75.c │ │ ├── jun76.c │ │ ├── jun77.c │ │ ├── jun78.c │ │ ├── jun79.c │ │ ├── jun8.c │ │ ├── jun80.c │ │ ├── jun81.c │ │ ├── jun82.c │ │ ├── jun83.c │ │ ├── jun84.c │ │ ├── jun85.c │ │ ├── jun86.c │ │ ├── jun87.c │ │ ├── jun88.c │ │ ├── jun89.c │ │ ├── jun9.c │ │ ├── jun90.c │ │ ├── jun91.c │ │ ├── jun92.c │ │ ├── jun93.c │ │ ├── jun94.c │ │ ├── jun95.c │ │ ├── jun96.c │ │ ├── jun97.c │ │ ├── jun98.c │ │ └── jun99.c │ ├── tomb1.c │ ├── tower │ │ ├── cbattle.c │ │ ├── doom1.c │ │ ├── doom2.c │ │ ├── doom3.c │ │ ├── doom4.c │ │ ├── dungeon.c │ │ ├── floor1.c │ │ ├── floor10.c │ │ ├── floor11.c │ │ ├── floor12.c │ │ ├── floor13.c │ │ ├── floor14.c │ │ ├── floor15.c │ │ ├── floor16.c │ │ ├── floor17.c │ │ ├── floor18.c │ │ ├── floor19.c │ │ ├── floor1a.c │ │ ├── floor2.c │ │ ├── floor20.c │ │ ├── floor22.c │ │ ├── floor23.c │ │ ├── floor24.c │ │ ├── floor25.c │ │ ├── floor26.c │ │ ├── floor27.c │ │ ├── floor3.c │ │ ├── floor4.c │ │ ├── floor5.c │ │ ├── floor6.c │ │ ├── floor7.c │ │ ├── floor8.c │ │ ├── floor9.c │ │ ├── hall1.c │ │ ├── hall10.c │ │ ├── hall11.c │ │ ├── hall12.c │ │ ├── hall13.c │ │ ├── hall14.c │ │ ├── hall15.c │ │ ├── hall16.c │ │ ├── hall17.c │ │ ├── hall18.c │ │ ├── hall19.c │ │ ├── hall2.c │ │ ├── hall20.c │ │ ├── hall21.c │ │ ├── hall22.c │ │ ├── hall23.c │ │ ├── hall24.c │ │ ├── hall25.c │ │ ├── hall26.c │ │ ├── hall27.c │ │ ├── hall28.c │ │ ├── hall29.c │ │ ├── hall2a.c │ │ ├── hall3.c │ │ ├── hall30.c │ │ ├── hall31.c │ │ ├── hall32.c │ │ ├── hall33.c │ │ ├── hall34.c │ │ ├── hall35.c │ │ ├── hall36.c │ │ ├── hall37.c │ │ ├── hall38.c │ │ ├── hall39.c │ │ ├── hall4.c │ │ ├── hall40.c │ │ ├── hall5.c │ │ ├── hall6.c │ │ ├── hall7.c │ │ ├── hall8.c │ │ ├── hall9.c │ │ ├── hallb1.c │ │ ├── hallb10.c │ │ ├── hallb11.c │ │ ├── hallb12.c │ │ ├── hallb13.c │ │ ├── hallb14.c │ │ ├── hallb15.c │ │ ├── hallb16.c │ │ ├── hallb17.c │ │ ├── hallb18.c │ │ ├── hallb2.c │ │ ├── hallb3.c │ │ ├── hallb4.c │ │ ├── hallb5.c │ │ ├── hallb6.c │ │ ├── hallb7.c │ │ ├── hallb8.c │ │ ├── hallb9.c │ │ ├── hallc11.c │ │ ├── hallc12.c │ │ ├── hallc13.c │ │ ├── hallc14.c │ │ ├── hallc6.c │ │ ├── hallroof.c │ │ ├── intruderhall.c │ │ ├── inverse.c │ │ ├── link.c │ │ ├── obj │ │ │ ├── bench.c │ │ │ ├── pylon.c │ │ │ └── waterstatue.c │ │ ├── old │ │ │ ├── cbattle.c │ │ │ ├── doom1.c │ │ │ ├── doom2.c │ │ │ ├── doom3.c │ │ │ ├── doom4.c │ │ │ ├── dungeon.c │ │ │ ├── floor1.c │ │ │ ├── floor10.c │ │ │ ├── floor11.c │ │ │ ├── floor12.c │ │ │ ├── floor13.c │ │ │ ├── floor14.c │ │ │ ├── floor15.c │ │ │ ├── floor16.c │ │ │ ├── floor17.c │ │ │ ├── floor18.c │ │ │ ├── floor19.c │ │ │ ├── floor1a.c │ │ │ ├── floor2.c │ │ │ ├── floor20.c │ │ │ ├── floor22.c │ │ │ ├── floor23.c │ │ │ ├── floor24.c │ │ │ ├── floor25.c │ │ │ ├── floor26.c │ │ │ ├── floor27.c │ │ │ ├── floor3.c │ │ │ ├── floor4.c │ │ │ ├── floor5.c │ │ │ ├── floor6.c │ │ │ ├── floor7.c │ │ │ ├── floor8.c │ │ │ ├── floor9.c │ │ │ ├── hall1.c │ │ │ ├── hall10.c │ │ │ ├── hall11.c │ │ │ ├── hall12.c │ │ │ ├── hall13.c │ │ │ ├── hall14.c │ │ │ ├── hall15.c │ │ │ ├── hall16.c │ │ │ ├── hall17.c │ │ │ ├── hall18.c │ │ │ ├── hall19.c │ │ │ ├── hall2.c │ │ │ ├── hall20.c │ │ │ ├── hall21.c │ │ │ ├── hall22.c │ │ │ ├── hall23.c │ │ │ ├── hall24.c │ │ │ ├── hall25.c │ │ │ ├── hall26.c │ │ │ ├── hall27.c │ │ │ ├── hall28.c │ │ │ ├── hall29.c │ │ │ ├── hall2a.c │ │ │ ├── hall3.c │ │ │ ├── hall30.c │ │ │ ├── hall31.c │ │ │ ├── hall32.c │ │ │ ├── hall33.c │ │ │ ├── hall34.c │ │ │ ├── hall35.c │ │ │ ├── hall36.c │ │ │ ├── hall37.c │ │ │ ├── hall38.c │ │ │ ├── hall39.c │ │ │ ├── hall4.c │ │ │ ├── hall40.c │ │ │ ├── hall5.c │ │ │ ├── hall6.c │ │ │ ├── hall7.c │ │ │ ├── hall8.c │ │ │ ├── hall9.c │ │ │ ├── hallb1.c │ │ │ ├── hallb10.c │ │ │ ├── hallb11.c │ │ │ ├── hallb12.c │ │ │ ├── hallb13.c │ │ │ ├── hallb14.c │ │ │ ├── hallb15.c │ │ │ ├── hallb16.c │ │ │ ├── hallb17.c │ │ │ ├── hallb18.c │ │ │ ├── hallb2.c │ │ │ ├── hallb3.c │ │ │ ├── hallb4.c │ │ │ ├── hallb5.c │ │ │ ├── hallb6.c │ │ │ ├── hallb7.c │ │ │ ├── hallb8.c │ │ │ ├── hallb9.c │ │ │ ├── hallc11.c │ │ │ ├── hallc12.c │ │ │ ├── hallc13.c │ │ │ ├── hallc14.c │ │ │ ├── hallc6.c │ │ │ ├── hallroof.c │ │ │ ├── intruderhall.c │ │ │ ├── inverse.c │ │ │ ├── link.c │ │ │ ├── obj │ │ │ │ ├── bench.c │ │ │ │ ├── pylon.c │ │ │ │ └── waterstatue.c │ │ │ ├── spec │ │ │ │ └── tower.c │ │ │ ├── staircase.c │ │ │ ├── staircase1.c │ │ │ ├── tower1.c │ │ │ ├── tower10.c │ │ │ ├── tower11.c │ │ │ ├── tower12.c │ │ │ ├── tower13.c │ │ │ ├── tower14.c │ │ │ ├── tower15.c │ │ │ ├── tower16.c │ │ │ ├── tower17.c │ │ │ ├── tower18.c │ │ │ ├── tower19.c │ │ │ ├── tower2.c │ │ │ ├── tower20.c │ │ │ ├── tower21.c │ │ │ ├── tower22.c │ │ │ ├── tower23.c │ │ │ ├── tower24.c │ │ │ ├── tower25.c │ │ │ ├── tower26.c │ │ │ ├── tower27.c │ │ │ ├── tower28.c │ │ │ ├── tower29.c │ │ │ ├── tower3.c │ │ │ ├── tower30.c │ │ │ ├── tower31.c │ │ │ ├── tower32.c │ │ │ ├── tower33.c │ │ │ ├── tower34.c │ │ │ ├── tower35.c │ │ │ ├── tower36.c │ │ │ ├── tower37.c │ │ │ ├── tower38.c │ │ │ ├── tower39.c │ │ │ ├── tower4.c │ │ │ ├── tower40.c │ │ │ ├── tower41.c │ │ │ ├── tower42.c │ │ │ ├── tower43.c │ │ │ ├── tower44.c │ │ │ ├── tower45.c │ │ │ ├── tower46.c │ │ │ ├── tower47.c │ │ │ ├── tower48.c │ │ │ ├── tower49.c │ │ │ ├── tower5.c │ │ │ ├── tower50.c │ │ │ ├── tower51.c │ │ │ ├── tower52.c │ │ │ ├── tower53.c │ │ │ ├── tower54.c │ │ │ ├── tower55.c │ │ │ ├── tower56.c │ │ │ ├── tower57.c │ │ │ ├── tower58.c │ │ │ ├── tower59.c │ │ │ ├── tower6.c │ │ │ ├── tower60.c │ │ │ ├── tower61.c │ │ │ ├── tower62.c │ │ │ ├── tower63.c │ │ │ ├── tower64.c │ │ │ ├── tower65.c │ │ │ ├── tower66.c │ │ │ ├── tower67.c │ │ │ ├── tower68.c │ │ │ ├── tower69.c │ │ │ ├── tower7.c │ │ │ ├── tower70.c │ │ │ ├── tower71.c │ │ │ ├── tower73.c │ │ │ ├── tower8.c │ │ │ ├── tower9.c │ │ │ ├── treasure.c │ │ │ └── water.c │ │ ├── spec │ │ │ └── tower.c │ │ ├── staircase.c │ │ ├── staircase1.c │ │ ├── tower1.c │ │ ├── tower10.c │ │ ├── tower11.c │ │ ├── tower12.c │ │ ├── tower13.c │ │ ├── tower14.c │ │ ├── tower15.c │ │ ├── tower16.c │ │ ├── tower17.c │ │ ├── tower18.c │ │ ├── tower19.c │ │ ├── tower2.c │ │ ├── tower20.c │ │ ├── tower21.c │ │ ├── tower22.c │ │ ├── tower23.c │ │ ├── tower24.c │ │ ├── tower25.c │ │ ├── tower26.c │ │ ├── tower27.c │ │ ├── tower28.c │ │ ├── tower29.c │ │ ├── tower3.c │ │ ├── tower30.c │ │ ├── tower31.c │ │ ├── tower32.c │ │ ├── tower33.c │ │ ├── tower34.c │ │ ├── tower35.c │ │ ├── tower36.c │ │ ├── tower37.c │ │ ├── tower38.c │ │ ├── tower39.c │ │ ├── tower4.c │ │ ├── tower40.c │ │ ├── tower41.c │ │ ├── tower42.c │ │ ├── tower43.c │ │ ├── tower44.c │ │ ├── tower45.c │ │ ├── tower46.c │ │ ├── tower47.c │ │ ├── tower48.c │ │ ├── tower49.c │ │ ├── tower5.c │ │ ├── tower50.c │ │ ├── tower51.c │ │ ├── tower52.c │ │ ├── tower53.c │ │ ├── tower54.c │ │ ├── tower55.c │ │ ├── tower56.c │ │ ├── tower57.c │ │ ├── tower58.c │ │ ├── tower59.c │ │ ├── tower6.c │ │ ├── tower60.c │ │ ├── tower61.c │ │ ├── tower62.c │ │ ├── tower63.c │ │ ├── tower64.c │ │ ├── tower65.c │ │ ├── tower66.c │ │ ├── tower67.c │ │ ├── tower68.c │ │ ├── tower69.c │ │ ├── tower7.c │ │ ├── tower70.c │ │ ├── tower71.c │ │ ├── tower73.c │ │ ├── tower8.c │ │ ├── tower9.c │ │ ├── treasure.c │ │ └── water.c │ └── tunnels │ │ ├── mons │ │ ├── barbazu.c │ │ ├── book.c │ │ ├── devilhound.c │ │ ├── devilkin.c │ │ ├── jerax.c │ │ ├── lower_resist_mob.c │ │ ├── pitfiend.c │ │ ├── rockdevil.c │ │ └── tunnelworm.c │ │ ├── obj │ │ ├── bane_chess.c │ │ ├── barb_corpse.c │ │ ├── bracelets_o_c.c │ │ ├── circlet_of_c.c │ │ ├── devil_mark.c │ │ ├── devil_pants.c │ │ ├── drow_note.c │ │ ├── firepit.c │ │ ├── firewhip.c │ │ ├── gem.c │ │ ├── hellgate.c │ │ ├── hobnail_boots.c │ │ ├── magestaff.c │ │ ├── magicmouth.c │ │ ├── page.c │ │ ├── phylactery.c │ │ ├── pit1.c │ │ ├── r_treasure.c │ │ ├── r_wand.c │ │ ├── satchel.c │ │ ├── scythe_of_gathering.c │ │ ├── serrated_glaive.c │ │ ├── spiked_banded.c │ │ └── statue.c │ │ ├── rooms │ │ ├── alcove.c │ │ ├── barracks.c │ │ ├── cell.c │ │ ├── d_cauldron.c │ │ ├── deadend.c │ │ ├── deadend2.c │ │ ├── lair.c │ │ ├── library.c │ │ ├── mouthroom.c │ │ ├── office.c │ │ ├── passroom.c │ │ ├── passwords.h │ │ ├── pit1.c │ │ ├── stefano_entry.c │ │ ├── summoning.c │ │ ├── treasury.c │ │ ├── tumble.c │ │ ├── tun.c │ │ ├── tun01.c │ │ ├── tun02.c │ │ ├── tun03.c │ │ ├── tun04.c │ │ ├── tun05.c │ │ ├── tun06.c │ │ ├── tun07.c │ │ ├── tun08.c │ │ ├── tun09.c │ │ ├── tun10.c │ │ ├── tun11.c │ │ ├── tun12.c │ │ ├── tun13.c │ │ ├── tun14.c │ │ ├── tun15.c │ │ ├── tun16.c │ │ ├── tun17.c │ │ ├── tun18.c │ │ ├── tun19.c │ │ ├── tun20.c │ │ ├── tun21.c │ │ ├── tun_entry.c │ │ ├── tunhound.c │ │ ├── tunmon.c │ │ ├── ugstream.c │ │ └── wormhole.c │ │ └── tunnel.h ├── av_rooms │ ├── anhur │ │ ├── Lab.c │ │ ├── ruined_base.c │ │ └── ruined_base2.c │ ├── ares │ │ ├── test.c │ │ ├── test2.c │ │ ├── test3.c │ │ ├── tester.c │ │ └── testroom3.c │ ├── asmodeus │ │ ├── %^GREEN%^Forgotten_tomb%^RESET%^.c │ │ ├── Devilhall.c │ │ ├── a_tomb1.c │ │ ├── a_tomb2.c │ │ ├── a_tomb3.c │ │ ├── a_tomb4.c │ │ ├── a_tomb5.c │ │ ├── a_tomb6.c │ │ ├── lastroom.c │ │ ├── limbo.c │ │ ├── portalroom.c │ │ └── torturechamber.c │ ├── auril │ │ ├── battleforest01.c │ │ ├── battleforest02.c │ │ ├── battleforest03.c │ │ ├── battleforest04.c │ │ ├── battleforest05.c │ │ ├── battleforest06.c │ │ ├── battleforest07.c │ │ ├── battleforest08.c │ │ ├── battleforest09.c │ │ ├── battleforest10.c │ │ ├── battleforest11.c │ │ ├── battleforest12.c │ │ ├── battleforest13.c │ │ ├── battleforest14.c │ │ ├── battleforest15.c │ │ ├── battleforest16.c │ │ ├── battleforest17.c │ │ ├── battleforest18.c │ │ ├── battleforest19.c │ │ ├── battleforest20.c │ │ ├── battleforest21.c │ │ ├── battleforest22.c │ │ ├── battleforest23.c │ │ ├── battleforest24.c │ │ ├── battleforest25.c │ │ ├── cave01.c │ │ ├── cave02.c │ │ ├── cave03.c │ │ ├── cave04.c │ │ ├── drowplace01.c │ │ └── path01.c │ ├── beshaba │ │ ├── DT_Cavern1.c │ │ ├── DT_CavernChamber.c │ │ └── beshaba_lair.c │ ├── bhaal │ │ ├── Throne_of_Blood.c │ │ └── Throne_of_Blood2.c │ ├── brandobaris │ │ ├── ankheg1.c │ │ ├── ankheg2.c │ │ ├── ankheg3.c │ │ ├── ankheg4.c │ │ ├── ankheg5.c │ │ ├── ankheg6.c │ │ ├── arcanevault.c │ │ ├── ballroom.c │ │ ├── brandospeakeasy.c │ │ ├── cavecache.c │ │ ├── druidgrove.c │ │ ├── efrt_antechamber.c │ │ ├── efrt_cell.c │ │ ├── efrt_council.c │ │ ├── efrt_courtyard.c │ │ ├── efrt_dungeon.c │ │ ├── efrt_entrance.c │ │ ├── efrt_hall.c │ │ ├── efrt_walls.c │ │ ├── mentaloffice.c │ │ ├── noblehouse1.c │ │ ├── noblehouse2.c │ │ ├── noblehouse3.c │ │ ├── oldcrypt.c │ │ ├── oldwarehouse.c │ │ ├── psiarena.c │ │ ├── shadowplane.c │ │ └── speakeasyback.c │ ├── cyric │ │ └── DesertPit.c │ ├── hlal │ │ ├── faircamp1.c │ │ ├── faircamp2.c │ │ ├── faircamp3.c │ │ ├── faircamp4.c │ │ ├── inspiration_station.c │ │ ├── inspirationstation_1.c │ │ ├── lotus1.c │ │ ├── lotus2.c │ │ ├── paint_r1.c │ │ ├── paint_r2.c │ │ ├── paint_r3.c │ │ ├── paint_r4.c │ │ ├── paint_r5.c │ │ └── paint_r6.c │ ├── lurue │ │ ├── arena_01.c │ │ ├── arena_02.c │ │ ├── arena_03.c │ │ ├── arena_04.c │ │ ├── arena_05.c │ │ ├── arena_06.c │ │ ├── arena_07.c │ │ ├── arena_08.c │ │ ├── arena_09.c │ │ ├── attaya_01.c │ │ ├── attaya_02.c │ │ ├── attaya_03.c │ │ ├── attaya_04.c │ │ ├── attaya_05.c │ │ ├── attaya_10.c │ │ ├── attaya_11.c │ │ ├── attaya_12.c │ │ ├── attaya_13.c │ │ ├── attaya_14.c │ │ ├── attendant.c │ │ ├── cell_cell.c │ │ ├── cell_discuss.c │ │ ├── cell_exit.c │ │ ├── cell_hall.c │ │ ├── dekumage_b1.c │ │ ├── dekumage_b10.c │ │ ├── dekumage_b2.c │ │ ├── dekumage_b3.c │ │ ├── dekumage_b4.c │ │ ├── dekumage_b5.c │ │ ├── dekumage_b6.c │ │ ├── dekumage_b7.c │ │ ├── dekumage_b8.c │ │ ├── dekumage_b9.c │ │ ├── dekumage_g1.c │ │ ├── dekumage_g2.c │ │ ├── dekumage_g3.c │ │ ├── dekumage_g4.c │ │ ├── dekumage_g5.c │ │ ├── dekumage_g6.c │ │ ├── dekumage_g7.c │ │ ├── dekumage_m1.c │ │ ├── dekumage_m2.c │ │ ├── dekumage_m3.c │ │ ├── dekumage_m4.c │ │ ├── dekumage_m5.c │ │ ├── dekumage_m6.c │ │ ├── dekumage_m7.c │ │ ├── dekumage_p1.c │ │ ├── dekumage_s1.c │ │ ├── dekumage_s2.c │ │ ├── dekumage_s3.c │ │ ├── dekumage_t0.c │ │ ├── dekumage_t1.c │ │ ├── dekumage_t10.c │ │ ├── dekumage_t11.c │ │ ├── dekumage_t12.c │ │ ├── dekumage_t13.c │ │ ├── dekumage_t14.c │ │ ├── dekumage_t15.c │ │ ├── dekumage_t2.c │ │ ├── dekumage_t3.c │ │ ├── dekumage_t4.c │ │ ├── dekumage_t5.c │ │ ├── dekumage_t6.c │ │ ├── dekumage_t7.c │ │ ├── dekumage_t8.c │ │ ├── dekumage_t9.c │ │ ├── dekumage_u1.c │ │ ├── dekumage_u2.c │ │ ├── dekumage_u3.c │ │ ├── dekumage_w1.c │ │ ├── dekumage_w10.c │ │ ├── dekumage_w2.c │ │ ├── dekumage_w3.c │ │ ├── dekumage_w4.c │ │ ├── dekumage_w5.c │ │ ├── dekumage_w6.c │ │ ├── dekumage_w7.c │ │ ├── dekumage_w8.c │ │ ├── dekumage_w9.c │ │ ├── dk4.c │ │ ├── frozen.c │ │ ├── hub_01.c │ │ ├── hub_02.c │ │ ├── hub_03.c │ │ ├── hub_04.c │ │ ├── hub_05.c │ │ ├── hub_06.c │ │ ├── iceroom.c │ │ ├── kelpmaze_x1.c │ │ ├── klauth_P6.c │ │ ├── klauth_b1.c │ │ ├── klauth_b2.c │ │ ├── klauth_m1.c │ │ ├── klauth_m2.c │ │ ├── klauth_m3.c │ │ ├── klauth_m4.c │ │ ├── klauth_m5.c │ │ ├── klauth_m6.c │ │ ├── klauth_p1.c │ │ ├── klauth_p2.c │ │ ├── klauth_p3.c │ │ ├── klauth_p4.c │ │ ├── klauth_p5.c │ │ ├── lich_01.c │ │ ├── lich_02.c │ │ ├── lich_03.c │ │ ├── loki1.c │ │ ├── loki2.c │ │ ├── masq │ │ │ ├── sign.c │ │ │ ├── stage.c │ │ │ ├── stage2.c │ │ │ ├── stagelistenerm2.c │ │ │ └── stagelistenerm4.c │ │ ├── masq_m1.c │ │ ├── masq_m2.c │ │ ├── masq_m3.c │ │ ├── masq_m4.c │ │ ├── masq_m5.c │ │ ├── masq_t1.c │ │ ├── masq_t2.c │ │ ├── masq_t3.c │ │ ├── masq_t30.c │ │ ├── masq_t31.c │ │ ├── masq_t32.c │ │ ├── masq_t33.c │ │ ├── masq_t34.c │ │ ├── masq_t35.c │ │ ├── masq_t36.c │ │ ├── masq_t37.c │ │ ├── masq_t38.c │ │ ├── masq_t39.c │ │ ├── masq_t3a.c │ │ ├── masq_t3b.c │ │ ├── masq_t3c.c │ │ ├── masq_t4.c │ │ ├── masq_t40.c │ │ ├── masq_t41.c │ │ ├── masq_t42.c │ │ ├── masq_t43.c │ │ ├── masq_t44.c │ │ ├── masq_t45.c │ │ ├── masq_t46.c │ │ ├── masq_t47.c │ │ ├── masq_t48.c │ │ ├── masq_t49.c │ │ ├── masq_t4a.c │ │ ├── masq_t4b.c │ │ ├── masq_t4c.c │ │ ├── masq_t5.c │ │ ├── masq_t50.c │ │ ├── masq_t51.c │ │ ├── masq_t52.c │ │ ├── masq_t53.c │ │ ├── masq_t54.c │ │ ├── masq_t55.c │ │ ├── masq_t56.c │ │ ├── masq_t57.c │ │ ├── masq_t58.c │ │ ├── masq_t59.c │ │ ├── masq_t5a.c │ │ ├── masq_t5b.c │ │ ├── masq_t5c.c │ │ ├── masq_t6.c │ │ ├── masq_t60.c │ │ ├── masq_t61.c │ │ ├── masq_t62.c │ │ ├── masq_t63.c │ │ ├── masq_t64.c │ │ ├── masq_t65.c │ │ ├── masq_t66.c │ │ ├── masq_t67.c │ │ ├── masq_t68.c │ │ ├── masq_t69.c │ │ ├── masq_t6a.c │ │ ├── masq_t6b.c │ │ ├── masq_t6c.c │ │ ├── maze_a1.c │ │ ├── maze_a2.c │ │ ├── maze_a3.c │ │ ├── maze_bj.c │ │ ├── maze_bk.c │ │ ├── maze_bl.c │ │ ├── maze_bm.c │ │ ├── maze_c5.c │ │ ├── maze_c6.c │ │ ├── maze_c7.c │ │ ├── maze_c8.c │ │ ├── maze_da.c │ │ ├── maze_db.c │ │ ├── maze_dc.c │ │ ├── maze_in.c │ │ ├── maze_out.c │ │ ├── orogcave_a1.c │ │ ├── orogcave_a2.c │ │ ├── orogcave_b1.c │ │ ├── orogcave_b2.c │ │ ├── orogcave_b3.c │ │ ├── orogcave_g1.c │ │ ├── orogcave_h1.c │ │ ├── orogcave_h2.c │ │ ├── orogcave_h3.c │ │ ├── orogcave_h4.c │ │ ├── orogcave_h5.c │ │ ├── orogcave_h6.c │ │ ├── orogcave_h7.c │ │ ├── orogcave_h8.c │ │ ├── orogcave_h9.c │ │ ├── orogcave_r1.c │ │ ├── orogcave_r2.c │ │ ├── orogcave_r3.c │ │ ├── orogcave_r4.c │ │ ├── orogcave_r5.c │ │ ├── orogcave_r6.c │ │ ├── orogcave_r7.c │ │ ├── orogcave_r8.c │ │ ├── orogcave_s1.c │ │ ├── parmt_m1.c │ │ ├── parmt_m2.c │ │ ├── parmt_m3.c │ │ ├── parmt_m4.c │ │ ├── parmt_p1.c │ │ ├── parmt_p2.c │ │ ├── parmt_r1.c │ │ ├── parmt_r2.c │ │ ├── parmt_r3.c │ │ ├── parmt_r4.c │ │ ├── parmt_r5.c │ │ ├── parmt_r6.c │ │ ├── parmt_r7.c │ │ ├── parmt_r8.c │ │ ├── parmt_w1.c │ │ ├── schooner_a2.c │ │ ├── schooner_a3.c │ │ ├── schooner_b1.c │ │ ├── schooner_b2.c │ │ ├── schooner_m1.c │ │ ├── schooner_m10.c │ │ ├── schooner_m2.c │ │ ├── schooner_m3.c │ │ ├── schooner_m4.c │ │ ├── schooner_m5.c │ │ ├── schooner_m6.c │ │ ├── schooner_m7.c │ │ ├── schooner_m8.c │ │ ├── schooner_m9.c │ │ ├── schooner_s4.c │ │ ├── schooner_s5.c │ │ ├── schooner_s6.c │ │ ├── seawreck_b1.c │ │ ├── seawreck_b2.c │ │ ├── seawreck_c1.c │ │ ├── seawreck_c10.c │ │ ├── seawreck_c2.c │ │ ├── seawreck_c3.c │ │ ├── seawreck_c4.c │ │ ├── seawreck_c5.c │ │ ├── seawreck_c6.c │ │ ├── seawreck_c7.c │ │ ├── seawreck_c8.c │ │ ├── seawreck_c9.c │ │ ├── seawreck_d3.c │ │ ├── seawreck_d4.c │ │ ├── seawreck_d5.c │ │ ├── seawreck_d6.c │ │ ├── seawreck_d7.c │ │ ├── seawreck_d8.c │ │ ├── seawreck_d9.c │ │ ├── seawreck_s1.c │ │ ├── seawreck_s2.c │ │ ├── seawreck_s3.c │ │ ├── seawreck_s4.c │ │ ├── seawreck_u1.c │ │ ├── seawreck_u2.c │ │ ├── seawreck_u3.c │ │ ├── seawreck_u4.c │ │ ├── seawreck_u5.c │ │ ├── seawreck_u6.c │ │ ├── seawreck_u7.c │ │ ├── selune_meadow.c │ │ ├── selune_under1.c │ │ ├── selune_under2.c │ │ ├── selune_under3.c │ │ ├── selune_under4.c │ │ ├── selune_under5.c │ │ ├── selune_under6.c │ │ ├── selune_under7.c │ │ ├── senbeach_01.c │ │ ├── senbeach_02.c │ │ ├── senbeach_03.c │ │ ├── senbeach_04.c │ │ ├── senbeach_05.c │ │ ├── senbeach_06.c │ │ ├── senbeach_07.c │ │ ├── shore1.c │ │ ├── shore2.c │ │ ├── shore3.c │ │ ├── sky.c │ │ ├── smitheri.c │ │ ├── sunetemple_01.c │ │ ├── sunetemple_02.c │ │ ├── sunetemple_03.c │ │ ├── sunetemple_04.c │ │ ├── sunetemple_05.c │ │ ├── sunetemple_06.c │ │ ├── sunetemple_07.c │ │ ├── sunetemple_08.c │ │ ├── sunetemple_09.c │ │ ├── sunetemple_10.c │ │ ├── sunetemple_11.c │ │ ├── tecqumin_01.c │ │ ├── tecqumin_02.c │ │ ├── tecqumin_03.c │ │ ├── tecqumin_04.c │ │ ├── tecqumin_05.c │ │ ├── tecqumin_05a.c │ │ ├── tecqumin_05b.c │ │ ├── test.c │ │ ├── test_1.c │ │ ├── test_2.c │ │ ├── ts_01.c │ │ ├── ts_02.c │ │ ├── ts_03.c │ │ ├── ts_04.c │ │ ├── ts_05.c │ │ ├── uzodo_c1.c │ │ ├── uzodo_d1.c │ │ ├── uzodo_d2.c │ │ ├── uzodo_h1.c │ │ ├── uzodo_p1.c │ │ ├── uzodo_p2.c │ │ ├── uzodo_v1.c │ │ ├── uzodo_v2.c │ │ ├── wagon_1.c │ │ ├── wagon_2.c │ │ ├── wagon_3.c │ │ ├── wagon_4.c │ │ ├── wagon_5.c │ │ └── zoo_01.c │ ├── lurue_tharis1.c │ ├── lurue_tharis2.c │ ├── mystra │ │ ├── apple1.c │ │ ├── apple2.c │ │ ├── apple3.c │ │ ├── apple4.c │ │ ├── apple5.c │ │ ├── boore1.c │ │ ├── boore2.c │ │ ├── boore3.c │ │ ├── boore4.c │ │ ├── boore5.c │ │ ├── castle1.c │ │ ├── castle2.c │ │ ├── castle3.c │ │ ├── castle4.c │ │ ├── castle5.c │ │ ├── castle6.c │ │ ├── gallows1.c │ │ ├── gallows2.c │ │ ├── gum1.c │ │ ├── gum2.c │ │ ├── gum3.c │ │ ├── gum4.c │ │ ├── gum5.c │ │ ├── gum6.c │ │ ├── hurse1.c │ │ ├── hurse2.c │ │ ├── hurse3.c │ │ ├── hurse4.c │ │ ├── hurse5.c │ │ ├── inn1.c │ │ ├── inn10.c │ │ ├── inn2.c │ │ ├── inn3.c │ │ ├── inn4.c │ │ ├── inn5.c │ │ ├── inn6.c │ │ ├── inn7.c │ │ ├── inn8.c │ │ ├── long1.c │ │ ├── long10.c │ │ ├── long11.c │ │ ├── long12.c │ │ ├── long13.c │ │ ├── long14.c │ │ ├── long15.c │ │ ├── long2.c │ │ ├── long3.c │ │ ├── long4.c │ │ ├── long5.c │ │ ├── long6.c │ │ ├── long7.c │ │ ├── long8.c │ │ ├── long9.c │ │ ├── morel1.c │ │ ├── morel2.c │ │ ├── morel3.c │ │ ├── morel4.c │ │ ├── morel5.c │ │ ├── short1.c │ │ ├── short2.c │ │ ├── short3.c │ │ ├── short4.c │ │ ├── short5.c │ │ ├── southgate.c │ │ ├── teel1.c │ │ ├── teel2.c │ │ ├── teel3.c │ │ ├── teel4.c │ │ ├── teel5.c │ │ ├── teel6.c │ │ ├── teel7.c │ │ ├── teel8.c │ │ ├── victory1.c │ │ ├── victory2.c │ │ ├── victory3.c │ │ ├── water1.c │ │ ├── water2.c │ │ ├── water3.c │ │ ├── water4.c │ │ └── workroom.c │ ├── tiamat │ │ ├── castle1.c │ │ ├── castle10.c │ │ ├── castle2.c │ │ ├── castle3.c │ │ ├── castle4.c │ │ ├── castle5.c │ │ ├── castle6.c │ │ ├── castle7.c │ │ ├── castle8.c │ │ ├── castle9.c │ │ ├── castletower1.c │ │ ├── castletower2.c │ │ ├── castletower3.c │ │ ├── castletower4.c │ │ ├── complex.c │ │ ├── coven.c │ │ ├── crater.c │ │ ├── dungeons.c │ │ ├── ginger1.c │ │ ├── ginger2.c │ │ ├── hut.c │ │ ├── ice.c │ │ ├── placeholder.c │ │ ├── ship1.c │ │ ├── ship2.c │ │ ├── ship3.c │ │ ├── ship4.c │ │ ├── ship5.c │ │ ├── ship6.c │ │ ├── ship7.c │ │ ├── shipA.c │ │ ├── stones.c │ │ ├── tiamatbasement1.c │ │ ├── tiamatbasement2.c │ │ ├── tiamatbasement3.c │ │ ├── tiamatbasement4.c │ │ ├── tiamatbasement5.c │ │ ├── tiamatbasement6.c │ │ ├── tiamatfloor1-1.c │ │ ├── tiamatfloor1-2.c │ │ ├── tiamatfloor1-3.c │ │ ├── tiamatfloor1-4.c │ │ ├── tiamatfloor1-5.c │ │ ├── tiamatfloor1-6.c │ │ ├── tiamatfloor1-7.c │ │ ├── tiamatfloor1-8.c │ │ ├── tiamatfloor2-1.c │ │ ├── tiamatfloor2-2.c │ │ ├── tiamatfloor2-3.c │ │ ├── tiamatfloor2-4.c │ │ ├── tiamatfloor2-5.c │ │ ├── tiamatfloor2-6.c │ │ ├── tiamatfloor2-7.c │ │ ├── tiamatfloor2-8.c │ │ ├── tiamatfloor2-9.c │ │ ├── tiamattowerA.c │ │ ├── tiamattowerB.c │ │ ├── tomb1.c │ │ ├── tomb2.c │ │ ├── tombroad.c │ │ ├── tombroad2.c │ │ ├── tower1.c │ │ ├── tower2.c │ │ ├── tower3.c │ │ ├── tower4.c │ │ ├── tower5.c │ │ ├── tower6.c │ │ ├── trial1.c │ │ ├── trial2.c │ │ ├── trial3.c │ │ ├── trial4.c │ │ ├── trial5.c │ │ ├── tunnel1.c │ │ ├── tunnel10.c │ │ ├── tunnel12.c │ │ ├── tunnel13.c │ │ ├── tunnel14.c │ │ ├── tunnel15.c │ │ ├── tunnel16.c │ │ ├── tunnel17.c │ │ ├── tunnel18.c │ │ ├── tunnel2.c │ │ ├── tunnel3.c │ │ ├── tunnel4.c │ │ ├── tunnel5.c │ │ ├── tunnel6.c │ │ ├── tunnel7.c │ │ ├── tunnel8.c │ │ ├── tunnel9.c │ │ ├── tunnelA.c │ │ └── tunnelB.c │ └── tiamatkeep.c ├── avatars │ ├── aaron │ │ ├── AncientsFail.c │ │ └── Tome.c │ ├── akadi │ │ ├── akablazer.c │ │ ├── akaboots.c │ │ ├── akadidress.c │ │ ├── anduran.c │ │ ├── ascloak.c │ │ ├── auppants.c │ │ ├── bbracers.c │ │ ├── blackrose.c │ │ ├── bleg.c │ │ ├── bltrench.c │ │ ├── bluenecklace.c │ │ ├── bluepants.c │ │ ├── blueshoes.c │ │ ├── ccrown.c │ │ ├── cork.c │ │ ├── elfhead.c │ │ ├── fcirclet.c │ │ ├── flute.c │ │ ├── gcirclet.c │ │ ├── generic.c │ │ ├── glassvial.c │ │ ├── hgloves.c │ │ ├── lchoker.c │ │ ├── lcirclet.c │ │ ├── ldress.c │ │ ├── lotus.c │ │ ├── lovgreaves.c │ │ ├── musicbracers.c │ │ ├── mymace.c │ │ ├── owlfeathers.c │ │ ├── paingiver.c │ │ ├── paingreaves.c │ │ ├── pbrace.c │ │ ├── redboots.c │ │ ├── rosecrown.c │ │ ├── stick.c │ │ ├── tcrown.c │ │ ├── testing.c │ │ ├── tormplate.c │ │ ├── ungreaves.c │ │ ├── vial.c │ │ ├── vines.c │ │ ├── wfcrown.c │ │ ├── wlgarter.c │ │ └── wyrobe.c │ ├── ares │ │ ├── herb_pouch_random.c │ │ ├── herb_pouch_random_epic.c │ │ ├── herb_pouch_random_high.c │ │ ├── herb_pouch_random_low.c │ │ ├── herb_pouch_random_mid.c │ │ ├── oil_of_burning.c │ │ ├── random_wand.c │ │ ├── ring_of_eternal_youth.c │ │ ├── testarmor.c │ │ └── wizard_oil.c │ ├── asmodeus │ │ ├── %^BOLD%^%^BLACK%^hood%^RESET%^.c │ │ ├── Edge.c │ │ ├── armor.c │ │ ├── battlescar2.c │ │ ├── desertstorm.c │ │ ├── gloves.c │ │ ├── hammer.c │ │ ├── melody.c │ │ ├── robes.c │ │ ├── saqira_bracers.c │ │ ├── scaledarmor.c │ │ ├── shry_plate.c │ │ ├── ssword.c │ │ ├── sword.c │ │ └── zathcloak.c │ ├── auppenser │ │ ├── auppenersrobe.c │ │ ├── auppenserdagger.c │ │ ├── auppenserrobe.c │ │ ├── auppenserscloak.c │ │ ├── auppensersdagger.c │ │ ├── bootsofenlightenment.c │ │ ├── genericgem.c │ │ ├── mithrilneedle.c │ │ ├── stonyheart.c │ │ ├── tattooingneedle.c │ │ ├── theinfant.c │ │ └── tormrobe.c │ ├── aurgloroasa │ │ ├── cyricskull.c │ │ └── lamp.c │ ├── auril │ │ ├── alocket.c │ │ ├── anvil.c │ │ ├── armor10.c │ │ ├── armor15.c │ │ ├── armor20.c │ │ ├── armor25.c │ │ ├── aurilhammer.c │ │ ├── b.c │ │ ├── baby.c │ │ ├── ball.c │ │ ├── blink.c │ │ ├── block.c │ │ ├── bod.c │ │ ├── bodies.c │ │ ├── candle.c │ │ ├── cball.c │ │ ├── chalice.c │ │ ├── corpsespile.c │ │ ├── csabre.c │ │ ├── csword.c │ │ ├── daedinblade.c │ │ ├── daedinblade2.c │ │ ├── daedinblade3.c │ │ ├── daelus.c │ │ ├── dboots.c │ │ ├── ddagger2.c │ │ ├── demclaw.c │ │ ├── disc.c │ │ ├── discstar.c │ │ ├── drhelm.c │ │ ├── drhelm2.c │ │ ├── fhammer.c │ │ ├── galarmor.c │ │ ├── garrotte.c │ │ ├── gaxe.c │ │ ├── gclaw.c │ │ ├── gcutlass.c │ │ ├── gdblade.c │ │ ├── gem.c │ │ ├── giraxe.c │ │ ├── girl.c │ │ ├── glow.c │ │ ├── gsash.c │ │ ├── gstr.c │ │ ├── head.c │ │ ├── heart.c │ │ ├── helm1.c │ │ ├── helm2.c │ │ ├── istblade.c │ │ ├── jan.c │ │ ├── jan2.c │ │ ├── jplate.c │ │ ├── key.c │ │ ├── lawbook2.c │ │ ├── llance.c │ │ ├── luckcoin.c │ │ ├── mcloak.c │ │ ├── mgloves.c │ │ ├── mist.c │ │ ├── mstars.c │ │ ├── mycloak.c │ │ ├── net.c │ │ ├── noose.c │ │ ├── noose2.c │ │ ├── orcmask.c │ │ ├── papers.c │ │ ├── piece.c │ │ ├── pvial.c │ │ ├── q2.c │ │ ├── que.c │ │ ├── rapierdam.c │ │ ├── rappunc.c │ │ ├── rat.c │ │ ├── rblade.c │ │ ├── rdagger.c │ │ ├── rdblade.c │ │ ├── realrat.c │ │ ├── red.c │ │ ├── root.c │ │ ├── sarmor.c │ │ ├── sdagger.c │ │ ├── selunecirc.c │ │ ├── ship.c │ │ ├── silessespear.c │ │ ├── silverb.c │ │ ├── sph.c │ │ ├── srobes.c │ │ ├── sstatue.c │ │ ├── statue.c │ │ ├── stefamul.c │ │ ├── stone.c │ │ ├── str.c │ │ ├── tblade.c │ │ ├── tcollar.c │ │ ├── tcorpse.c │ │ ├── test.c │ │ ├── thood.c │ │ ├── tspear.c │ │ ├── tyrblade.c │ │ ├── tyrcrest.c │ │ ├── vial.c │ │ ├── wagon.c │ │ ├── wand.c │ │ ├── wand1.c │ │ ├── watcher.c │ │ ├── welstaff.c │ │ ├── windarmor.c │ │ ├── zsword.c │ │ └── zsword2.c │ ├── avatars │ │ ├── aaron │ │ │ ├── AncientsFail.c │ │ │ └── Tome.c │ │ ├── akadi │ │ │ ├── akablazer.c │ │ │ ├── akaboots.c │ │ │ ├── akadidress.c │ │ │ ├── anduran.c │ │ │ ├── ascloak.c │ │ │ ├── auppants.c │ │ │ ├── bbracers.c │ │ │ ├── blackrose.c │ │ │ ├── bleg.c │ │ │ ├── bltrench.c │ │ │ ├── bluenecklace.c │ │ │ ├── bluepants.c │ │ │ ├── blueshoes.c │ │ │ ├── ccrown.c │ │ │ ├── cork.c │ │ │ ├── elfhead.c │ │ │ ├── fcirclet.c │ │ │ ├── flute.c │ │ │ ├── gcirclet.c │ │ │ ├── generic.c │ │ │ ├── glassvial.c │ │ │ ├── hgloves.c │ │ │ ├── lchoker.c │ │ │ ├── lcirclet.c │ │ │ ├── ldress.c │ │ │ ├── lotus.c │ │ │ ├── lovgreaves.c │ │ │ ├── musicbracers.c │ │ │ ├── mymace.c │ │ │ ├── owlfeathers.c │ │ │ ├── paingiver.c │ │ │ ├── paingreaves.c │ │ │ ├── pbrace.c │ │ │ ├── redboots.c │ │ │ ├── rosecrown.c │ │ │ ├── stick.c │ │ │ ├── tcrown.c │ │ │ ├── testing.c │ │ │ ├── tormplate.c │ │ │ ├── ungreaves.c │ │ │ ├── vial.c │ │ │ ├── vines.c │ │ │ ├── wfcrown.c │ │ │ ├── wlgarter.c │ │ │ └── wyrobe.c │ │ ├── ares │ │ │ ├── herb_pouch_random.c │ │ │ ├── herb_pouch_random_epic.c │ │ │ ├── herb_pouch_random_high.c │ │ │ ├── herb_pouch_random_low.c │ │ │ ├── herb_pouch_random_mid.c │ │ │ ├── orb_of_scrying.c │ │ │ ├── random_wand.c │ │ │ ├── ring_of_eternal_youth.c │ │ │ ├── testarmor.c │ │ │ └── wizard_oil.c │ │ ├── asmodeus │ │ │ ├── %^BOLD%^%^BLACK%^hood%^RESET%^.c │ │ │ ├── Edge.c │ │ │ ├── armor.c │ │ │ ├── battlescar2.c │ │ │ ├── desertstorm.c │ │ │ ├── gloves.c │ │ │ ├── hammer.c │ │ │ ├── melody.c │ │ │ ├── robes.c │ │ │ ├── saqira_bracers.c │ │ │ ├── scaledarmor.c │ │ │ ├── shry_plate.c │ │ │ ├── ssword.c │ │ │ ├── sword.c │ │ │ └── zathcloak.c │ │ ├── auppenser │ │ │ ├── auppenersrobe.c │ │ │ ├── auppenserdagger.c │ │ │ ├── auppenserrobe.c │ │ │ ├── auppenserscloak.c │ │ │ ├── auppensersdagger.c │ │ │ ├── bootsofenlightenment.c │ │ │ ├── genericgem.c │ │ │ ├── mithrilneedle.c │ │ │ ├── stonyheart.c │ │ │ ├── tattooingneedle.c │ │ │ ├── theinfant.c │ │ │ └── tormrobe.c │ │ ├── auril │ │ │ ├── alocket.c │ │ │ ├── anvil.c │ │ │ ├── armor10.c │ │ │ ├── armor15.c │ │ │ ├── armor20.c │ │ │ ├── armor25.c │ │ │ ├── aurilhammer.c │ │ │ ├── b.c │ │ │ ├── baby.c │ │ │ ├── ball.c │ │ │ ├── blink.c │ │ │ ├── block.c │ │ │ ├── bod.c │ │ │ ├── bodies.c │ │ │ ├── candle.c │ │ │ ├── cball.c │ │ │ ├── chalice.c │ │ │ ├── corpsespile.c │ │ │ ├── csabre.c │ │ │ ├── csword.c │ │ │ ├── daedinblade.c │ │ │ ├── daedinblade2.c │ │ │ ├── daedinblade3.c │ │ │ ├── daelus.c │ │ │ ├── dboots.c │ │ │ ├── ddagger2.c │ │ │ ├── demclaw.c │ │ │ ├── disc.c │ │ │ ├── discstar.c │ │ │ ├── drhelm.c │ │ │ ├── drhelm2.c │ │ │ ├── fhammer.c │ │ │ ├── galarmor.c │ │ │ ├── garrotte.c │ │ │ ├── gaxe.c │ │ │ ├── gclaw.c │ │ │ ├── gcutlass.c │ │ │ ├── gdblade.c │ │ │ ├── gem.c │ │ │ ├── giraxe.c │ │ │ ├── girl.c │ │ │ ├── glow.c │ │ │ ├── gsash.c │ │ │ ├── gstr.c │ │ │ ├── head.c │ │ │ ├── heart.c │ │ │ ├── helm1.c │ │ │ ├── helm2.c │ │ │ ├── istblade.c │ │ │ ├── jan.c │ │ │ ├── jan2.c │ │ │ ├── jplate.c │ │ │ ├── key.c │ │ │ ├── lawbook2.c │ │ │ ├── llance.c │ │ │ ├── luckcoin.c │ │ │ ├── mcloak.c │ │ │ ├── mgloves.c │ │ │ ├── mist.c │ │ │ ├── mstars.c │ │ │ ├── mycloak.c │ │ │ ├── net.c │ │ │ ├── noose.c │ │ │ ├── noose2.c │ │ │ ├── orcmask.c │ │ │ ├── papers.c │ │ │ ├── piece.c │ │ │ ├── pvial.c │ │ │ ├── q2.c │ │ │ ├── que.c │ │ │ ├── rapierdam.c │ │ │ ├── rappunc.c │ │ │ ├── rat.c │ │ │ ├── rblade.c │ │ │ ├── rdagger.c │ │ │ ├── rdblade.c │ │ │ ├── realrat.c │ │ │ ├── red.c │ │ │ ├── root.c │ │ │ ├── sarmor.c │ │ │ ├── sdagger.c │ │ │ ├── selunecirc.c │ │ │ ├── ship.c │ │ │ ├── silessespear.c │ │ │ ├── silverb.c │ │ │ ├── sph.c │ │ │ ├── srobes.c │ │ │ ├── sstatue.c │ │ │ ├── statue.c │ │ │ ├── stefamul.c │ │ │ ├── stone.c │ │ │ ├── str.c │ │ │ ├── tblade.c │ │ │ ├── tcollar.c │ │ │ ├── tcorpse.c │ │ │ ├── test.c │ │ │ ├── thood.c │ │ │ ├── tspear.c │ │ │ ├── tyrblade.c │ │ │ ├── tyrcrest.c │ │ │ ├── vial.c │ │ │ ├── wagon.c │ │ │ ├── wand.c │ │ │ ├── wand1.c │ │ │ ├── watcher.c │ │ │ ├── welstaff.c │ │ │ ├── windarmor.c │ │ │ ├── zsword.c │ │ │ └── zsword2.c │ │ ├── bane │ │ │ ├── 0002.c │ │ │ ├── bane001.c │ │ │ ├── bane002.c │ │ │ ├── bane003.c │ │ │ ├── baneaxe.c │ │ │ ├── bloodvial.c │ │ │ ├── body1.c │ │ │ ├── glickarmor001.c │ │ │ ├── lantern01.c │ │ │ ├── mystrarobes.c │ │ │ ├── og01.c │ │ │ ├── og02.c │ │ │ ├── og03.c │ │ │ ├── og04.c │ │ │ ├── og05.c │ │ │ ├── og06.c │ │ │ ├── og07.c │ │ │ ├── og08.c │ │ │ ├── og09.c │ │ │ ├── og10.c │ │ │ ├── ren1.c │ │ │ ├── selune001.c │ │ │ ├── selune2.c │ │ │ ├── shadowarmor001.c │ │ │ ├── shadowarmor002.c │ │ │ ├── shadowarmor003.c │ │ │ ├── shadowarmor004.c │ │ │ ├── shadowarmor005.c │ │ │ ├── shadowarmor006.c │ │ │ ├── teardrop01.c │ │ │ ├── test1.c │ │ │ ├── test2.c │ │ │ ├── testersword.c │ │ │ ├── testersword2.c │ │ │ ├── testersword3.c │ │ │ ├── testing111.c │ │ │ ├── whitecoat1.c │ │ │ └── zrikk1.c │ │ ├── beshaba │ │ │ ├── aitem.c │ │ │ ├── bindingamulet.c │ │ │ ├── cultaxe.c │ │ │ ├── gob_dagger.c │ │ │ ├── khagaxe.c │ │ │ ├── mithrilsword.c │ │ │ ├── ore.c │ │ │ ├── spellorb.c │ │ │ └── testobject.c │ │ ├── bhaal │ │ │ ├── bhaalfists.c │ │ │ ├── bhaalsgear.c │ │ │ ├── bhaalstuff.c │ │ │ ├── demonblade.c │ │ │ └── demonbracers.c │ │ ├── brandobaris │ │ │ ├── arcane_earcuff.c │ │ │ ├── arvellonamulet.c │ │ │ ├── bainaxe.c │ │ │ ├── baniteopal.c │ │ │ ├── boots_of_r_speed.c │ │ │ ├── brandoknife.c │ │ │ ├── brandosuit.c │ │ │ ├── con_surcoat.c │ │ │ ├── efrt_key.c │ │ │ ├── evokerfist.c │ │ │ ├── exoskeleton.c │ │ │ ├── fearamulet.c │ │ │ ├── frtpendant.c │ │ │ ├── frussplate.c │ │ │ ├── frussshield.c │ │ │ ├── gentleman_cane.c │ │ │ ├── immunity_ring.c │ │ │ ├── inferno_plate.c │ │ │ ├── large_treas.c │ │ │ ├── lathandertoken.c │ │ │ ├── med_treas.c │ │ │ ├── metaitem.c │ │ │ ├── nat_bracers.c │ │ │ ├── nhousekey.c │ │ │ ├── npc_shadow_cloud.c │ │ │ ├── npc_shadow_shroud.c │ │ │ ├── prop_eaten_corpse.c │ │ │ ├── ringofwarding.c │ │ │ ├── seeker_ring.c │ │ │ ├── shadow_clasp.c │ │ │ ├── shadowbaton.c │ │ │ ├── sierraskull.c │ │ │ ├── spectral_ring.c │ │ │ ├── spellring.c │ │ │ ├── stonecape.c │ │ │ ├── tormring.c │ │ │ ├── vanguard_wraps.c │ │ │ ├── wound_missing_hand.c │ │ │ └── zephyrsword.c │ │ ├── chronos │ │ │ ├── Faerzressband.c │ │ │ ├── Faerzressblade.c │ │ │ ├── aitem.c │ │ │ ├── blustud.c │ │ │ ├── bonebracers.c │ │ │ ├── codex.c │ │ │ ├── dagronz.c │ │ │ ├── oldsword.c │ │ │ ├── scale.c │ │ │ ├── starheart.c │ │ │ ├── talon.c │ │ │ ├── timerobe.c │ │ │ └── tombhammer.c │ │ ├── circe │ │ │ ├── anniversary.c │ │ │ ├── blah.c │ │ │ ├── brocaderobe.c │ │ │ ├── dust_mephit.c │ │ │ ├── guildring-bag.c │ │ │ ├── huggle_basher.c │ │ │ ├── imbued_starlight.c │ │ │ ├── inquisitor_lash.c │ │ │ ├── mistletoe.c │ │ │ ├── nhaelgors_tooth.c │ │ │ ├── pants.c │ │ │ ├── piaftools.c │ │ │ ├── redrobe.c │ │ │ ├── robes.c │ │ │ ├── saruhlbracelet.c │ │ │ ├── silesse_lotus.c │ │ │ ├── silverring.c │ │ │ ├── testsword.c │ │ │ ├── tigerseye.c │ │ │ ├── valsharess_gown.c │ │ │ ├── vic_silesse_lotus.c │ │ │ ├── witchlord_robe-improved.c │ │ │ └── witchlord_robe.c │ │ ├── cyric │ │ │ ├── adamshort.c │ │ │ ├── basicdagger.c │ │ │ ├── blackclaws.c │ │ │ ├── blackioun.c │ │ │ ├── blackmask.c │ │ │ ├── blueioun.c │ │ │ ├── busted.c │ │ │ ├── charredshield.c │ │ │ ├── contest.c │ │ │ ├── darkmask.c │ │ │ ├── diamonddagger.c │ │ │ ├── diamonddagger2.c │ │ │ ├── dogcollar.c │ │ │ ├── drowbook.c │ │ │ ├── drowpaper.c │ │ │ ├── fakebag.c │ │ │ ├── flamedgauntlets.c │ │ │ ├── flowers.c │ │ │ ├── greensabre.c │ │ │ ├── hand.c │ │ │ ├── incompglove.c │ │ │ ├── jademonkey.c │ │ │ ├── largesabre.c │ │ │ ├── leatherbelt.c │ │ │ ├── medcrutch.c │ │ │ ├── nightruby.c │ │ │ ├── phoenixegg.c │ │ │ ├── phoenixnest.c │ │ │ ├── piwafwi.c │ │ │ ├── platearring.c │ │ │ ├── polishedboots.c │ │ │ ├── profdagger.c │ │ │ ├── redioun.c │ │ │ ├── redribbon.c │ │ │ ├── shimmeringcape.c │ │ │ ├── skullmask.c │ │ │ ├── speciald.c │ │ │ ├── specialtest.c │ │ │ ├── specialweapon.c │ │ │ ├── steelsabre.c │ │ │ ├── test1.c │ │ │ ├── testarmor.c │ │ │ ├── testrobe.c │ │ │ ├── testshield.c │ │ │ ├── whiteflail.c │ │ │ └── yellowioun.c │ │ ├── cythera │ │ │ ├── Sungirdle.c │ │ │ ├── boa.c │ │ │ ├── cooshee.c │ │ │ ├── cooshee_whistle.c │ │ │ ├── eryinesleather.c │ │ │ ├── flamesilk.c │ │ │ ├── forestjerkin.c │ │ │ ├── harmonybracers.c │ │ │ ├── nightmare_robe.c │ │ │ ├── plot_beryl.c │ │ │ ├── plot_citrine.c │ │ │ ├── plot_diamond.c │ │ │ ├── plot_onyx.c │ │ │ ├── plot_pyrite.c │ │ │ ├── plot_reward.c │ │ │ ├── plot_ruby.c │ │ │ ├── plot_topaz.c │ │ │ ├── rand_leath_head.c │ │ │ ├── thayildress.c │ │ │ └── tower.c │ │ ├── dalmion │ │ │ └── elfshine.c │ │ ├── dinji │ │ │ ├── L_sword.c │ │ │ ├── flowsteel.c │ │ │ ├── folded_screen.c │ │ │ ├── maestro.c │ │ │ ├── n_gauntlets.c │ │ │ ├── r_jingle.c │ │ │ ├── reward.c │ │ │ ├── rod.c │ │ │ ├── screen.c │ │ │ ├── sstep.c │ │ │ └── windcape.c │ │ ├── eldath │ │ │ └── iceblade.c │ │ ├── gargauth │ │ │ ├── blackdagger.c │ │ │ ├── brokenring.c │ │ │ ├── goboring.c │ │ │ ├── grokhelm.c │ │ │ ├── ringofdex+1.c │ │ │ ├── ringofdext+1.c │ │ │ └── spellbook.c │ │ ├── garrett │ │ │ ├── deepplate.c │ │ │ ├── fakeweddingring.c │ │ │ ├── satchel.c │ │ │ ├── stabdagger.c │ │ │ ├── twinkmasher.c │ │ │ └── weight.c │ │ ├── grumbar │ │ │ ├── blades2.c │ │ │ ├── blades4.c │ │ │ ├── bomb.c │ │ │ ├── bomb1.c │ │ │ ├── bomb5.c │ │ │ ├── boots1.c │ │ │ ├── cloak1.c │ │ │ ├── cloak2.c │ │ │ ├── dagger1.c │ │ │ ├── dagger2.c │ │ │ ├── dagger3.c │ │ │ ├── dagger5.c │ │ │ ├── daggerrilyrr.c │ │ │ ├── drowdagger.c │ │ │ ├── firstplot.c │ │ │ ├── grlance.c │ │ │ ├── grobe1.c │ │ │ ├── grumbarhammer.c │ │ │ ├── grumbarsword2.c │ │ │ ├── grumlance.c │ │ │ ├── hammer.c │ │ │ ├── kelemlance.c │ │ │ ├── kelemvorslance.c │ │ │ ├── klinquemask.c │ │ │ ├── klinquemask3.c │ │ │ ├── knuckles5.c │ │ │ ├── lancewren1.c │ │ │ ├── mask2.c │ │ │ ├── mask3.c │ │ │ ├── mask4.c │ │ │ ├── mask5.c │ │ │ ├── oakclub.c │ │ │ ├── oldelfsword.c │ │ │ ├── plate1.c │ │ │ ├── rilyrrdagger.c │ │ │ ├── rilyrrobe.c │ │ │ ├── rilyrrrobe.c │ │ │ ├── ring1.c │ │ │ ├── robe1.c │ │ │ ├── roberilyrr.c │ │ │ ├── smalld1.c │ │ │ ├── smclub1.c │ │ │ ├── testmace.c │ │ │ ├── testsword.c │ │ │ ├── testweapon1.c │ │ │ ├── weapon5.c │ │ │ └── wrenlance2.c │ │ ├── hades │ │ │ ├── agechains.c │ │ │ ├── bjar.c │ │ │ ├── csong.c │ │ │ ├── dbracer.c │ │ │ ├── feystone.c │ │ │ ├── feystone1.c │ │ │ ├── feystone2.c │ │ │ ├── ill.c │ │ │ ├── jar.c │ │ │ ├── na_compbag.c │ │ │ ├── na_satchel.c │ │ │ ├── test.c │ │ │ ├── w_ele.c │ │ │ └── w_vase.c │ │ ├── helm │ │ │ ├── ancientblade.c │ │ │ ├── antiochsurcoat.c │ │ │ ├── astral_shield.c │ │ │ ├── bfold.c │ │ │ ├── blackcloak.c │ │ │ ├── blindfold.c │ │ │ ├── blooddoll.c │ │ │ ├── bloodvial.c │ │ │ ├── bookofsaints.c │ │ │ ├── carvingknife.c │ │ │ ├── cateye.c │ │ │ ├── cateye2.c │ │ │ ├── claws.c │ │ │ ├── cockroach.c │ │ │ ├── corpse.c │ │ │ ├── corpse2.c │ │ │ ├── darkmask.c │ │ │ ├── dwarf.c │ │ │ ├── echain.c │ │ │ ├── egem.c │ │ │ ├── elfear.c │ │ │ ├── elfhead.c │ │ │ ├── faitharmband.c │ │ │ ├── flamb1.c │ │ │ ├── flamb2.c │ │ │ ├── flameguards.c │ │ │ ├── fswat.c │ │ │ ├── gclasp.c │ │ │ ├── ghostkill.c │ │ │ ├── ghoulblade.c │ │ │ ├── greaves.c │ │ │ ├── grlbd.c │ │ │ ├── helmwhip.c │ │ │ ├── ironcrown.c │ │ │ ├── ironstaff.c │ │ │ ├── koanwelv.c │ │ │ ├── laurel_wreath.c │ │ │ ├── mage_rods.c │ │ │ ├── mage_wands.c │ │ │ ├── moonshard.c │ │ │ ├── nightsveil.c │ │ │ ├── oathkeeper.c │ │ │ ├── ratamu.c │ │ │ ├── ratamulet.c │ │ │ ├── redeemer.c │ │ │ ├── saintbk.c │ │ │ ├── scales.c │ │ │ ├── scorpwhip.c │ │ │ ├── silvercirclet.c │ │ │ ├── soulg2.c │ │ │ ├── soulge.c │ │ │ ├── soulgem.c │ │ │ ├── surcoat.c │ │ │ ├── tiger_claw.c │ │ │ ├── tormmanuscript.c │ │ │ ├── trollclaw.c │ │ │ ├── typo_test.c │ │ │ ├── upbodgrl.c │ │ │ ├── vexlock.c │ │ │ ├── wandercorpse.c │ │ │ ├── waspblade.c │ │ │ ├── waspring.c │ │ │ ├── waveguards.c │ │ │ ├── windguard.c │ │ │ ├── windguards.c │ │ │ ├── wyrmskin.c │ │ │ ├── wyrmskinboots.c │ │ │ └── zealpen.c │ │ ├── hlal │ │ │ ├── aitem.c │ │ │ ├── ansemask.c │ │ │ ├── blackphoenix.c │ │ │ ├── blackphoenix2.c │ │ │ ├── bpoppy.c │ │ │ ├── bunnycarrot.c │ │ │ ├── dancepant.c │ │ │ ├── dancertop.c │ │ │ ├── danceslipper.c │ │ │ ├── fancypinkdress.c │ │ │ ├── jesterarm.c │ │ │ ├── jestergloves.c │ │ │ ├── jestershoes.c │ │ │ ├── jesterstock.c │ │ │ ├── leafydangle.c │ │ │ ├── leafydangle1.c │ │ │ ├── moonstonebracelet.c │ │ │ ├── noblecloak.c │ │ │ ├── peacockmask.c │ │ │ ├── pearlsheath.c │ │ │ ├── rubyheels.c │ │ │ ├── ryodanamulet.c │ │ │ ├── tellerrobe.c │ │ │ ├── tellerscarf.c │ │ │ ├── tellerveil.c │ │ │ └── testclaw.c │ │ ├── ibrandul │ │ │ ├── aitem.c │ │ │ ├── amberlyring.c │ │ │ ├── angelcrystal.c │ │ │ ├── banetoy.c │ │ │ ├── bonearmor.c │ │ │ ├── bottle.c │ │ │ ├── childring.c │ │ │ ├── darumstudded.c │ │ │ ├── ddcollar.c │ │ │ ├── deed.c │ │ │ ├── deed2.c │ │ │ ├── delainarm.c │ │ │ ├── demonsnare.c │ │ │ ├── dragonclaws.c │ │ │ ├── dragoncollar.c │ │ │ ├── dragonegg.c │ │ │ ├── dragonscale.c │ │ │ ├── dragonshort.c │ │ │ ├── dragonteeth.c │ │ │ ├── flute1.c │ │ │ ├── klinquerobe.c │ │ │ ├── lukasarmor.c │ │ │ ├── marikastudded.c │ │ │ ├── rust.c │ │ │ ├── rustweapons.c │ │ │ ├── saqiranecklace.c │ │ │ ├── seal.c │ │ │ ├── shadowgauntlets.c │ │ │ ├── shadowwhip.c │ │ │ ├── shard.c │ │ │ ├── sigil.c │ │ │ ├── specialwater.c │ │ │ ├── specialwater2.c │ │ │ ├── symbol1.c │ │ │ ├── tarotdeck.c │ │ │ ├── teddy.c │ │ │ ├── tengrisword.c │ │ │ ├── torralscimitar.c │ │ │ ├── vecnahead.c │ │ │ ├── venom.c │ │ │ ├── water.c │ │ │ └── wizstick.c │ │ ├── istishia │ │ │ ├── Boomer.c │ │ │ ├── Boomerang.c │ │ │ ├── RamMon.c │ │ │ ├── Torment.c │ │ │ ├── bubblesword4.c │ │ │ ├── nastyapron4.c │ │ │ ├── scythe.c │ │ │ ├── spidertights.c │ │ │ ├── spidertights2.c │ │ │ └── spidertights3.c │ │ ├── kassius │ │ │ ├── muln.c │ │ │ └── sorrowsong │ │ │ │ └── obj │ │ │ │ ├── andavenseye.c │ │ │ │ ├── conjwand.c │ │ │ │ ├── foesgift.c │ │ │ │ ├── frostreaver.c │ │ │ │ ├── icedagger.c │ │ │ │ ├── icediamond.c │ │ │ │ ├── iolitemail.c │ │ │ │ ├── linenpants.c │ │ │ │ ├── staffvital.c │ │ │ │ ├── talsanklet.c │ │ │ │ └── whdragonplate.c │ │ ├── kelemvor │ │ │ ├── bootsofwanderlust.c │ │ │ ├── bootsofwanderlust2.c │ │ │ ├── braceletsofleadership.c │ │ │ ├── etneshead.c │ │ │ ├── grimmsrobe.c │ │ │ ├── iceblade.c │ │ │ ├── icetear.c │ │ │ ├── kelsreaperrobes.c │ │ │ ├── mysteryegg.c │ │ │ ├── reaperrobes.c │ │ │ └── rock.c │ │ ├── kossuth │ │ │ ├── cyricmailrobe.c │ │ │ ├── taloscloak.c │ │ │ └── tempusrobes.c │ │ ├── lathander │ │ │ ├── akadiblazer.c │ │ │ ├── banegem.c │ │ │ ├── extradsash.c │ │ │ ├── greattease.c │ │ │ ├── mindthrustlance.c │ │ │ ├── reinforce.c │ │ │ ├── sparrowarmor.c │ │ │ └── zcfangs.c │ │ ├── loki │ │ │ ├── aitem.c │ │ │ ├── blood_necklace.c │ │ │ ├── dragonrobes.c │ │ │ ├── macana.c │ │ │ ├── macquahuitl.c │ │ │ ├── necrotic_hands.c │ │ │ └── template_weapon.c │ │ ├── loviatar │ │ │ ├── darksteel_mesh.c │ │ │ ├── longsword_of_sharpness.c │ │ │ └── moonsceptre.loviatar.c │ │ ├── lujke │ │ │ ├── ahmul_archer.c │ │ │ ├── ahmul_hunter.c │ │ │ ├── ahmul_target.c │ │ │ ├── amaya_antioch_target.c │ │ │ ├── anson_archer.c │ │ │ ├── anson_hunter.c │ │ │ ├── anson_target.c │ │ │ ├── archer.c │ │ │ ├── archery_target.c │ │ │ ├── bounty_hunter.c │ │ │ ├── carrot.c │ │ │ ├── cathy_archer.c │ │ │ ├── cathy_hunter.c │ │ │ ├── cathy_target.c │ │ │ ├── chessboard.c │ │ │ ├── cnccafe.c │ │ │ ├── coifmane.c │ │ │ ├── deathstick.c │ │ │ ├── degraded_leaf_crown.c │ │ │ ├── dithas_archer.c │ │ │ ├── dithas_hunter.c │ │ │ ├── dithas_target.c │ │ │ ├── helm_chess.c │ │ │ ├── hunter_sword.c │ │ │ ├── innaeli_ant_archer.c │ │ │ ├── innaeli_ant_hunter.c │ │ │ ├── innaeli_antioch_target.c │ │ │ ├── innaeli_archer.c │ │ │ ├── innaeli_hunter.c │ │ │ ├── innaeli_target.c │ │ │ ├── kain_archer.c │ │ │ ├── kain_hunter.c │ │ │ ├── kain_target.c │ │ │ ├── kclaws.c │ │ │ ├── leaf_crown.c │ │ │ ├── mark_of_mask.c │ │ │ ├── myitem.c │ │ │ ├── nic_archer.c │ │ │ ├── nic_hunter.c │ │ │ ├── nic_target.c │ │ │ ├── obj │ │ │ │ ├── anson_archer.c │ │ │ │ ├── anson_hunter.c │ │ │ │ ├── anson_target.c │ │ │ │ ├── innaeli_archer.c │ │ │ │ ├── innaeli_hunter.c │ │ │ │ ├── innaeli_target.c │ │ │ │ └── tent.c │ │ │ ├── obs │ │ │ ├── painting.c │ │ │ ├── patchwork_cloak.c │ │ │ ├── raggedcloak.c │ │ │ ├── rooms │ │ │ │ └── tent_interior.c │ │ │ ├── saqirassword.c │ │ │ ├── scarecrow.c │ │ │ ├── summoning_gem.c │ │ │ ├── sune_sym_damaged.c │ │ │ ├── swanmay.c │ │ │ ├── ulfang_archer.c │ │ │ ├── ulfang_hunter.c │ │ │ ├── ulfang_sword.c │ │ │ └── ulfang_target.c │ │ ├── lurue │ │ │ ├── 08SP1Sprize.c │ │ │ ├── 08SP2Nprize.c │ │ │ ├── 08SPGPprize.c │ │ │ ├── 08SPHMaward.c │ │ │ ├── 08SPHMprize.c │ │ │ ├── Akadi_flail.c │ │ │ ├── Auppenser_kukri.c │ │ │ ├── Auril_battleaxe.c │ │ │ ├── Bane_morningstar.c │ │ │ ├── Beshaba_scourage.c │ │ │ ├── CNC_bracelet.c │ │ │ ├── Cyric_longsword.c │ │ │ ├── Grumbar_warhammer.c │ │ │ ├── Helm_bastardsword.c │ │ │ ├── Istishia_warhammer.c │ │ │ ├── Kelemvor_bastardsword.c │ │ │ ├── Kossuth_spikedchain.c │ │ │ ├── Lathander_heavymace.c │ │ │ ├── Malar_claw.c │ │ │ ├── Mask_shortsword.c │ │ │ ├── Mielikki_scimitar.c │ │ │ ├── Mystra_shuriken.c │ │ │ ├── Oghma_longsword.c │ │ │ ├── Selune_heavymace.c │ │ │ ├── Shar_chakram.c │ │ │ ├── Shaundakul_greatsword.c │ │ │ ├── Sune_whip.c │ │ │ ├── TOY_bear.c │ │ │ ├── TOY_boydoll.c │ │ │ ├── TOY_browndog.c │ │ │ ├── TOY_bunny.c │ │ │ ├── TOY_dog.c │ │ │ ├── TOY_giant.c │ │ │ ├── TOY_girldoll.c │ │ │ ├── TOY_kitten.c │ │ │ ├── TOY_monster.c │ │ │ ├── TOY_piggy.c │ │ │ ├── TOY_pinkdragon.c │ │ │ ├── TOY_wolf.c │ │ │ ├── Talos_spear.c │ │ │ ├── Tempus_battleaxe.c │ │ │ ├── Torm_greatsword.c │ │ │ ├── Tymora_shuriken.c │ │ │ ├── Tyr_longsword.c │ │ │ ├── aaronbelt.c │ │ │ ├── abitofluck.c │ │ │ ├── acursedwhip.c │ │ │ ├── adderslcloth.c │ │ │ ├── aitem.c │ │ │ ├── alisynrobes.c │ │ │ ├── anitem.c │ │ │ ├── ansontattoo.c │ │ │ ├── arcaneflamecrown.c │ │ │ ├── aysutooth.c │ │ │ ├── baddie_brooch.c │ │ │ ├── banecuff.c │ │ │ ├── banjolele.c │ │ │ ├── barof_copper.c │ │ │ ├── barof_gold.c │ │ │ ├── barof_silver.c │ │ │ ├── bartsgauntlets.c │ │ │ ├── battery.c │ │ │ ├── battlegloryplate.c │ │ │ ├── bearclaw.c │ │ │ ├── bearclaws_sm.c │ │ │ ├── beholderamulet.c │ │ │ ├── belespice.c │ │ │ ├── blackdiamond.c │ │ │ ├── bloodyband.c │ │ │ ├── boneclaw.c │ │ │ ├── bonepile.c │ │ │ ├── bonestaff.c │ │ │ ├── bugplant.c │ │ │ ├── bugscepter.c │ │ │ ├── bugscepter2.c │ │ │ ├── ceremonybowl.c │ │ │ ├── chainedovercoat.c │ │ │ ├── champagne_tia.c │ │ │ ├── clothingremains.c │ │ │ ├── colorcrystal.c │ │ │ ├── coloredboots.c │ │ │ ├── contestsign.c │ │ │ ├── contraption.c │ │ │ ├── costume_butterfly.c │ │ │ ├── costume_cat.c │ │ │ ├── cracklingenergy.c │ │ │ ├── craftbclt_bear.c │ │ │ ├── craftbclt_bull.c │ │ │ ├── craftbclt_cat.c │ │ │ ├── craftbclt_eagle.c │ │ │ ├── craftbclt_fox.c │ │ │ ├── craftbclt_owl.c │ │ │ ├── creslts_sparkle.c │ │ │ ├── daggerofdrow.c │ │ │ ├── darkgem_amulet.c │ │ │ ├── darkgem_boots.c │ │ │ ├── darkgem_bracers.c │ │ │ ├── darkgem_chakram.c │ │ │ ├── darkgem_shield.c │ │ │ ├── deephorn.c │ │ │ ├── deity_stuffed.c │ │ │ ├── desertsanddag.c │ │ │ ├── dhornclaw.c │ │ │ ├── dhorncloak.c │ │ │ ├── diamondslicer.c │ │ │ ├── die.c │ │ │ ├── dragonfinger.c │ │ │ ├── dragonpouch.c │ │ │ ├── dragonrobes.c │ │ │ ├── dragonsword.c │ │ │ ├── dragscales.c │ │ │ ├── dragtailcirclet.c │ │ │ ├── drinkz.c │ │ │ ├── drowdagger.c │ │ │ ├── dwarf_plate.c │ │ │ ├── e_coat.c │ │ │ ├── electricamulet.c │ │ │ ├── emeraldarmor.c │ │ │ ├── emeraldcurve.c │ │ │ ├── emeraldflail.c │ │ │ ├── emeraldglint.c │ │ │ ├── emhawkberet.c │ │ │ ├── ethiustattoo.c │ │ │ ├── eyeofstormarmor.c │ │ │ ├── fairydragon.c │ │ │ ├── featheredhat2.c │ │ │ ├── felinearmlet.c │ │ │ ├── fingerlessglove.c │ │ │ ├── fireeyesword.c │ │ │ ├── firstlightrobe.c │ │ │ ├── fishbowlcrystal.c │ │ │ ├── flipflopsandals.c │ │ │ ├── foodz.c │ │ │ ├── forestarmor.c │ │ │ ├── forestsgleam.c │ │ │ ├── forgottensoul.c │ │ │ ├── fortunesguard.c │ │ │ ├── friendsring.c │ │ │ ├── gem2.c │ │ │ ├── geniescuff.c │ │ │ ├── glassteelflask.c │ │ │ ├── glitteringarmor.c │ │ │ ├── glitteringicicle.c │ │ │ ├── goblintatters.c │ │ │ ├── goldenrobe.c │ │ │ ├── goldenstagarmor.c │ │ │ ├── goldenstagblade.c │ │ │ ├── goldenstagcloth.c │ │ │ ├── goldenstaghelm.c │ │ │ ├── goldenstagring.c │ │ │ ├── goldenstagslayer.c │ │ │ ├── goldstagarmor.c │ │ │ ├── goldstaghelm.c │ │ │ ├── goodie_clasp.c │ │ │ ├── handmirror.c │ │ │ ├── hangman.c │ │ │ ├── hawkscrown.c │ │ │ ├── healingpaste.c │ │ │ ├── hglassdarkfate.c │ │ │ ├── hollyleaf.c │ │ │ ├── houseveryn.c │ │ │ ├── huggle_basher.c │ │ │ ├── icecrystals.c │ │ │ ├── id_adder.c │ │ │ ├── innaeli_target.c │ │ │ ├── ironingot.c │ │ │ ├── ironring.c │ │ │ ├── jailkey.c │ │ │ ├── jasmine_relic.c │ │ │ ├── kantlara.c │ │ │ ├── kere_dagger.c │ │ │ ├── kere_dagger2.c │ │ │ ├── kere_ssword.c │ │ │ ├── keyring1.c │ │ │ ├── keyring2.c │ │ │ ├── keyring3.c │ │ │ ├── kidneyring.c │ │ │ ├── kittycloak.c │ │ │ ├── kobohand.c │ │ │ ├── koboldstatue.c │ │ │ ├── kols1.c │ │ │ ├── lamppost.c │ │ │ ├── lasradis_cage.c │ │ │ ├── leatherfedora.c │ │ │ ├── leatherofhunter.c │ │ │ ├── lionpeltcloak.c │ │ │ ├── lockedcase.c │ │ │ ├── locust.c │ │ │ ├── longmileboots.c │ │ │ ├── lukasarmor.c │ │ │ ├── lus_slining.c │ │ │ ├── mage_hat.c │ │ │ ├── manor_key.c │ │ │ ├── map.c │ │ │ ├── masq_key30.c │ │ │ ├── masq_key_30.c │ │ │ ├── masq_key_31.c │ │ │ ├── masq_key_32.c │ │ │ ├── masq_key_33.c │ │ │ ├── masq_key_34.c │ │ │ ├── masq_key_35.c │ │ │ ├── masq_key_36.c │ │ │ ├── masq_key_37.c │ │ │ ├── masq_key_38.c │ │ │ ├── masq_key_39.c │ │ │ ├── masq_key_40.c │ │ │ ├── masq_key_41.c │ │ │ ├── masq_key_42.c │ │ │ ├── masq_key_43.c │ │ │ ├── masq_key_44.c │ │ │ ├── masq_key_45.c │ │ │ ├── masq_key_46.c │ │ │ ├── masq_key_47.c │ │ │ ├── masq_key_48.c │ │ │ ├── masq_key_49.c │ │ │ ├── masq_key_50.c │ │ │ ├── masq_key_51.c │ │ │ ├── masq_key_52.c │ │ │ ├── masq_key_53.c │ │ │ ├── masq_key_54.c │ │ │ ├── masq_key_55.c │ │ │ ├── masq_key_56.c │ │ │ ├── masq_key_57.c │ │ │ ├── masq_key_58.c │ │ │ ├── masq_key_59.c │ │ │ ├── masq_key_60.c │ │ │ ├── masq_key_61.c │ │ │ ├── masq_key_62.c │ │ │ ├── masq_key_63.c │ │ │ ├── masq_key_64.c │ │ │ ├── masq_key_65.c │ │ │ ├── masq_key_66.c │ │ │ ├── masq_key_67.c │ │ │ ├── masq_key_68.c │ │ │ ├── masq_key_69.c │ │ │ ├── masqtablet.c │ │ │ ├── masqueradebag.c │ │ │ ├── masqueradering.c │ │ │ ├── mattybutton.c │ │ │ ├── medusabracer.c │ │ │ ├── mercuryscale.c │ │ │ ├── minhorn.c │ │ │ ├── musewpn.c │ │ │ ├── myitem.c │ │ │ ├── naelibracelet.c │ │ │ ├── nb_mace.c │ │ │ ├── nb_shortsword.c │ │ │ ├── new_axe.c │ │ │ ├── new_banded.c │ │ │ ├── new_bracers.c │ │ │ ├── new_club.c │ │ │ ├── new_dagger.c │ │ │ ├── new_fan.c │ │ │ ├── new_flail.c │ │ │ ├── new_longsword.c │ │ │ ├── new_shield.c │ │ │ ├── newsgmemento.c │ │ │ ├── nfrostarmor.c │ │ │ ├── nfrostaxe.c │ │ │ ├── nfrostcrown.c │ │ │ ├── nicstatue.c │ │ │ ├── nictalon.c │ │ │ ├── nivinaxe.c │ │ │ ├── obsid_dagger.c │ │ │ ├── obsidstone.c │ │ │ ├── ogregauntlets.c │ │ │ ├── ozytattoo.c │ │ │ ├── phantomboots.c │ │ │ ├── phantomsilk.c │ │ │ ├── phantomsuit.c │ │ │ ├── phoenixwings.c │ │ │ ├── piletreasure.c │ │ │ ├── platedmesh.c │ │ │ ├── pocketdoublet.c │ │ │ ├── pod.c │ │ │ ├── prizetoken.c │ │ │ ├── puzzlebox.c │ │ │ ├── quinmadesword.c │ │ │ ├── ratskullnecklace.c │ │ │ ├── reddeathmask.c │ │ │ ├── refreshingpouch.c │ │ │ ├── reinforce.c │ │ │ ├── ribwand.c │ │ │ ├── roc_claw.c │ │ │ ├── rosepetal.c │ │ │ ├── rubblepile.c │ │ │ ├── rubytalongaunt.c │ │ │ ├── sapphirelance.c │ │ │ ├── saq_sparrowsong.c │ │ │ ├── schoonerkey.c │ │ │ ├── seaweedcloak.c │ │ │ ├── seawreck_key.c │ │ │ ├── selune_underkey.c │ │ │ ├── senecalichkey.c │ │ │ ├── seraphimarmor.c │ │ │ ├── seraphimarmr.c │ │ │ ├── seraphsvision.c │ │ │ ├── sharkhanging.c │ │ │ ├── sharkteeth.c │ │ │ ├── sharktooth.c │ │ │ ├── shiftsandcloak.c │ │ │ ├── shinobishozoku.c │ │ │ ├── shinyobject.c │ │ │ ├── silkarmguards.c │ │ │ ├── silverbarkguitar.c │ │ │ ├── silverbell.c │ │ │ ├── silvercoin.c │ │ │ ├── silverfinch.c │ │ │ ├── silverhammer.c │ │ │ ├── silversblade.c │ │ │ ├── silvershackles.c │ │ │ ├── singerkieramr.c │ │ │ ├── sky_dagger.c │ │ │ ├── skyvest.c │ │ │ ├── slicingwhip.c │ │ │ ├── smallmanpants.c │ │ │ ├── smallmanschain.c │ │ │ ├── snakequeenswd.c │ │ │ ├── spells │ │ │ │ ├── _drift.c │ │ │ │ └── genie.c │ │ │ ├── spinningaxe.c │ │ │ ├── studearrings.c │ │ │ ├── sunveil.c │ │ │ ├── swamamulet.c │ │ │ ├── sylphshirt.c │ │ │ ├── sylvansilkcloak.c │ │ │ ├── taurinaamir.c │ │ │ ├── tent.c │ │ │ ├── tent_tracker.c │ │ │ ├── testdagger.c │ │ │ ├── thinneedle.c │ │ │ ├── thoughtslayer.c │ │ │ ├── tomb.c │ │ │ ├── tonguewhip.c │ │ │ ├── torm_bracers.c │ │ │ ├── torm_buckler.c │ │ │ ├── torm_leather.c │ │ │ ├── torm_scalemail.c │ │ │ ├── torm_shield.c │ │ │ ├── torm_sword.c │ │ │ ├── tormncklce.c │ │ │ ├── turquoisebands.c │ │ │ ├── tyr_greaves.c │ │ │ ├── valadrixcane.c │ │ │ ├── valkursword.c │ │ │ ├── valuables.c │ │ │ ├── valuables_special.c │ │ │ ├── vecnahand.c │ │ │ ├── vinewhip.c │ │ │ ├── vocalamulet.c │ │ │ ├── voidkey.c │ │ │ ├── wagon.c │ │ │ ├── watchfuleye.c │ │ │ ├── wateranklet.c │ │ │ ├── waterflask.c │ │ │ ├── whirlwindflail.c │ │ │ ├── whitesapring.c │ │ │ ├── widebrimgray-old.c │ │ │ ├── widebrimgray.c │ │ │ ├── windgem.c │ │ │ ├── wingshackles.c │ │ │ ├── wisdomglasses.c │ │ │ ├── wizstick.c │ │ │ ├── workmenshirt.c │ │ │ └── worldlessrobe.c │ │ ├── mask │ │ │ ├── blackarmor.c │ │ │ ├── darkkama.c │ │ │ ├── eyeball.c │ │ │ ├── furcape.c │ │ │ ├── housering.c │ │ │ ├── leatherboots.c │ │ │ ├── shanker.c │ │ │ ├── stealthwhisper.c │ │ │ ├── tarisirrobe.c │ │ │ ├── tarisirsandals.c │ │ │ └── themask.c │ │ ├── metikul │ │ │ ├── bloodchiller.met.c │ │ │ ├── bracersofdubprot.met.c │ │ │ ├── dofsharpness.met.c │ │ │ ├── horsehide.c │ │ │ ├── mbwizardrobes.met.c │ │ │ ├── ssofsharpness.met.c │ │ │ └── worktunic.metikul.c │ │ ├── mielikki │ │ │ ├── coin1.c │ │ │ └── lcoin.c │ │ ├── moradin │ │ │ ├── Assassinninjato.c │ │ │ ├── Bruteaxe.c │ │ │ ├── Moradinhammer.c │ │ │ ├── Moradinmithrilarmor.c │ │ │ ├── Moradinnutcracker.c │ │ │ ├── Phoenixhelm.c │ │ │ ├── Silverdragon.c │ │ │ ├── elfhat.c │ │ │ ├── santabelt.c │ │ │ ├── santaboots.c │ │ │ ├── santacoat.c │ │ │ ├── santahat.c │ │ │ ├── santapants.c │ │ │ ├── shaulcane.c │ │ │ ├── sierracloak.c │ │ │ └── testarmor.c │ │ ├── myrkul │ │ │ ├── aashearing.c │ │ │ ├── aashtorc.c │ │ │ ├── agedscroll.c │ │ │ ├── alzarbottle.c │ │ │ ├── amberlykettle.c │ │ │ ├── antiochsignet.c │ │ │ ├── archangelsword.c │ │ │ ├── armband.c │ │ │ ├── battlescar.c │ │ │ ├── battlescar2.c │ │ │ ├── belt3.c │ │ │ ├── belt4.c │ │ │ ├── belt5.c │ │ │ ├── belt6.c │ │ │ ├── belt7.c │ │ │ ├── buckle.c │ │ │ ├── catclaw.c │ │ │ ├── chaosaura.c │ │ │ ├── chaosaura2.c │ │ │ ├── crystalheart3.c │ │ │ ├── cyricring.c │ │ │ ├── dinoturd.c │ │ │ ├── dogcollar.c │ │ │ ├── dragonscale.c │ │ │ ├── drowrapier.c │ │ │ ├── dual.c │ │ │ ├── dwarvenbreastplate.c │ │ │ ├── edge3.c │ │ │ ├── elathysiarobe6.c │ │ │ ├── fakerag.c │ │ │ ├── fangs.c │ │ │ ├── fmpotion.c │ │ │ ├── ghulcage.c │ │ │ ├── gnomehand.c │ │ │ ├── goblincleaver.c │ │ │ ├── goboarmor.c │ │ │ ├── goboarmor2.c │ │ │ ├── gtr_mundanoid.c │ │ │ ├── guildring.c │ │ │ ├── halfogresplint.c │ │ │ ├── heads.c │ │ │ ├── iceaura.c │ │ │ ├── iceaura2.c │ │ │ ├── kabong.c │ │ │ ├── kabong2.c │ │ │ ├── katana.c │ │ │ ├── living_armor.c │ │ │ ├── ltest.c │ │ │ ├── ltest2.c │ │ │ ├── ltest3.c │ │ │ ├── megasword.c │ │ │ ├── mithrasarmband.c │ │ │ ├── moonwand.c │ │ │ ├── moonwand2.c │ │ │ ├── morningstar.c │ │ │ ├── nighty.c │ │ │ ├── no-dachi.c │ │ │ ├── nundress.c │ │ │ ├── oathring.c │ │ │ ├── oathring2.c │ │ │ ├── ramiusmantle.c │ │ │ ├── ramiusmantle2.c │ │ │ ├── ringmail.c │ │ │ ├── rot.c │ │ │ ├── seagullpoop.c │ │ │ ├── senecacup.c │ │ │ ├── sheriffbadge.c │ │ │ ├── sheriffbadgeseneca.c │ │ │ ├── sheriffbadgetonovi.c │ │ │ ├── sheriffbadgetonovi2.c │ │ │ ├── sierra_dagger.c │ │ │ ├── silessestatue.c │ │ │ ├── singer.c │ │ │ ├── skullstein.c │ │ │ ├── slaadegg.c │ │ │ ├── sledge.c │ │ │ ├── smallplate.c │ │ │ ├── soulbottle.c │ │ │ ├── soulwound_con.c │ │ │ ├── soulwound_con_cha.c │ │ │ ├── soulwound_quon.c │ │ │ ├── spines.c │ │ │ ├── summon_rod.c │ │ │ ├── suneamulet.c │ │ │ ├── sunerings3.c │ │ │ ├── tentacle2.c │ │ │ ├── test.c │ │ │ ├── test2.c │ │ │ ├── test3.c │ │ │ ├── test4.c │ │ │ ├── testarmor.c │ │ │ ├── testformoradin.c │ │ │ ├── testheart.c │ │ │ ├── testring.c │ │ │ ├── thief.c │ │ │ ├── tombstone.c │ │ │ ├── tryrentunic.c │ │ │ ├── tusk.c │ │ │ ├── two.c │ │ │ ├── vheart.c │ │ │ ├── vheart2.c │ │ │ ├── voldranlance.c │ │ │ ├── vrockclaws.c │ │ │ ├── wailingchain.c │ │ │ ├── weave_eater.c │ │ │ ├── weavestrand.c │ │ │ ├── weddingringtorm.c │ │ │ ├── xorbag.c │ │ │ ├── xorrobe.c │ │ │ ├── xorrot.c │ │ │ ├── zombieclaws.c │ │ │ └── zombieshirt.c │ │ ├── mystra │ │ │ ├── Ancients.c │ │ │ ├── Behrahsorb.c │ │ │ ├── Drakkensboots.c │ │ │ ├── Evaspendant.c │ │ │ ├── Firesash.c │ │ │ ├── Hoodedcloakofconcealment.c │ │ │ ├── Ishiriskatana.c │ │ │ ├── Kaleshood.c │ │ │ ├── ZyrianCloak.c │ │ │ ├── ZyrianSword.c │ │ │ ├── ancient-spells │ │ │ ├── armor2.gar.12292001 │ │ │ ├── cosmicmirror.c │ │ │ ├── frostgreaves.c │ │ │ ├── lilysfan.c │ │ │ ├── marishosvest.c │ │ │ ├── mysticgoldegg.c │ │ │ ├── mysticredegg.c │ │ │ ├── scoopofpoop.c │ │ │ ├── skullofamidor.c │ │ │ ├── spiderdust.c │ │ │ ├── spurredboots.c │ │ │ └── wishingpouch.c │ │ ├── naramis │ │ │ ├── blue_hooded_robe.c │ │ │ ├── die.c │ │ │ └── strange_orb.c │ │ ├── nienne │ │ │ ├── adrianboots.c │ │ │ ├── akadiboots.c │ │ │ ├── akadibracers.c │ │ │ ├── akadichain.c │ │ │ ├── akadifan.c │ │ │ ├── akadigloves.c │ │ │ ├── akadileather.c │ │ │ ├── akadirobes.c │ │ │ ├── alignmark.c │ │ │ ├── alzar-shoulderplates.c │ │ │ ├── amulet │ │ │ │ ├── _aspect_of_the_bear.c │ │ │ │ ├── _aspect_of_the_cheetah.c │ │ │ │ ├── _aspect_of_the_owl.c │ │ │ │ ├── _aspect_of_the_panther.c │ │ │ │ ├── _aspect_of_the_trees.c │ │ │ │ ├── _aspect_of_the_waters.c │ │ │ │ ├── _aspect_of_the_winds.c │ │ │ │ ├── _aspect_of_the_wolf.c │ │ │ │ ├── _aura_of_radiance.c │ │ │ │ ├── _shadow_walk.c │ │ │ │ ├── _summon_companion_balur.c │ │ │ │ ├── _summon_locusts.c │ │ │ │ ├── invisobcl.c │ │ │ │ ├── locust.c │ │ │ │ └── scompanionbalur.c │ │ │ ├── appcuffs.c │ │ │ ├── arcanistcloak.c │ │ │ ├── arithesuss1.c │ │ │ ├── artifact.c │ │ │ ├── artifact1.c │ │ │ ├── artifact2.c │ │ │ ├── artifact3.c │ │ │ ├── arvellonamulet.c │ │ │ ├── aurilchain.c │ │ │ ├── aurilring.c │ │ │ ├── auriltrinket.c │ │ │ ├── avengerharry.c │ │ │ ├── avengersaradin.c │ │ │ ├── balurhat.c │ │ │ ├── banegem.c │ │ │ ├── banering.c │ │ │ ├── banerobe.c │ │ │ ├── battlehorn.c │ │ │ ├── beastclaws.c │ │ │ ├── beastgloves.c │ │ │ ├── belt1.c │ │ │ ├── belt2.c │ │ │ ├── bennylance.c │ │ │ ├── bindings.c │ │ │ ├── bodysuit.c │ │ │ ├── box.c │ │ │ ├── bregantree.c │ │ │ ├── bunny.c │ │ │ ├── chainwhip.c │ │ │ ├── chalice.c │ │ │ ├── ciannadisks.c │ │ │ ├── cieniapipe.c │ │ │ ├── circleoflight-seal.c │ │ │ ├── corelloncirclet.c │ │ │ ├── creepingmail.c │ │ │ ├── cyricbracelets.c │ │ │ ├── cyricbracers.c │ │ │ ├── cyricmailrobe.c │ │ │ ├── darknessring.c │ │ │ ├── decanter.c │ │ │ ├── demonblade.c │ │ │ ├── demonbracers.c │ │ │ ├── dinnerplate.c │ │ │ ├── dithaswyvern.c │ │ │ ├── doll.c │ │ │ ├── dorje-hairpin.c │ │ │ ├── dragonet.c │ │ │ ├── dragonetring.c │ │ │ ├── dragonlair │ │ │ │ ├── beastmen.c │ │ │ │ ├── beastmen2.c │ │ │ │ ├── caravan.c │ │ │ │ ├── clearing.c │ │ │ │ ├── demiplane.c │ │ │ │ ├── desert.c │ │ │ │ ├── drowpocket1.c │ │ │ │ ├── drowpocket2.c │ │ │ │ ├── drowpocket3.c │ │ │ │ ├── drowpocket4.c │ │ │ │ ├── drowpocket5.c │ │ │ │ ├── lair.c │ │ │ │ ├── ledge.c │ │ │ │ ├── plotbeast1.c │ │ │ │ ├── plotbeast2.c │ │ │ │ ├── plotbeast3.c │ │ │ │ ├── ranger.c │ │ │ │ ├── seraph.c │ │ │ │ ├── shack.c │ │ │ │ ├── shadowdragon.c │ │ │ │ ├── sky.c │ │ │ │ ├── tunnel1.c │ │ │ │ ├── tunnel2.c │ │ │ │ ├── tunnel3.c │ │ │ │ ├── tunnel4.c │ │ │ │ ├── tunnel5.c │ │ │ │ └── village.c │ │ │ ├── dragonscales.c │ │ │ ├── dragontattoo.c │ │ │ ├── dragontome.c │ │ │ ├── drowdagger.c │ │ │ ├── drowgown.c │ │ │ ├── drowmoonblade.c │ │ │ ├── drowpants.c │ │ │ ├── dwarfhorn.c │ │ │ ├── easteregg.c │ │ │ ├── elendor1.c │ │ │ ├── elfboots.c │ │ │ ├── elfbracers.c │ │ │ ├── elfbracers2.c │ │ │ ├── ellorabracelets.c │ │ │ ├── elvenchain.c │ │ │ ├── elvennecklace.c │ │ │ ├── elvenplate.c │ │ │ ├── elvenrobes.c │ │ │ ├── elvenrobesnew.c │ │ │ ├── enenra-horns.c │ │ │ ├── eoincloak.c │ │ │ ├── featheredhat.c │ │ │ ├── featheredhat2.c │ │ │ ├── feycharm.c │ │ │ ├── feystag.c │ │ │ ├── fingerring.c │ │ │ ├── flame_scythe.c │ │ │ ├── flamearmor.c │ │ │ ├── flashbang.c │ │ │ ├── flower.c │ │ │ ├── foldedtent.c │ │ │ ├── gaiusgem.c │ │ │ ├── geist.c │ │ │ ├── gemstone.c │ │ │ ├── gmr_ring.c │ │ │ ├── goldenlotus.c │ │ │ ├── goldring.c │ │ │ ├── golem.c │ │ │ ├── golemrod.c │ │ │ ├── greaterrop.c │ │ │ ├── grigilcoat.c │ │ │ ├── gsunblade.c │ │ │ ├── hairpin.c │ │ │ ├── hairpin2.c │ │ │ ├── hanaligown.c │ │ │ ├── harrisword.c │ │ │ ├── hashibox.c │ │ │ ├── helmcape.c │ │ │ ├── herbbag.c │ │ │ ├── herobook.c │ │ │ ├── invisring.c │ │ │ ├── istishia_chain.c │ │ │ ├── istishiaring.c │ │ │ ├── joebob.c │ │ │ ├── jysibyllsandals.c │ │ │ ├── kelemvorrobe.c │ │ │ ├── kimono.c │ │ │ ├── kiyabracelet.c │ │ │ ├── knightboots.c │ │ │ ├── koboldrobe.c │ │ │ ├── kossboots.c │ │ │ ├── lathrobe.c │ │ │ ├── lenses.c │ │ │ ├── lichring.c │ │ │ ├── limitlessquiver.c │ │ │ ├── logosbandage.c │ │ │ ├── lolthchain.c │ │ │ ├── lovgauntlets.c │ │ │ ├── lovimark.c │ │ │ ├── loviteamulet.c │ │ │ ├── loviteboots.c │ │ │ ├── lovitechoker.c │ │ │ ├── lovitekimono.c │ │ │ ├── loviterobes.c │ │ │ ├── maelstromblade.c │ │ │ ├── mage_akadi.c │ │ │ ├── malarpendant.c │ │ │ ├── marhtesa.c │ │ │ ├── mark.c │ │ │ ├── maskarmlet.c │ │ │ ├── maskboots.c │ │ │ ├── maskbracers.c │ │ │ ├── maskbracers2.c │ │ │ ├── maskgloves.c │ │ │ ├── masqueradebag.c │ │ │ ├── masqueradering.c │ │ │ ├── mastervi.c │ │ │ ├── mendingprism.c │ │ │ ├── messmedallion.c │ │ │ ├── mieamulet.c │ │ │ ├── miering.c │ │ │ ├── miespear.c │ │ │ ├── mililamulet.c │ │ │ ├── minedeed.c │ │ │ ├── mnelabelt.c │ │ │ ├── mnelarobe.c │ │ │ ├── monkey.c │ │ │ ├── moonblade1.c │ │ │ ├── mooncrystal.c │ │ │ ├── moonorb.c │ │ │ ├── moonscepter.c │ │ │ ├── mottledleather.c │ │ │ ├── mystra2.c │ │ │ ├── mystraring.c │ │ │ ├── mystrarobes.c │ │ │ ├── mystratattoo.c │ │ │ ├── newsymbol.c │ │ │ ├── nosering.c │ │ │ ├── ogregauntlets.c │ │ │ ├── ogrestaff.c │ │ │ ├── ointment.c │ │ │ ├── oldstaff.c │ │ │ ├── orisword1.c │ │ │ ├── orisword2.c │ │ │ ├── painting.c │ │ │ ├── painting2.c │ │ │ ├── painting3.c │ │ │ ├── party │ │ │ │ ├── attendant.c │ │ │ │ └── baglady.c │ │ │ ├── phoenixbrooch.c │ │ │ ├── poisonring.c │ │ │ ├── punkearrings.c │ │ │ ├── puppy.c │ │ │ ├── puppyring.c │ │ │ ├── quilt.c │ │ │ ├── rainbowbangles.c │ │ │ ├── ranger_akadi.c │ │ │ ├── rangergloves.c │ │ │ ├── raveenaflower.c │ │ │ ├── ravenamulet.c │ │ │ ├── rebirthkelemvoramulet.c │ │ │ ├── rebirthsharamulet.c │ │ │ ├── rebirthsilvamulet.c │ │ │ ├── regenring.c │ │ │ ├── ring_nighthunter.c │ │ │ ├── ring_sinister.c │ │ │ ├── ringofwarding.c │ │ │ ├── ryzansheath.c │ │ │ ├── sapp_short.c │ │ │ ├── saturninamesh.c │ │ │ ├── scale.c │ │ │ ├── scythe_shadow.c │ │ │ ├── selka.c │ │ │ ├── selkaring.c │ │ │ ├── selkascar.c │ │ │ ├── selunebracers.c │ │ │ ├── selunecape.c │ │ │ ├── selunechain.c │ │ │ ├── shadowass.c │ │ │ ├── shadowbracers.c │ │ │ ├── shadowclaws.c │ │ │ ├── shadowcloak.c │ │ │ ├── shadowdancer.c │ │ │ ├── shadowgloves.c │ │ │ ├── shadowrobe.c │ │ │ ├── shar_gloves.c │ │ │ ├── sharbodice.c │ │ │ ├── sharcoat.c │ │ │ ├── sharcoatpocket.c │ │ │ ├── shartalisman.c │ │ │ ├── shartattoo.c │ │ │ ├── shaunbracelet.c │ │ │ ├── shaunquiver.c │ │ │ ├── shrycirclet.c │ │ │ ├── sierraskull.c │ │ │ ├── silessespear.c │ │ │ ├── silverfirecrown.c │ │ │ ├── spellbooktest.c │ │ │ ├── spellorb-ansekin.c │ │ │ ├── spellorb.c │ │ │ ├── spells │ │ │ │ ├── _alter_self_feyri.c │ │ │ │ ├── _moonfire.c │ │ │ │ ├── _moonlight_protection.c │ │ │ │ ├── _moonmote_dispel.c │ │ │ │ ├── _sonic_shield.c │ │ │ │ ├── _static_field.c │ │ │ │ └── skelemount.c │ │ │ ├── sphere.c │ │ │ ├── spider.c │ │ │ ├── spiderring.c │ │ │ ├── statblade.c │ │ │ ├── stone.c │ │ │ ├── stoneaxe.c │ │ │ ├── stonebreaker.c │ │ │ ├── stonestrap.c │ │ │ ├── sunerapier.c │ │ │ ├── sunewimple.c │ │ │ ├── swtattoo.c │ │ │ ├── talosblade.c │ │ │ ├── taloscloak.c │ │ │ ├── tazbracers.c │ │ │ ├── telepathycirclet.c │ │ │ ├── tempusplate.c │ │ │ ├── tempusrobes.c │ │ │ ├── tent.c │ │ │ ├── teroaiechoes.c │ │ │ ├── testobj.c │ │ │ ├── testobj2.c │ │ │ ├── testsphere.c │ │ │ ├── thebastard.c │ │ │ ├── thelbracelets.c │ │ │ ├── thunderspear.c │ │ │ ├── tikanbracers.c │ │ │ ├── tissue.c │ │ │ ├── torellanhoop.c │ │ │ ├── tormentorb.c │ │ │ ├── tormhelm.c │ │ │ ├── tormlance.c │ │ │ ├── tpboots.c │ │ │ ├── tpbootsadder.c │ │ │ ├── tpbootslesser.c │ │ │ ├── trilletsword.c │ │ │ ├── tunics.c │ │ │ ├── tymoraanklet.c │ │ │ ├── tymorabracers.c │ │ │ ├── tymorabracers2.c │ │ │ ├── tymoraplate.c │ │ │ ├── tyrgloves.c │ │ │ ├── tyrgloves2.c │ │ │ ├── tyrsash.c │ │ │ ├── unicorntoy.c │ │ │ ├── vajraknuckles.c │ │ │ ├── valashat.c │ │ │ ├── vecna │ │ │ │ ├── apprentice.c │ │ │ │ ├── mage1.c │ │ │ │ ├── mage2.c │ │ │ │ ├── mage3.c │ │ │ │ ├── vecna.c │ │ │ │ └── vecnasymbol.c │ │ │ ├── vecnahand.c │ │ │ ├── viaghgreaves.c │ │ │ ├── vincentbow.c │ │ │ ├── vocalamulet.c │ │ │ ├── wargecko.c │ │ │ ├── waterkimono.c │ │ │ ├── weighteddie.c │ │ │ ├── wererat.c │ │ │ ├── werewolf.c │ │ │ ├── wizstick.c │ │ │ ├── wolf.c │ │ │ ├── wolfhelm.c │ │ │ ├── woodsmanshirt.c │ │ │ ├── yukigloves.c │ │ │ └── zarcicebead.c │ │ ├── octothorpe │ │ │ ├── _acid_shield.c │ │ │ ├── _electric_shield.c │ │ │ ├── _fire_shield.c │ │ │ ├── _gas_shield.c │ │ │ ├── _ice_shield.c │ │ │ ├── bonestripper.c │ │ │ ├── devil_mark.c │ │ │ ├── dragoncloak.c │ │ │ ├── drow_phial.c │ │ │ ├── drowchain.c │ │ │ ├── emgem.c │ │ │ ├── extradsash.c │ │ │ ├── gsword.c │ │ │ ├── kainhand.c │ │ │ ├── karmor.c │ │ │ ├── nightmare.c │ │ │ ├── nightydsp.c │ │ │ └── valkyrplate.c │ │ ├── oghma │ │ │ ├── hat.c │ │ │ └── swordofknowledge.c │ │ ├── oghmaold │ │ │ ├── armorsmithtoolset.c │ │ │ ├── basil.c │ │ │ ├── bat.c │ │ │ ├── browncottonpants.c │ │ │ ├── chinchilla.c │ │ │ ├── closedcrate.c │ │ │ ├── crysknife.c │ │ │ ├── crysknife_new.c │ │ │ ├── diamonddust.c │ │ │ ├── drowskinmagehat.c │ │ │ ├── elfbloodbracelet.c │ │ │ ├── elfchild.c │ │ │ ├── everythingtools.c │ │ │ ├── ferret.c │ │ │ ├── gigi_anvil.c │ │ │ ├── girlheadpike.c │ │ │ ├── gnomishspectacles.c │ │ │ ├── hamster.c │ │ │ ├── handreplacement.c │ │ │ ├── healerskit.c │ │ │ ├── jewellingkit.c │ │ │ ├── kaeangems.c │ │ │ ├── meteor.c │ │ │ ├── meteoricmithril.c │ │ │ ├── mithrilhook.c │ │ │ ├── moonshine.c │ │ │ ├── niennephoto.c │ │ │ ├── nightscloak.c │ │ │ ├── noblemanspants.c │ │ │ ├── ocrate.c │ │ │ ├── oregano.c │ │ │ ├── pepper.c │ │ │ ├── peppermint.c │ │ │ ├── purplesuedepants.c │ │ │ ├── quill1.c │ │ │ ├── quill2.c │ │ │ ├── quill3.c │ │ │ ├── quill4.c │ │ │ ├── rangerarmor.c │ │ │ ├── rum.c │ │ │ ├── runeofugliness.c │ │ │ ├── runeparchment.c │ │ │ ├── salt.c │ │ │ ├── sball2.c │ │ │ ├── sealedletter.c │ │ │ ├── sewingkit.c │ │ │ ├── shortsleevedshirt.c │ │ │ ├── shotokanfist1.c │ │ │ ├── shotokanfist2.c │ │ │ ├── skinningknife.c │ │ │ ├── skinningknife2.c │ │ │ ├── skinningknife3.c │ │ │ ├── skinningknife4.c │ │ │ ├── skinningknife5.c │ │ │ ├── sledgeomatic.c │ │ │ ├── smithyhammer1.c │ │ │ ├── smithyhammer2.c │ │ │ ├── smithyhammer3.c │ │ │ ├── spurs.c │ │ │ ├── stabbyquill.c │ │ │ ├── stephencoat.c │ │ │ ├── tengrianvil.c │ │ │ ├── tengrispecialhammer.c │ │ │ ├── tyrranbook.c │ │ │ ├── uraplate.c │ │ │ ├── vialofblood.c │ │ │ ├── vodka.c │ │ │ ├── weaponsmithtoolset.c │ │ │ ├── whiskey.c │ │ │ ├── wine.c │ │ │ └── woodlandarmor.c │ │ ├── saide │ │ │ ├── cult_amulet.c │ │ │ ├── ethereal_scimitar.c │ │ │ ├── felroot.c │ │ │ ├── halloweenpumpkin.c │ │ │ ├── olafnote.c │ │ │ ├── onyx_knight.c │ │ │ ├── perfume1.c │ │ │ ├── perfume2.c │ │ │ ├── perfume3.c │ │ │ ├── testerobj.c │ │ │ ├── testobj.c │ │ │ ├── testobject2.c │ │ │ ├── testsword.c │ │ │ ├── testsword2.c │ │ │ └── trollwarts.c │ │ ├── sayed │ │ │ ├── barmor.c │ │ │ ├── lstaff.c │ │ │ └── recurved_bow.c │ │ ├── selune.old │ │ │ ├── moonpendant.c │ │ │ └── sisters.coin.c │ │ ├── selune │ │ │ ├── beauty_pendant.c │ │ │ ├── beautypendant.c │ │ │ ├── blackrose.c │ │ │ ├── body.c │ │ │ ├── braceletofcontrol.c │ │ │ ├── chalk.c │ │ │ ├── circle.c │ │ │ ├── coatofarms.c │ │ │ ├── corpseshayna.c │ │ │ ├── crimsonrobe.c │ │ │ ├── dragonrobe.c │ │ │ ├── drawing.c │ │ │ ├── eiryashapatent.c │ │ │ ├── gemofreasoning.c │ │ │ ├── moonthingie.c │ │ │ ├── moonthingie2.c │ │ │ ├── mrynalairobe.c │ │ │ ├── mydress.c │ │ │ ├── necklaceofbeauty.c │ │ │ ├── nfsword.c │ │ │ ├── nightfallsword.c │ │ │ ├── peace.c │ │ │ ├── peacefulrest.c │ │ │ ├── pieceofcloth.c │ │ │ ├── poetry_orb.c │ │ │ ├── poetry_statue.c │ │ │ ├── robethingie.c │ │ │ ├── robethingie2.c │ │ │ ├── rubberboot.c │ │ │ ├── selunesdress.c │ │ │ ├── shaynacorpse.c │ │ │ ├── stick.c │ │ │ └── towels.c │ │ ├── shar │ │ │ ├── airvest2.c │ │ │ ├── anniversary.c │ │ │ ├── anniversarycake.c │ │ │ ├── archmagerobe.c │ │ │ ├── aurilcirclet.c │ │ │ ├── banegauntlet.c │ │ │ ├── bitchbadge.c │ │ │ ├── burninghands.c │ │ │ ├── catmask.c │ │ │ ├── cestus2.c │ │ │ ├── champagne.c │ │ │ ├── chillingtouch.c │ │ │ ├── cyricpriest.c │ │ │ ├── dawnsurcoat.c │ │ │ ├── disknight.c │ │ │ ├── felineglove.c │ │ │ ├── frostfirefear.c │ │ │ ├── glassengagementband.c │ │ │ ├── ivorytorque2.c │ │ │ ├── kylix.c │ │ │ ├── lawbook2.c │ │ │ ├── loviterobes.c │ │ │ ├── malarclaws.c │ │ │ ├── malarheart.c │ │ │ ├── moonfirebracers.c │ │ │ ├── permafrosthands.c │ │ │ ├── platinumbreast.c │ │ │ ├── shadowclasp.c │ │ │ ├── shadowweavetome.c │ │ │ ├── shargown.c │ │ │ ├── shockinggrasp.c │ │ │ ├── starlightgown.c │ │ │ ├── tempusblood.c │ │ │ ├── thieftoolsA.c │ │ │ ├── thieftoolsB.c │ │ │ ├── thieftoolsC.c │ │ │ ├── tormrobes.c │ │ │ ├── twilighthelm.c │ │ │ ├── tymoracleric.c │ │ │ ├── vivianring.c │ │ │ ├── windamulet.c │ │ │ └── zephyr2.c │ │ ├── silvanus │ │ │ ├── a_diamond.c │ │ │ ├── ascroll1.c │ │ │ ├── ascroll2.c │ │ │ ├── carendore_ring.c │ │ │ ├── contact_scroll1.c │ │ │ ├── contact_scroll2.c │ │ │ ├── crimson_bracers2.c │ │ │ ├── cube.c │ │ │ ├── dagger.c │ │ │ ├── death_skull.c │ │ │ ├── diamond_blade.c │ │ │ ├── diamond_helm.c │ │ │ ├── diamond_shard.c │ │ │ ├── doublet.c │ │ │ ├── dwarven_battleplate2.c │ │ │ ├── dwarven_cloak1.c │ │ │ ├── dwarven_helm1.c │ │ │ ├── dwarven_robe.c │ │ │ ├── ebon_sword.c │ │ │ ├── ebony_armor.c │ │ │ ├── ebony_axe.c │ │ │ ├── elfshine2.c │ │ │ ├── forging_hammer.c │ │ │ ├── frostreaver2.c │ │ │ ├── gamulet.c │ │ │ ├── gloom_shield1.c │ │ │ ├── glove1.c │ │ │ ├── gloves2.c │ │ │ ├── gown.c │ │ │ ├── heart_locket.c │ │ │ ├── holder.c │ │ │ ├── hosscroll1.c │ │ │ ├── hosscroll2.c │ │ │ ├── ivory_bracers.c │ │ │ ├── j_sblade.c │ │ │ ├── l_ccoif.c │ │ │ ├── letter.c │ │ │ ├── m_chainmail.c │ │ │ ├── mystic_chainmail.c │ │ │ ├── n_wrath.c │ │ │ ├── note2.c │ │ │ ├── nscroll1.c │ │ │ ├── nscroll2.c │ │ │ ├── nscroll3.c │ │ │ ├── nscroll4.c │ │ │ ├── obsidian_orb1.c │ │ │ ├── os_boots.c │ │ │ ├── parchment.c │ │ │ ├── pendant.c │ │ │ ├── plaque.c │ │ │ ├── razor.c │ │ │ ├── ring_of_light.c │ │ │ ├── robe1.c │ │ │ ├── robe2.c │ │ │ ├── rose_whip.c │ │ │ ├── shadow_herb.c │ │ │ ├── shadow_robe.c │ │ │ ├── snake's_fang.c │ │ │ ├── soul_hammer.c │ │ │ ├── soul_hammer1.c │ │ │ ├── soul_hammer2.c │ │ │ ├── souls_gem.c │ │ │ ├── souls_gem1.c │ │ │ ├── souls_gem2.c │ │ │ ├── souls_gem3.c │ │ │ ├── souls_gem4.c │ │ │ ├── statue.c │ │ │ ├── veil.c │ │ │ └── wind_staff.c │ │ ├── sune │ │ │ ├── loincloth.c │ │ │ ├── nipple.c │ │ │ ├── scaleloin.c │ │ │ └── wolfg.c │ │ ├── thorn │ │ │ └── dairobe.c │ │ ├── tiamat │ │ │ ├── Anhur_shield.c │ │ │ ├── Tiamat_keep_key.c │ │ │ ├── Tiamat_scales.c │ │ │ ├── Tiamat_scales2.c │ │ │ ├── alchemist_robe.c │ │ │ ├── ancient_shield.c │ │ │ ├── anhur_runes.c │ │ │ ├── armed_trophy.c │ │ │ ├── azure_runes.c │ │ │ ├── balgus_plate.c │ │ │ ├── balgus_sword.c │ │ │ ├── bat_cloak.c │ │ │ ├── bear_cloak.c │ │ │ ├── bear_hood.c │ │ │ ├── beauty_veil.c │ │ │ ├── bentalf_lance.c │ │ │ ├── blue_key.c │ │ │ ├── bondage_pants.c │ │ │ ├── bone_armor.c │ │ │ ├── borden_armor.c │ │ │ ├── brandy.c │ │ │ ├── bug_helm.c │ │ │ ├── candykey.c │ │ │ ├── carapace_plate.c │ │ │ ├── carrot.c │ │ │ ├── chain_devil.c │ │ │ ├── claws.c │ │ │ ├── cookie_blank.c │ │ │ ├── coral_spear.c │ │ │ ├── crutch.c │ │ │ ├── crystal_skull.c │ │ │ ├── dagger_war.c │ │ │ ├── damadder15.c │ │ │ ├── damadder25.c │ │ │ ├── damadder45.c │ │ │ ├── dance_trophy.c │ │ │ ├── dark_greaves.c │ │ │ ├── dedicant_mask.c │ │ │ ├── deft_gloves.c │ │ │ ├── devil_chain.c │ │ │ ├── dragon_heart.c │ │ │ ├── dragon_scale.c │ │ │ ├── drink_trophy.c │ │ │ ├── drinkz.c │ │ │ ├── earthgauntlet.c │ │ │ ├── emace_disr.c │ │ │ ├── eversor_collar.c │ │ │ ├── eye_storm.c │ │ │ ├── eyestalks.c │ │ │ ├── fingerless_gloves.c │ │ │ ├── fishy_shirt.c │ │ │ ├── flumask.c │ │ │ ├── foodz.c │ │ │ ├── fur_coat.c │ │ │ ├── gator_hide.c │ │ │ ├── generic_greaves.c │ │ │ ├── genericweapon.c │ │ │ ├── gentle_gloves.c │ │ │ ├── ghostaxe.c │ │ │ ├── ghoultouch.c │ │ │ ├── golem_tome.c │ │ │ ├── great_coat.c │ │ │ ├── hag_cane.c │ │ │ ├── haghat.c │ │ │ ├── hawk_maks.c │ │ │ ├── helm_plate.c │ │ │ ├── hide_robe.c │ │ │ ├── honey.c │ │ │ ├── invis_mark.c │ │ │ ├── jav_trophy.c │ │ │ ├── jester_boots.c │ │ │ ├── key_castle.c │ │ │ ├── lance_bentalf.c │ │ │ ├── lance_lion.c │ │ │ ├── lionblade.c │ │ │ ├── mace_disr.c │ │ │ ├── mask_armor.c │ │ │ ├── mon │ │ │ │ ├── eversor_hyena.c │ │ │ │ └── eversor_hyena2.c │ │ │ ├── moss_cloak.c │ │ │ ├── new_scalpel.c │ │ │ ├── olive_oil.c │ │ │ ├── partytable.c │ │ │ ├── partytable2.c │ │ │ ├── plaid_robe.c │ │ │ ├── powder_case.c │ │ │ ├── psi_blade.c │ │ │ ├── psi_staff.c │ │ │ ├── pwner.c │ │ │ ├── race_trophy.c │ │ │ ├── red_key.c │ │ │ ├── reinforce.c │ │ │ ├── rose_plate.c │ │ │ ├── saffron.c │ │ │ ├── shab_skin.c │ │ │ ├── shadow_vest.c │ │ │ ├── shamrock.c │ │ │ ├── ship_key.c │ │ │ ├── sinthiaarmor.c │ │ │ ├── slaadclaw.c │ │ │ ├── smokeboots.c │ │ │ ├── snuggie.c │ │ │ ├── spiked_boots.c │ │ │ ├── sting_arm.c │ │ │ ├── stripe_stockings.c │ │ │ ├── tailslap.c │ │ │ ├── test2.c │ │ │ ├── testgo.c │ │ │ ├── tiara_bug.c │ │ │ ├── tsarven_lance.c │ │ │ ├── turtle_shield.c │ │ │ ├── urban_camo.c │ │ │ ├── vinegar.c │ │ │ ├── white_dragon.c │ │ │ ├── woe_armor.c │ │ │ ├── wolfsbane.c │ │ │ ├── woodarmor.c │ │ │ ├── wow_sword.c │ │ │ └── wrestle_trophy.c │ │ ├── torm │ │ │ ├── aqueousarmour.c │ │ │ ├── avatarjacket.c │ │ │ ├── bodice.c │ │ │ ├── bowl.c │ │ │ ├── bowsaw.c │ │ │ ├── cknife.c │ │ │ ├── dolly.c │ │ │ ├── drowamulet.c │ │ │ ├── drowdress.c │ │ │ ├── flute.c │ │ │ ├── helm_chess.c │ │ │ ├── jewel.c │ │ │ ├── leafarmour.c │ │ │ ├── leathercoat.c │ │ │ ├── lockedbox.c │ │ │ ├── loupe.c │ │ │ ├── moonstonearmour.c │ │ │ ├── mystrarose.c │ │ │ ├── netarmour.c │ │ │ ├── oldkatana.c │ │ │ ├── puzzlering.c │ │ │ ├── quill.c │ │ │ ├── scraper.c │ │ │ ├── scroll_case.c │ │ │ ├── sewingkit.c │ │ │ ├── snowsaw.c │ │ │ ├── souleater.c │ │ │ ├── spheres.c │ │ │ ├── splendidrobes.c │ │ │ ├── sunrisearmour.c │ │ │ ├── surcoat.c │ │ │ ├── swordcare.c │ │ │ ├── swordhilt.c │ │ │ └── tachi.c │ │ ├── torm_rid │ │ │ ├── akadihead.c │ │ │ ├── bloodvial.c │ │ │ ├── defenderJ.c │ │ │ ├── devineplate.c │ │ │ ├── evraewynpants.c │ │ │ ├── glassrobe.c │ │ │ ├── greatshield.c │ │ │ ├── hardleatherboots.c │ │ │ ├── ladyrobestorm.c │ │ │ ├── lollipop.c │ │ │ ├── redpants.c │ │ │ ├── rose_ring.c │ │ │ ├── saradinbrooch.c │ │ │ └── sunderhammer.c │ │ ├── tristan │ │ │ ├── armor.c │ │ │ ├── armor2.c │ │ │ ├── axe1.c │ │ │ ├── jarofblood.c │ │ │ ├── notpball.c │ │ │ ├── pocket.c │ │ │ ├── pocket2.c │ │ │ ├── scimitar.c │ │ │ ├── test.c │ │ │ └── test2.c │ │ ├── tsera │ │ │ ├── aarmor.c │ │ │ ├── aarmor2.c │ │ │ ├── anerobes.c │ │ │ ├── aramelhelm.c │ │ │ ├── archrobes.c │ │ │ ├── arhat.c │ │ │ ├── arrowdam.c │ │ │ ├── asheath.c │ │ │ ├── beshabadie.c │ │ │ ├── ccase.c │ │ │ ├── chest.c │ │ │ ├── darkbracelets.c │ │ │ ├── darkshadow.c │ │ │ ├── dleggings.c │ │ │ ├── elfcrux.c │ │ │ ├── enrapture.c │ │ │ ├── esword.c │ │ │ ├── eyepatch.c │ │ │ ├── festival │ │ │ │ ├── flamerose.c │ │ │ │ ├── handmirror.c │ │ │ │ └── mask_jester_torm.c │ │ │ ├── flamerose.c │ │ │ ├── freewind.c │ │ │ ├── girruuth_box1.c │ │ │ ├── hknife.c │ │ │ ├── malarpendant.c │ │ │ ├── marikapike.c │ │ │ ├── maskdagger.c │ │ │ ├── mooncirclet.c │ │ │ ├── nightyds.c │ │ │ ├── nightydsp.c │ │ │ ├── nymeriasword.c │ │ │ ├── painting.c │ │ │ ├── rapierdam.c │ │ │ ├── rarmor.c │ │ │ ├── rock.c │ │ │ ├── sarmor.c │ │ │ ├── scat.c │ │ │ ├── scat2.c │ │ │ ├── scorp.c │ │ │ ├── shadowrobes.c │ │ │ ├── shifterrobes.c │ │ │ ├── smon.c │ │ │ ├── smontest.c │ │ │ ├── solar.c │ │ │ ├── songblade.c │ │ │ ├── stormrapier.c │ │ │ ├── succubus.c │ │ │ ├── tasword.c │ │ │ ├── taswordany.c │ │ │ ├── tlance.c │ │ │ └── wdress.c │ │ ├── tyr │ │ │ ├── Tyrsrobe.c │ │ │ ├── boychild.c │ │ │ └── mask1.c │ │ ├── valkur │ │ │ ├── arvandor.c │ │ │ ├── blackcoat.c │ │ │ ├── drinkz.c │ │ │ ├── foodz.c │ │ │ ├── myitem.c │ │ │ ├── taint.c │ │ │ ├── tainted.c │ │ │ ├── tainted_gar.c │ │ │ └── testdagger.c │ │ ├── velsharoon │ │ │ ├── badgerarmor.c │ │ │ ├── coral_trident.c │ │ │ ├── develance.c │ │ │ ├── devesword.c │ │ │ ├── draconic_mind.c │ │ │ ├── drinkz.c │ │ │ ├── fatesembrace.c │ │ │ ├── foodz.c │ │ │ ├── jimimark.c │ │ │ ├── kenderspride.c │ │ │ ├── quillsword.c │ │ │ ├── sekolah_pendant.c │ │ │ ├── shadow.c │ │ │ ├── silkrobes.c │ │ │ ├── starsmajesty.c │ │ │ ├── stormarm.c │ │ │ ├── sunedoll.c │ │ │ ├── topaz_heart.c │ │ │ ├── trevizesword.c │ │ │ ├── urchin_stilleto.c │ │ │ ├── velcrown.c │ │ │ ├── velfang.c │ │ │ ├── velskull.c │ │ │ └── voideye.c │ │ └── xvim │ │ │ ├── Bantiochsword.c │ │ │ ├── BladeofHate.c │ │ │ ├── Braceletofspeed.c │ │ │ ├── Crystalplate.c │ │ │ ├── Crystalplate2.c │ │ │ ├── Dwarfrobe.c │ │ │ ├── DwarvenWR.c │ │ │ ├── Elvarobe.c │ │ │ ├── Greydonrobe.c │ │ │ ├── Lahnnasword.c │ │ │ ├── Lahnnasword2.c │ │ │ ├── Lahnnasword3.c │ │ │ ├── Lahnnasword4.c │ │ │ ├── NastyHammer.c │ │ │ ├── Sabreofthestones.c │ │ │ ├── ShadeDragonArmor2.c │ │ │ ├── ShadeDragonBoots.c │ │ │ ├── SwordOfWar.c │ │ │ ├── WoodenStake.c │ │ │ ├── Xvimweap.c │ │ │ ├── ambyjadew.c │ │ │ ├── ataarnecklace.c │ │ │ ├── ataarnecklace2.c │ │ │ ├── bdruidrobe.c │ │ │ ├── bloodring.c │ │ │ ├── cloakxvim.c │ │ │ ├── darumsword.c │ │ │ ├── darumsword2.c │ │ │ ├── desmondplate.c │ │ │ ├── desmondplate2.c │ │ │ ├── etarenaweapon.c │ │ │ ├── etarenaweapon2.c │ │ │ ├── flandarmor.c │ │ │ ├── gabrielleplate.c │ │ │ ├── gimlihelm.c │ │ │ ├── glovesofw.c │ │ │ ├── glovesofw2.c │ │ │ ├── greydonstaff.c │ │ │ ├── hammerspike1.c │ │ │ ├── iaidoamulet.c │ │ │ ├── jacobhead.c │ │ │ ├── kierarmor1.c │ │ │ ├── littleguysrobe3.c │ │ │ ├── pigstatue.c │ │ │ ├── rocarm.c │ │ │ ├── roccloth.c │ │ │ ├── sharstaff.c │ │ │ ├── shoeofwoe.c │ │ │ └── staffdruid.c │ ├── bane │ │ ├── 0002.c │ │ ├── bane001.c │ │ ├── bane002.c │ │ ├── bane003.c │ │ ├── baneaxe.c │ │ ├── bloodvial.c │ │ ├── body1.c │ │ ├── glickarmor001.c │ │ ├── lantern01.c │ │ ├── mystrarobes.c │ │ ├── og01.c │ │ ├── og02.c │ │ ├── og03.c │ │ ├── og04.c │ │ ├── og05.c │ │ ├── og06.c │ │ ├── og07.c │ │ ├── og08.c │ │ ├── og09.c │ │ ├── og10.c │ │ ├── ren1.c │ │ ├── selune001.c │ │ ├── selune2.c │ │ ├── shadowarmor001.c │ │ ├── shadowarmor002.c │ │ ├── shadowarmor003.c │ │ ├── shadowarmor004.c │ │ ├── shadowarmor005.c │ │ ├── shadowarmor006.c │ │ ├── teardrop01.c │ │ ├── test1.c │ │ ├── test2.c │ │ ├── testersword.c │ │ ├── testersword2.c │ │ ├── testersword3.c │ │ ├── testing111.c │ │ ├── whitecoat1.c │ │ └── zrikk1.c │ ├── beshaba │ │ ├── aitem.c │ │ ├── bindingamulet.c │ │ ├── cultaxe.c │ │ ├── gob_dagger.c │ │ ├── khagaxe.c │ │ ├── mithrilsword.c │ │ ├── ore.c │ │ ├── spellorb.c │ │ └── testobject.c │ ├── bhaal │ │ ├── bhaalfists.c │ │ ├── bhaalsgear.c │ │ ├── bhaalstuff.c │ │ ├── demonblade.c │ │ └── demonbracers.c │ ├── brandobaris │ │ ├── arcane_earcuff.c │ │ ├── arvellonamulet.c │ │ ├── bainaxe.c │ │ ├── baniteopal.c │ │ ├── boots_of_r_speed.c │ │ ├── brandoknife.c │ │ ├── brandosuit.c │ │ ├── con_surcoat.c │ │ ├── efrt_key.c │ │ ├── evokerfist.c │ │ ├── exoskeleton.c │ │ ├── fearamulet.c │ │ ├── frtpendant.c │ │ ├── frussplate.c │ │ ├── frussshield.c │ │ ├── gentleman_cane.c │ │ ├── immunity_ring.c │ │ ├── inferno_plate.c │ │ ├── large_treas.c │ │ ├── lathandertoken.c │ │ ├── med_treas.c │ │ ├── metaitem.c │ │ ├── nat_bracers.c │ │ ├── nhousekey.c │ │ ├── npc_shadow_cloud.c │ │ ├── npc_shadow_shroud.c │ │ ├── prop_eaten_corpse.c │ │ ├── ringofwarding.c │ │ ├── seeker_ring.c │ │ ├── shadow_clasp.c │ │ ├── shadowbaton.c │ │ ├── sierraskull.c │ │ ├── spectral_ring.c │ │ ├── spellring.c │ │ ├── stonecape.c │ │ ├── tormring.c │ │ ├── vanguard_wraps.c │ │ ├── wound_missing_hand.c │ │ └── zephyrsword.c │ ├── chronos │ │ ├── Faerzressband.c │ │ ├── Faerzressblade.c │ │ ├── aitem.c │ │ ├── blustud.c │ │ ├── bonebracers.c │ │ ├── codex.c │ │ ├── dagronz.c │ │ ├── oldsword.c │ │ ├── scale.c │ │ ├── starheart.c │ │ ├── talon.c │ │ ├── timerobe.c │ │ └── tombhammer.c │ ├── circe │ │ ├── anniversary.c │ │ ├── blah.c │ │ ├── brocaderobe.c │ │ ├── dust_mephit.c │ │ ├── guildring-bag.c │ │ ├── huggle_basher.c │ │ ├── imbued_starlight.c │ │ ├── inquisitor_lash.c │ │ ├── mistletoe.c │ │ ├── nhaelgors_tooth.c │ │ ├── pants.c │ │ ├── phoenix_aura.c │ │ ├── piaftools.c │ │ ├── redrobe.c │ │ ├── robes.c │ │ ├── saruhlbracelet.c │ │ ├── silesse_lotus.c │ │ ├── silverring.c │ │ ├── testsword.c │ │ ├── tigerseye.c │ │ ├── valsharess_gown.c │ │ ├── vic_silesse_lotus.c │ │ ├── witchlord_robe-improved.c │ │ └── witchlord_robe.c │ ├── cyric │ │ ├── adamshort.c │ │ ├── basicdagger.c │ │ ├── blackclaws.c │ │ ├── blackioun.c │ │ ├── blackmask.c │ │ ├── blueioun.c │ │ ├── busted.c │ │ ├── charredshield.c │ │ ├── contest.c │ │ ├── darkmask.c │ │ ├── diamonddagger.c │ │ ├── diamonddagger2.c │ │ ├── dogcollar.c │ │ ├── drowbook.c │ │ ├── drowpaper.c │ │ ├── fakebag.c │ │ ├── flamedgauntlets.c │ │ ├── flowers.c │ │ ├── greensabre.c │ │ ├── hand.c │ │ ├── incompglove.c │ │ ├── jademonkey.c │ │ ├── largesabre.c │ │ ├── leatherbelt.c │ │ ├── medcrutch.c │ │ ├── nightruby.c │ │ ├── phoenixegg.c │ │ ├── phoenixnest.c │ │ ├── piwafwi.c │ │ ├── platearring.c │ │ ├── polishedboots.c │ │ ├── profdagger.c │ │ ├── redioun.c │ │ ├── redribbon.c │ │ ├── shimmeringcape.c │ │ ├── skullmask.c │ │ ├── speciald.c │ │ ├── specialtest.c │ │ ├── specialweapon.c │ │ ├── steelsabre.c │ │ ├── test1.c │ │ ├── testarmor.c │ │ ├── testrobe.c │ │ ├── testshield.c │ │ ├── whiteflail.c │ │ └── yellowioun.c │ ├── cythera │ │ ├── Sungirdle.c │ │ ├── boa.c │ │ ├── cooshee.c │ │ ├── cooshee_whistle.c │ │ ├── eryinesleather.c │ │ ├── flamesilk.c │ │ ├── forestjerkin.c │ │ ├── harmonybracers.c │ │ ├── nightmare_robe.c │ │ ├── plot_beryl.c │ │ ├── plot_citrine.c │ │ ├── plot_diamond.c │ │ ├── plot_onyx.c │ │ ├── plot_pyrite.c │ │ ├── plot_reward.c │ │ ├── plot_ruby.c │ │ ├── plot_topaz.c │ │ ├── rand_leath_head.c │ │ ├── thayildress.c │ │ └── tower.c │ ├── dalmion │ │ └── elfshine.c │ ├── dinji │ │ ├── L_sword.c │ │ ├── flowsteel.c │ │ ├── folded_screen.c │ │ ├── maestro.c │ │ ├── n_gauntlets.c │ │ ├── r_jingle.c │ │ ├── reward.c │ │ ├── rod.c │ │ ├── screen.c │ │ ├── sstep.c │ │ └── windcape.c │ ├── eldath │ │ └── iceblade.c │ ├── gargauth │ │ ├── blackdagger.c │ │ ├── brokenring.c │ │ ├── goboring.c │ │ ├── grokhelm.c │ │ ├── ringofdex+1.c │ │ ├── ringofdext+1.c │ │ └── spellbook.c │ ├── garrett │ │ ├── deepplate.c │ │ ├── fakeweddingring.c │ │ ├── satchel.c │ │ ├── stabdagger.c │ │ ├── twinkmasher.c │ │ └── weight.c │ ├── grumbar │ │ ├── blades2.c │ │ ├── blades4.c │ │ ├── bomb.c │ │ ├── bomb1.c │ │ ├── bomb5.c │ │ ├── boots1.c │ │ ├── cloak1.c │ │ ├── cloak2.c │ │ ├── dagger1.c │ │ ├── dagger2.c │ │ ├── dagger3.c │ │ ├── dagger5.c │ │ ├── daggerrilyrr.c │ │ ├── drowdagger.c │ │ ├── firstplot.c │ │ ├── grlance.c │ │ ├── grobe1.c │ │ ├── grumbarhammer.c │ │ ├── grumbarsword2.c │ │ ├── grumlance.c │ │ ├── hammer.c │ │ ├── kelemlance.c │ │ ├── kelemvorslance.c │ │ ├── klinquemask.c │ │ ├── klinquemask3.c │ │ ├── knuckles5.c │ │ ├── lancewren1.c │ │ ├── mask2.c │ │ ├── mask3.c │ │ ├── mask4.c │ │ ├── mask5.c │ │ ├── oakclub.c │ │ ├── oldelfsword.c │ │ ├── plate1.c │ │ ├── rilyrrdagger.c │ │ ├── rilyrrobe.c │ │ ├── rilyrrrobe.c │ │ ├── ring1.c │ │ ├── robe1.c │ │ ├── roberilyrr.c │ │ ├── smalld1.c │ │ ├── smclub1.c │ │ ├── testmace.c │ │ ├── testsword.c │ │ ├── testweapon1.c │ │ ├── weapon5.c │ │ └── wrenlance2.c │ ├── hades │ │ ├── agechains.c │ │ ├── amulet.c │ │ ├── bjar.c │ │ ├── csong.c │ │ ├── dbracer.c │ │ ├── feystone.c │ │ ├── feystone1.c │ │ ├── feystone2.c │ │ ├── ill.c │ │ ├── jar.c │ │ ├── na_compbag.c │ │ ├── na_satchel.c │ │ ├── sun_amulet.c │ │ ├── test.c │ │ ├── w_ele.c │ │ └── w_vase.c │ ├── helm │ │ ├── ancientblade.c │ │ ├── antiochsurcoat.c │ │ ├── astral_shield.c │ │ ├── bfold.c │ │ ├── blackcloak.c │ │ ├── blindfold.c │ │ ├── blooddoll.c │ │ ├── bloodvial.c │ │ ├── bookofsaints.c │ │ ├── carvingknife.c │ │ ├── cateye.c │ │ ├── cateye2.c │ │ ├── claws.c │ │ ├── cockroach.c │ │ ├── corpse.c │ │ ├── corpse2.c │ │ ├── darkmask.c │ │ ├── dwarf.c │ │ ├── echain.c │ │ ├── egem.c │ │ ├── elfear.c │ │ ├── elfhead.c │ │ ├── faitharmband.c │ │ ├── flamb1.c │ │ ├── flamb2.c │ │ ├── flameguards.c │ │ ├── fswat.c │ │ ├── gclasp.c │ │ ├── ghostkill.c │ │ ├── ghoulblade.c │ │ ├── greaves.c │ │ ├── grlbd.c │ │ ├── helmwhip.c │ │ ├── ironcrown.c │ │ ├── ironstaff.c │ │ ├── koanwelv.c │ │ ├── laurel_wreath.c │ │ ├── mage_rods.c │ │ ├── mage_wands.c │ │ ├── moonshard.c │ │ ├── nightsveil.c │ │ ├── oathkeeper.c │ │ ├── ratamu.c │ │ ├── ratamulet.c │ │ ├── redeemer.c │ │ ├── saintbk.c │ │ ├── scales.c │ │ ├── scorpwhip.c │ │ ├── silvercirclet.c │ │ ├── soulg2.c │ │ ├── soulge.c │ │ ├── soulgem.c │ │ ├── surcoat.c │ │ ├── tiger_claw.c │ │ ├── tormmanuscript.c │ │ ├── trollclaw.c │ │ ├── typo_test.c │ │ ├── upbodgrl.c │ │ ├── vexlock.c │ │ ├── wandercorpse.c │ │ ├── waspblade.c │ │ ├── waspring.c │ │ ├── waveguards.c │ │ ├── windguard.c │ │ ├── windguards.c │ │ ├── wyrmskin.c │ │ ├── wyrmskinboots.c │ │ └── zealpen.c │ ├── hlal │ │ ├── aitem.c │ │ ├── ansemask.c │ │ ├── blackphoenix.c │ │ ├── blackphoenix2.c │ │ ├── bpoppy.c │ │ ├── bunnycarrot.c │ │ ├── dancepant.c │ │ ├── dancertop.c │ │ ├── danceslipper.c │ │ ├── fancypinkdress.c │ │ ├── jesterarm.c │ │ ├── jestergloves.c │ │ ├── jestershoes.c │ │ ├── jesterstock.c │ │ ├── leafydangle.c │ │ ├── leafydangle1.c │ │ ├── moonstonebracelet.c │ │ ├── noblecloak.c │ │ ├── peacockmask.c │ │ ├── pearlsheath.c │ │ ├── rubyheels.c │ │ ├── ryodanamulet.c │ │ ├── tellerrobe.c │ │ ├── tellerscarf.c │ │ ├── tellerveil.c │ │ └── testclaw.c │ ├── ibrandul │ │ ├── aitem.c │ │ ├── amberlyring.c │ │ ├── angelcrystal.c │ │ ├── banetoy.c │ │ ├── bonearmor.c │ │ ├── bottle.c │ │ ├── childring.c │ │ ├── darumstudded.c │ │ ├── ddcollar.c │ │ ├── deed.c │ │ ├── deed2.c │ │ ├── delainarm.c │ │ ├── demonsnare.c │ │ ├── dragonclaws.c │ │ ├── dragoncollar.c │ │ ├── dragonegg.c │ │ ├── dragonscale.c │ │ ├── dragonshort.c │ │ ├── dragonteeth.c │ │ ├── flute1.c │ │ ├── klinquerobe.c │ │ ├── lukasarmor.c │ │ ├── marikastudded.c │ │ ├── rust.c │ │ ├── rustweapons.c │ │ ├── saqiranecklace.c │ │ ├── seal.c │ │ ├── shadowgauntlets.c │ │ ├── shadowwhip.c │ │ ├── shard.c │ │ ├── sigil.c │ │ ├── specialwater.c │ │ ├── specialwater2.c │ │ ├── symbol1.c │ │ ├── tarotdeck.c │ │ ├── teddy.c │ │ ├── tengrisword.c │ │ ├── torralscimitar.c │ │ ├── vecnahead.c │ │ ├── venom.c │ │ ├── water.c │ │ └── wizstick.c │ ├── istishia │ │ ├── Boomer.c │ │ ├── Boomerang.c │ │ ├── RamMon.c │ │ ├── Torment.c │ │ ├── bubblesword4.c │ │ ├── nastyapron4.c │ │ ├── scythe.c │ │ ├── spidertights.c │ │ ├── spidertights2.c │ │ └── spidertights3.c │ ├── kassius │ │ ├── ashasos_cloak.c │ │ ├── ketamis_pendant.c │ │ ├── vasers_oblivion.c │ │ └── vasersauraofshade.c │ ├── kelemvor │ │ ├── bootsofwanderlust.c │ │ ├── bootsofwanderlust2.c │ │ ├── braceletsofleadership.c │ │ ├── etneshead.c │ │ ├── grimmsrobe.c │ │ ├── iceblade.c │ │ ├── icetear.c │ │ ├── kelsreaperrobes.c │ │ ├── mysteryegg.c │ │ ├── reaperrobes.c │ │ └── rock.c │ ├── kossuth │ │ ├── cyricmailrobe.c │ │ ├── taloscloak.c │ │ └── tempusrobes.c │ ├── lathander │ │ ├── akadiblazer.c │ │ ├── banegem.c │ │ ├── extradsash.c │ │ ├── greattease.c │ │ ├── mindthrustlance.c │ │ ├── reinforce.c │ │ ├── sparrowarmor.c │ │ └── zcfangs.c │ ├── loki │ │ ├── aitem.c │ │ ├── blood_necklace.c │ │ ├── dragonrobes.c │ │ ├── macana.c │ │ ├── macquahuitl.c │ │ ├── necrotic_hands.c │ │ └── template_weapon.c │ ├── loviatar │ │ ├── darksteel_mesh.c │ │ ├── longsword_of_sharpness.c │ │ └── moonsceptre.loviatar.c │ ├── lujke │ │ ├── ahmul_archer.c │ │ ├── ahmul_hunter.c │ │ ├── ahmul_target.c │ │ ├── amaya_antioch_target.c │ │ ├── anson_archer.c │ │ ├── anson_hunter.c │ │ ├── anson_target.c │ │ ├── archer.c │ │ ├── archery_target.c │ │ ├── bounty_hunter.c │ │ ├── carrot.c │ │ ├── cathy_archer.c │ │ ├── cathy_hunter.c │ │ ├── cathy_target.c │ │ ├── chessboard.c │ │ ├── cnccafe.c │ │ ├── coifmane.c │ │ ├── deathstick.c │ │ ├── degraded_leaf_crown.c │ │ ├── dithas_archer.c │ │ ├── dithas_hunter.c │ │ ├── dithas_target.c │ │ ├── helm_chess.c │ │ ├── hunter_sword.c │ │ ├── innaeli_ant_archer.c │ │ ├── innaeli_ant_hunter.c │ │ ├── innaeli_antioch_target.c │ │ ├── innaeli_archer.c │ │ ├── innaeli_hunter.c │ │ ├── innaeli_target.c │ │ ├── kain_archer.c │ │ ├── kain_hunter.c │ │ ├── kain_target.c │ │ ├── kclaws.c │ │ ├── leaf_crown.c │ │ ├── mark_of_mask.c │ │ ├── myitem.c │ │ ├── nic_archer.c │ │ ├── nic_hunter.c │ │ ├── nic_target.c │ │ ├── obj │ │ │ ├── anson_archer.c │ │ │ ├── anson_hunter.c │ │ │ ├── anson_target.c │ │ │ ├── innaeli_archer.c │ │ │ ├── innaeli_hunter.c │ │ │ ├── innaeli_target.c │ │ │ └── tent.c │ │ ├── obs │ │ ├── painting.c │ │ ├── patchwork_cloak.c │ │ ├── raggedcloak.c │ │ ├── rooms │ │ │ └── tent_interior.c │ │ ├── saqirassword.c │ │ ├── scarecrow.c │ │ ├── summoning_gem.c │ │ ├── sune_sym_damaged.c │ │ ├── swanmay.c │ │ ├── ulfang_archer.c │ │ ├── ulfang_hunter.c │ │ ├── ulfang_sword.c │ │ └── ulfang_target.c │ ├── lurue │ │ ├── 08SP1Sprize.c │ │ ├── 08SP2Nprize.c │ │ ├── 08SPGPprize.c │ │ ├── 08SPHMaward.c │ │ ├── 08SPHMprize.c │ │ ├── Akadi_flail.c │ │ ├── Auppenser_kukri.c │ │ ├── Auril_battleaxe.c │ │ ├── Bane_morningstar.c │ │ ├── Beshaba_scourage.c │ │ ├── CNC_bracelet.c │ │ ├── Cyric_longsword.c │ │ ├── Grumbar_warhammer.c │ │ ├── Helm_bastardsword.c │ │ ├── Istishia_warhammer.c │ │ ├── Kelemvor_bastardsword.c │ │ ├── Kossuth_spikedchain.c │ │ ├── Lathander_heavymace.c │ │ ├── Malar_claw.c │ │ ├── Mask_shortsword.c │ │ ├── Mielikki_scimitar.c │ │ ├── Mystra_shuriken.c │ │ ├── Oghma_longsword.c │ │ ├── Selune_heavymace.c │ │ ├── Shar_chakram.c │ │ ├── Shaundakul_greatsword.c │ │ ├── Sune_whip.c │ │ ├── TOY_bear.c │ │ ├── TOY_boydoll.c │ │ ├── TOY_browndog.c │ │ ├── TOY_bunny.c │ │ ├── TOY_dog.c │ │ ├── TOY_giant.c │ │ ├── TOY_girldoll.c │ │ ├── TOY_kitten.c │ │ ├── TOY_monster.c │ │ ├── TOY_piggy.c │ │ ├── TOY_pinkdragon.c │ │ ├── TOY_wolf.c │ │ ├── Talos_spear.c │ │ ├── Tempus_battleaxe.c │ │ ├── Torm_greatsword.c │ │ ├── Tymora_shuriken.c │ │ ├── Tyr_longsword.c │ │ ├── aaronbelt.c │ │ ├── abitofluck.c │ │ ├── acursedwhip.c │ │ ├── adderslcloth.c │ │ ├── aitem.c │ │ ├── alisynrobes.c │ │ ├── anitem.c │ │ ├── ansontattoo.c │ │ ├── arcaneflamecrown.c │ │ ├── aysutooth.c │ │ ├── baddie_brooch.c │ │ ├── banecuff.c │ │ ├── banjolele.c │ │ ├── barof_copper.c │ │ ├── barof_gold.c │ │ ├── barof_silver.c │ │ ├── bartsgauntlets.c │ │ ├── battery.c │ │ ├── battlegloryplate.c │ │ ├── bearclaw.c │ │ ├── bearclaws_sm.c │ │ ├── beholderamulet.c │ │ ├── belespice.c │ │ ├── blackdiamond.c │ │ ├── bloodyband.c │ │ ├── boneclaw.c │ │ ├── bonepile.c │ │ ├── bonestaff.c │ │ ├── bugplant.c │ │ ├── bugscepter.c │ │ ├── bugscepter2.c │ │ ├── ceremonybowl.c │ │ ├── chainedovercoat.c │ │ ├── champagne_tia.c │ │ ├── clothingremains.c │ │ ├── colorcrystal.c │ │ ├── coloredboots.c │ │ ├── contestsign.c │ │ ├── contraption.c │ │ ├── costume_butterfly.c │ │ ├── costume_cat.c │ │ ├── cracklingenergy.c │ │ ├── craftbclt_bear.c │ │ ├── craftbclt_bull.c │ │ ├── craftbclt_cat.c │ │ ├── craftbclt_eagle.c │ │ ├── craftbclt_fox.c │ │ ├── craftbclt_owl.c │ │ ├── creslts_sparkle.c │ │ ├── daggerofdrow.c │ │ ├── darkgem_amulet.c │ │ ├── darkgem_boots.c │ │ ├── darkgem_bracers.c │ │ ├── darkgem_chakram.c │ │ ├── darkgem_shield.c │ │ ├── deephorn.c │ │ ├── deity_stuffed.c │ │ ├── desertsanddag.c │ │ ├── dhornclaw.c │ │ ├── dhorncloak.c │ │ ├── diamondslicer.c │ │ ├── die.c │ │ ├── dragonfinger.c │ │ ├── dragonpouch.c │ │ ├── dragonrobes.c │ │ ├── dragonsword.c │ │ ├── dragscales.c │ │ ├── dragtailcirclet.c │ │ ├── drinkz.c │ │ ├── drowdagger.c │ │ ├── dwarf_plate.c │ │ ├── e_coat.c │ │ ├── electricamulet.c │ │ ├── emeraldarmor.c │ │ ├── emeraldcurve.c │ │ ├── emeraldflail.c │ │ ├── emeraldglint.c │ │ ├── emhawkberet.c │ │ ├── ethiustattoo.c │ │ ├── eyeofstormarmor.c │ │ ├── fairydragon.c │ │ ├── featheredhat2.c │ │ ├── felinearmlet.c │ │ ├── fingerlessglove.c │ │ ├── fireeyesword.c │ │ ├── firstlightrobe.c │ │ ├── fishbowlcrystal.c │ │ ├── flipflopsandals.c │ │ ├── foodz.c │ │ ├── forestarmor.c │ │ ├── forestsgleam.c │ │ ├── forgottensoul.c │ │ ├── fortunesguard.c │ │ ├── friendsring.c │ │ ├── gem2.c │ │ ├── geniescuff.c │ │ ├── glassteelflask.c │ │ ├── glitteringarmor.c │ │ ├── glitteringicicle.c │ │ ├── goblintatters.c │ │ ├── goldenrobe.c │ │ ├── goldenstagarmor.c │ │ ├── goldenstagblade.c │ │ ├── goldenstagcloth.c │ │ ├── goldenstaghelm.c │ │ ├── goldenstagring.c │ │ ├── goldenstagslayer.c │ │ ├── goldstagarmor.c │ │ ├── goldstaghelm.c │ │ ├── goodie_clasp.c │ │ ├── handmirror.c │ │ ├── hangman.c │ │ ├── hawkscrown.c │ │ ├── healingpaste.c │ │ ├── hglassdarkfate.c │ │ ├── hollyleaf.c │ │ ├── houseveryn.c │ │ ├── huggle_basher.c │ │ ├── icecrystals.c │ │ ├── id_adder.c │ │ ├── innaeli_target.c │ │ ├── ironingot.c │ │ ├── ironring.c │ │ ├── jailkey.c │ │ ├── jasmine_relic.c │ │ ├── kantlara.c │ │ ├── kere_dagger.c │ │ ├── kere_dagger2.c │ │ ├── kere_ssword.c │ │ ├── keyring1.c │ │ ├── keyring2.c │ │ ├── keyring3.c │ │ ├── kidneyring.c │ │ ├── kittycloak.c │ │ ├── kobohand.c │ │ ├── koboldstatue.c │ │ ├── kols1.c │ │ ├── lamppost.c │ │ ├── lasradis_cage.c │ │ ├── leatherfedora.c │ │ ├── leatherofhunter.c │ │ ├── lionpeltcloak.c │ │ ├── lockedcase.c │ │ ├── locust.c │ │ ├── longmileboots.c │ │ ├── lukasarmor.c │ │ ├── lus_slining.c │ │ ├── mage_hat.c │ │ ├── manor_key.c │ │ ├── map.c │ │ ├── masq_key30.c │ │ ├── masq_key_30.c │ │ ├── masq_key_31.c │ │ ├── masq_key_32.c │ │ ├── masq_key_33.c │ │ ├── masq_key_34.c │ │ ├── masq_key_35.c │ │ ├── masq_key_36.c │ │ ├── masq_key_37.c │ │ ├── masq_key_38.c │ │ ├── masq_key_39.c │ │ ├── masq_key_40.c │ │ ├── masq_key_41.c │ │ ├── masq_key_42.c │ │ ├── masq_key_43.c │ │ ├── masq_key_44.c │ │ ├── masq_key_45.c │ │ ├── masq_key_46.c │ │ ├── masq_key_47.c │ │ ├── masq_key_48.c │ │ ├── masq_key_49.c │ │ ├── masq_key_50.c │ │ ├── masq_key_51.c │ │ ├── masq_key_52.c │ │ ├── masq_key_53.c │ │ ├── masq_key_54.c │ │ ├── masq_key_55.c │ │ ├── masq_key_56.c │ │ ├── masq_key_57.c │ │ ├── masq_key_58.c │ │ ├── masq_key_59.c │ │ ├── masq_key_60.c │ │ ├── masq_key_61.c │ │ ├── masq_key_62.c │ │ ├── masq_key_63.c │ │ ├── masq_key_64.c │ │ ├── masq_key_65.c │ │ ├── masq_key_66.c │ │ ├── masq_key_67.c │ │ ├── masq_key_68.c │ │ ├── masq_key_69.c │ │ ├── masqtablet.c │ │ ├── masqueradebag.c │ │ ├── masqueradering.c │ │ ├── mattybutton.c │ │ ├── medusabracer.c │ │ ├── mercuryscale.c │ │ ├── minhorn.c │ │ ├── musewpn.c │ │ ├── myitem.c │ │ ├── naelibracelet.c │ │ ├── nb_mace.c │ │ ├── nb_shortsword.c │ │ ├── new_axe.c │ │ ├── new_banded.c │ │ ├── new_bracers.c │ │ ├── new_club.c │ │ ├── new_dagger.c │ │ ├── new_fan.c │ │ ├── new_flail.c │ │ ├── new_longsword.c │ │ ├── new_shield.c │ │ ├── newsgmemento.c │ │ ├── nfrostarmor.c │ │ ├── nfrostaxe.c │ │ ├── nfrostcrown.c │ │ ├── nicstatue.c │ │ ├── nictalon.c │ │ ├── nivinaxe.c │ │ ├── obsid_dagger.c │ │ ├── obsidstone.c │ │ ├── ogregauntlets.c │ │ ├── ozytattoo.c │ │ ├── phantomboots.c │ │ ├── phantomsilk.c │ │ ├── phantomsuit.c │ │ ├── phoenixwings.c │ │ ├── piletreasure.c │ │ ├── platedmesh.c │ │ ├── pocketdoublet.c │ │ ├── pod.c │ │ ├── prizetoken.c │ │ ├── puzzlebox.c │ │ ├── quinmadesword.c │ │ ├── ratskullnecklace.c │ │ ├── reddeathmask.c │ │ ├── refreshingpouch.c │ │ ├── reinforce.c │ │ ├── ribwand.c │ │ ├── roc_claw.c │ │ ├── rosepetal.c │ │ ├── rubblepile.c │ │ ├── rubytalongaunt.c │ │ ├── sapphirelance.c │ │ ├── saq_sparrowsong.c │ │ ├── schoonerkey.c │ │ ├── seaweedcloak.c │ │ ├── seawreck_key.c │ │ ├── selune_underkey.c │ │ ├── senecalichkey.c │ │ ├── seraphimarmor.c │ │ ├── seraphimarmr.c │ │ ├── seraphsvision.c │ │ ├── sharkhanging.c │ │ ├── sharkteeth.c │ │ ├── sharktooth.c │ │ ├── shiftsandcloak.c │ │ ├── shinobishozoku.c │ │ ├── shinyobject.c │ │ ├── silkarmguards.c │ │ ├── silverbarkguitar.c │ │ ├── silverbell.c │ │ ├── silvercoin.c │ │ ├── silverfinch.c │ │ ├── silverhammer.c │ │ ├── silversblade.c │ │ ├── silvershackles.c │ │ ├── singerkieramr.c │ │ ├── sky_dagger.c │ │ ├── skyvest.c │ │ ├── slicingwhip.c │ │ ├── smallmanpants.c │ │ ├── smallmanschain.c │ │ ├── snakequeenswd.c │ │ ├── spells │ │ │ ├── _drift.c │ │ │ └── genie.c │ │ ├── spinningaxe.c │ │ ├── studearrings.c │ │ ├── sunveil.c │ │ ├── swamamulet.c │ │ ├── sylphshirt.c │ │ ├── sylvansilkcloak.c │ │ ├── taurinaamir.c │ │ ├── tent.c │ │ ├── tent_tracker.c │ │ ├── testdagger.c │ │ ├── thinneedle.c │ │ ├── thoughtslayer.c │ │ ├── tomb.c │ │ ├── tonguewhip.c │ │ ├── torm_bracers.c │ │ ├── torm_buckler.c │ │ ├── torm_leather.c │ │ ├── torm_scalemail.c │ │ ├── torm_shield.c │ │ ├── torm_sword.c │ │ ├── tormncklce.c │ │ ├── turquoisebands.c │ │ ├── tyr_greaves.c │ │ ├── valadrixcane.c │ │ ├── valkursword.c │ │ ├── valuables.c │ │ ├── valuables_special.c │ │ ├── vecnahand.c │ │ ├── vinewhip.c │ │ ├── vocalamulet.c │ │ ├── voidkey.c │ │ ├── wagon.c │ │ ├── watchfuleye.c │ │ ├── wateranklet.c │ │ ├── waterflask.c │ │ ├── whirlwindflail.c │ │ ├── whitesapring.c │ │ ├── widebrimgray-old.c │ │ ├── widebrimgray.c │ │ ├── windgem.c │ │ ├── wingshackles.c │ │ ├── wisdomglasses.c │ │ ├── wizstick.c │ │ ├── workmenshirt.c │ │ └── worldlessrobe.c │ ├── mask │ │ ├── blackarmor.c │ │ ├── darkkama.c │ │ ├── eyeball.c │ │ ├── furcape.c │ │ ├── housering.c │ │ ├── leatherboots.c │ │ ├── shanker.c │ │ ├── stealthwhisper.c │ │ ├── tarisirrobe.c │ │ ├── tarisirsandals.c │ │ └── themask.c │ ├── metikul │ │ ├── bloodchiller.met.c │ │ ├── bracersofdubprot.met.c │ │ ├── dofsharpness.met.c │ │ ├── horsehide.c │ │ ├── mbwizardrobes.met.c │ │ ├── ssofsharpness.met.c │ │ └── worktunic.metikul.c │ ├── mielikki │ │ ├── coin1.c │ │ └── lcoin.c │ ├── moradin │ │ ├── Assassinninjato.c │ │ ├── Bruteaxe.c │ │ ├── Moradinhammer.c │ │ ├── Moradinmithrilarmor.c │ │ ├── Moradinnutcracker.c │ │ ├── Phoenixhelm.c │ │ ├── Silverdragon.c │ │ ├── elfhat.c │ │ ├── santabelt.c │ │ ├── santaboots.c │ │ ├── santacoat.c │ │ ├── santahat.c │ │ ├── santapants.c │ │ ├── shaulcane.c │ │ ├── sierracloak.c │ │ └── testarmor.c │ ├── myrkul │ │ ├── aashearing.c │ │ ├── aashtorc.c │ │ ├── agedscroll.c │ │ ├── alzarbottle.c │ │ ├── amberlykettle.c │ │ ├── antiochsignet.c │ │ ├── archangelsword.c │ │ ├── armband.c │ │ ├── battlescar.c │ │ ├── battlescar2.c │ │ ├── battlescar3.c │ │ ├── belt3.c │ │ ├── belt4.c │ │ ├── belt5.c │ │ ├── belt6.c │ │ ├── belt7.c │ │ ├── buckle.c │ │ ├── catclaw.c │ │ ├── chaosaura.c │ │ ├── chaosaura2.c │ │ ├── crystalheart3.c │ │ ├── cyricring.c │ │ ├── dinoturd.c │ │ ├── dogcollar.c │ │ ├── dragonscale.c │ │ ├── drowrapier.c │ │ ├── dual.c │ │ ├── dwarvenbreastplate.c │ │ ├── edge3.c │ │ ├── elathysiarobe6.c │ │ ├── fakerag.c │ │ ├── fangs.c │ │ ├── fmpotion.c │ │ ├── ghulcage.c │ │ ├── gnomehand.c │ │ ├── goblincleaver.c │ │ ├── goboarmor.c │ │ ├── goboarmor2.c │ │ ├── gtr_mundanoid.c │ │ ├── guildring.c │ │ ├── halfogresplint.c │ │ ├── heads.c │ │ ├── iceaura.c │ │ ├── iceaura2.c │ │ ├── kabong.c │ │ ├── kabong2.c │ │ ├── katana.c │ │ ├── living_armor.c │ │ ├── ltest.c │ │ ├── ltest2.c │ │ ├── ltest3.c │ │ ├── megasword.c │ │ ├── mithrasarmband.c │ │ ├── moonwand.c │ │ ├── moonwand2.c │ │ ├── morningstar.c │ │ ├── nighty.c │ │ ├── no-dachi.c │ │ ├── nundress.c │ │ ├── oathring.c │ │ ├── oathring2.c │ │ ├── ramiusmantle.c │ │ ├── ramiusmantle2.c │ │ ├── ringmail.c │ │ ├── rot.c │ │ ├── scry_pearl_myrkul.c │ │ ├── seagullpoop.c │ │ ├── senecacup.c │ │ ├── sheriffbadge.c │ │ ├── sheriffbadgeseneca.c │ │ ├── sheriffbadgetonovi.c │ │ ├── sheriffbadgetonovi2.c │ │ ├── sierra_dagger.c │ │ ├── silessestatue.c │ │ ├── singer.c │ │ ├── skullstein.c │ │ ├── slaadegg.c │ │ ├── sledge.c │ │ ├── smallplate.c │ │ ├── soulbottle.c │ │ ├── soulwound_con.c │ │ ├── soulwound_con_cha.c │ │ ├── soulwound_quon.c │ │ ├── spines.c │ │ ├── summon_rod.c │ │ ├── suneamulet.c │ │ ├── sunerings3.c │ │ ├── tentacle2.c │ │ ├── test.c │ │ ├── test2.c │ │ ├── test3.c │ │ ├── test4.c │ │ ├── testarmor.c │ │ ├── testformoradin.c │ │ ├── testheart.c │ │ ├── testring.c │ │ ├── thief.c │ │ ├── tombstone.c │ │ ├── tryrentunic.c │ │ ├── tusk.c │ │ ├── two.c │ │ ├── vheart.c │ │ ├── vheart2.c │ │ ├── voldranlance.c │ │ ├── vrockclaws.c │ │ ├── wailingchain.c │ │ ├── weave_eater.c │ │ ├── weavestrand.c │ │ ├── weddingringtorm.c │ │ ├── xorbag.c │ │ ├── xorrobe.c │ │ ├── xorrot.c │ │ ├── zombieclaws.c │ │ └── zombieshirt.c │ ├── mystra │ │ ├── Ancients.c │ │ ├── Behrahsorb.c │ │ ├── Drakkensboots.c │ │ ├── Evaspendant.c │ │ ├── Firesash.c │ │ ├── Hoodedcloakofconcealment.c │ │ ├── Ishiriskatana.c │ │ ├── Kaleshood.c │ │ ├── ZyrianCloak.c │ │ ├── ZyrianSword.c │ │ ├── ancient-spells │ │ ├── armor2.gar.12292001 │ │ ├── cosmicmirror.c │ │ ├── frostgreaves.c │ │ ├── lilysfan.c │ │ ├── marishosvest.c │ │ ├── mysticgoldegg.c │ │ ├── mysticredegg.c │ │ ├── scoopofpoop.c │ │ ├── skullofamidor.c │ │ ├── spiderdust.c │ │ ├── spurredboots.c │ │ └── wishingpouch.c │ ├── naramis │ │ ├── blue_hooded_robe.c │ │ ├── die.c │ │ └── strange_orb.c │ ├── nienne │ │ ├── adrianboots.c │ │ ├── akadiboots.c │ │ ├── akadibracers.c │ │ ├── akadichain.c │ │ ├── akadifan.c │ │ ├── akadigloves.c │ │ ├── akadileather.c │ │ ├── akadirobes.c │ │ ├── alignmark.c │ │ ├── alzar-shoulderplates.c │ │ ├── amulet │ │ │ ├── _aspect_of_the_bear.c │ │ │ ├── _aspect_of_the_cheetah.c │ │ │ ├── _aspect_of_the_owl.c │ │ │ ├── _aspect_of_the_panther.c │ │ │ ├── _aspect_of_the_trees.c │ │ │ ├── _aspect_of_the_waters.c │ │ │ ├── _aspect_of_the_winds.c │ │ │ ├── _aspect_of_the_wolf.c │ │ │ ├── _aura_of_radiance.c │ │ │ ├── _shadow_walk.c │ │ │ ├── _summon_companion_balur.c │ │ │ ├── _summon_locusts.c │ │ │ ├── invisobcl.c │ │ │ ├── locust.c │ │ │ └── scompanionbalur.c │ │ ├── anti.c │ │ ├── appcuffs.c │ │ ├── arcanistcloak.c │ │ ├── arithesuss1.c │ │ ├── artifact.c │ │ ├── artifact1.c │ │ ├── artifact2.c │ │ ├── artifact3.c │ │ ├── arvellonamulet.c │ │ ├── aurilchain.c │ │ ├── aurilring.c │ │ ├── auriltrinket.c │ │ ├── avengerharry.c │ │ ├── avengersaradin.c │ │ ├── balurhat.c │ │ ├── banegem.c │ │ ├── banering.c │ │ ├── banerobe.c │ │ ├── battlehorn.c │ │ ├── beastclaws.c │ │ ├── beastgloves.c │ │ ├── belt1.c │ │ ├── belt2.c │ │ ├── bennylance.c │ │ ├── bindings.c │ │ ├── bodysuit.c │ │ ├── box.c │ │ ├── bregantree.c │ │ ├── bunny.c │ │ ├── chainwhip.c │ │ ├── chalice.c │ │ ├── ciannadisks.c │ │ ├── cieniapipe.c │ │ ├── circleoflight-seal.c │ │ ├── corelloncirclet.c │ │ ├── creepingmail.c │ │ ├── cyricbracelets.c │ │ ├── cyricbracers.c │ │ ├── cyricmailrobe.c │ │ ├── darknessring.c │ │ ├── decanter.c │ │ ├── demonblade.c │ │ ├── demonbracers.c │ │ ├── dinnerplate.c │ │ ├── dithaswyvern.c │ │ ├── doll.c │ │ ├── dorje-hairpin.c │ │ ├── dragonet.c │ │ ├── dragonetring.c │ │ ├── dragonlair │ │ │ ├── banebeast.c │ │ │ ├── beastmen.c │ │ │ ├── beastmen2.c │ │ │ ├── caravan.c │ │ │ ├── chokingdust.c │ │ │ ├── clearing.c │ │ │ ├── demiplane.c │ │ │ ├── desert.c │ │ │ ├── drowpocket1.c │ │ │ ├── drowpocket2.c │ │ │ ├── drowpocket3.c │ │ │ ├── drowpocket4.c │ │ │ ├── drowpocket5.c │ │ │ ├── feardimension.c │ │ │ ├── lair.c │ │ │ ├── ledge.c │ │ │ ├── malarbeast.c │ │ │ ├── plotbeast1.c │ │ │ ├── plotbeast2.c │ │ │ ├── plotbeast3.c │ │ │ ├── ranger.c │ │ │ ├── seraph.c │ │ │ ├── shack.c │ │ │ ├── shadowdragon.c │ │ │ ├── sky.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ ├── tunnel4.c │ │ │ ├── tunnel5.c │ │ │ └── village.c │ │ ├── dragonscales.c │ │ ├── dragontattoo.c │ │ ├── dragontome.c │ │ ├── drowdagger.c │ │ ├── drowgown.c │ │ ├── drowmoonblade.c │ │ ├── drowpants.c │ │ ├── dwarfhorn.c │ │ ├── easteregg.c │ │ ├── elendor1.c │ │ ├── elfboots.c │ │ ├── elfbracers.c │ │ ├── elfbracers2.c │ │ ├── ellorabracelets.c │ │ ├── elvenchain.c │ │ ├── elvennecklace.c │ │ ├── elvenplate.c │ │ ├── elvenrobes.c │ │ ├── elvenrobesnew.c │ │ ├── enenra-horns.c │ │ ├── eoincloak.c │ │ ├── fatedomain.c │ │ ├── fearrelic.c │ │ ├── featheredhat.c │ │ ├── featheredhat2.c │ │ ├── feycharm.c │ │ ├── feystag.c │ │ ├── fingerring.c │ │ ├── flame_scythe.c │ │ ├── flamearmor.c │ │ ├── flashbang.c │ │ ├── flower.c │ │ ├── foldedtent.c │ │ ├── gaiusgem.c │ │ ├── geist.c │ │ ├── gemstone.c │ │ ├── gmr_ring.c │ │ ├── goldenlotus.c │ │ ├── goldring.c │ │ ├── golem.c │ │ ├── golemrod.c │ │ ├── greaterrop.c │ │ ├── grigilcoat.c │ │ ├── gsunblade.c │ │ ├── hairpin.c │ │ ├── hairpin2.c │ │ ├── hanaligown.c │ │ ├── harrisword.c │ │ ├── hashibox.c │ │ ├── helmcape.c │ │ ├── herbbag.c │ │ ├── herobook.c │ │ ├── huntdomain.c │ │ ├── invisring.c │ │ ├── istishia_chain.c │ │ ├── istishiaring.c │ │ ├── joebob.c │ │ ├── jysibyllsandals.c │ │ ├── kelemvorrobe.c │ │ ├── kendracirclet.c │ │ ├── kimono.c │ │ ├── kiyabracelet.c │ │ ├── knightboots.c │ │ ├── koboldrobe.c │ │ ├── kossboots.c │ │ ├── lathrobe.c │ │ ├── lenses.c │ │ ├── lichring.c │ │ ├── limitlessquiver.c │ │ ├── logosbandage.c │ │ ├── lolthchain.c │ │ ├── lovgauntlets.c │ │ ├── lovimark.c │ │ ├── loviteamulet.c │ │ ├── loviteboots.c │ │ ├── lovitechoker.c │ │ ├── lovitekimono.c │ │ ├── loviterobes.c │ │ ├── maelstromblade.c │ │ ├── mage_akadi.c │ │ ├── malarpendant.c │ │ ├── marhtesa.c │ │ ├── mark.c │ │ ├── maskarmlet.c │ │ ├── maskboots.c │ │ ├── maskbracers.c │ │ ├── maskbracers2.c │ │ ├── maskgloves.c │ │ ├── masqueradebag.c │ │ ├── masqueradering.c │ │ ├── mastervi.c │ │ ├── mendingprism.c │ │ ├── messmedallion.c │ │ ├── mfgacap.c │ │ ├── mieamulet.c │ │ ├── miering.c │ │ ├── miespear.c │ │ ├── mililamulet.c │ │ ├── minedeed.c │ │ ├── mnelabelt.c │ │ ├── mnelarobe.c │ │ ├── monkey.c │ │ ├── moonblade1.c │ │ ├── mooncrystal.c │ │ ├── moonorb.c │ │ ├── moonscepter.c │ │ ├── mottledleather.c │ │ ├── mysterydomain.c │ │ ├── mystra2.c │ │ ├── mystraring.c │ │ ├── mystrarobes.c │ │ ├── mystratattoo.c │ │ ├── newsymbol.c │ │ ├── nosering.c │ │ ├── ogregauntlets.c │ │ ├── ogrestaff.c │ │ ├── ointment.c │ │ ├── oldstaff.c │ │ ├── orisword1.c │ │ ├── orisword2.c │ │ ├── painting.c │ │ ├── painting2.c │ │ ├── painting3.c │ │ ├── party │ │ │ ├── attendant.c │ │ │ └── baglady.c │ │ ├── phoenixbrooch.c │ │ ├── poisonring.c │ │ ├── priest.c │ │ ├── punkearrings.c │ │ ├── puppy.c │ │ ├── puppyring.c │ │ ├── quilt.c │ │ ├── rainbowbangles.c │ │ ├── ranger_akadi.c │ │ ├── rangergloves.c │ │ ├── raveenaflower.c │ │ ├── ravenamulet.c │ │ ├── rebirthcallamiramulet.c │ │ ├── rebirthkelemvoramulet.c │ │ ├── rebirthlysaraamulet.c │ │ ├── rebirthsharamulet.c │ │ ├── rebirthsilvamulet.c │ │ ├── regenring.c │ │ ├── ring_nighthunter.c │ │ ├── ring_sinister.c │ │ ├── ringofwarding.c │ │ ├── ryzansheath.c │ │ ├── sapp_short.c │ │ ├── saturninamesh.c │ │ ├── scale.c │ │ ├── scythe_shadow.c │ │ ├── selka.c │ │ ├── selkaring.c │ │ ├── selkascar.c │ │ ├── selunebracers.c │ │ ├── selunecape.c │ │ ├── selunechain.c │ │ ├── shadowass.c │ │ ├── shadowbracers.c │ │ ├── shadowclaws.c │ │ ├── shadowcloak.c │ │ ├── shadowdancer.c │ │ ├── shadowgloves.c │ │ ├── shadowrobe.c │ │ ├── shar_gloves.c │ │ ├── sharbodice.c │ │ ├── sharcoat.c │ │ ├── sharcoatpocket.c │ │ ├── shartalisman.c │ │ ├── shartattoo.c │ │ ├── shaunbracelet.c │ │ ├── shaunquiver.c │ │ ├── shrycirclet.c │ │ ├── sierraskull.c │ │ ├── silessespear.c │ │ ├── silverfirecrown.c │ │ ├── spellbooktest.c │ │ ├── spellorb-ansekin.c │ │ ├── spellorb.c │ │ ├── spells │ │ │ ├── _alter_self_feyri.c │ │ │ ├── _moonfire.c │ │ │ ├── _moonlight_protection.c │ │ │ ├── _moonmote_dispel.c │ │ │ ├── _sonic_shield.c │ │ │ ├── _static_field.c │ │ │ └── skelemount.c │ │ ├── sphere.c │ │ ├── spider.c │ │ ├── spiderring.c │ │ ├── statblade.c │ │ ├── stone.c │ │ ├── stoneaxe.c │ │ ├── stonebreaker.c │ │ ├── stonestrap.c │ │ ├── sunerapier.c │ │ ├── sunewimple.c │ │ ├── swtattoo.c │ │ ├── talosblade.c │ │ ├── taloscloak.c │ │ ├── tazbracers.c │ │ ├── telepathycirclet.c │ │ ├── tempusplate.c │ │ ├── tempusrobes.c │ │ ├── tent.c │ │ ├── teroaiechoes.c │ │ ├── testobj.c │ │ ├── testobj2.c │ │ ├── testsphere.c │ │ ├── thebastard.c │ │ ├── thelbracelets.c │ │ ├── thunderspear.c │ │ ├── tikanbracers.c │ │ ├── tissue.c │ │ ├── torellanhoop.c │ │ ├── tormentorb.c │ │ ├── tormhelm.c │ │ ├── tormlance.c │ │ ├── tpboots.c │ │ ├── tpbootsadder.c │ │ ├── tpbootslesser.c │ │ ├── trilletsword.c │ │ ├── tunics.c │ │ ├── tymoraanklet.c │ │ ├── tymorabracers.c │ │ ├── tymorabracers2.c │ │ ├── tymoraplate.c │ │ ├── tyrgloves.c │ │ ├── tyrgloves2.c │ │ ├── tyrsash.c │ │ ├── unicorntoy.c │ │ ├── vajraknuckles.c │ │ ├── valashat.c │ │ ├── vecna │ │ │ ├── apprentice.c │ │ │ ├── mage1.c │ │ │ ├── mage2.c │ │ │ ├── mage3.c │ │ │ ├── vecna.c │ │ │ └── vecnasymbol.c │ │ ├── vecnahand.c │ │ ├── viaghgreaves.c │ │ ├── vincentbow.c │ │ ├── vocalamulet.c │ │ ├── wargecko.c │ │ ├── waterkimono.c │ │ ├── weighteddie.c │ │ ├── wererat.c │ │ ├── werewolf.c │ │ ├── wizstick.c │ │ ├── wolf.c │ │ ├── wolfhelm.c │ │ ├── woodsmanshirt.c │ │ ├── yukigloves.c │ │ └── zarcicebead.c │ ├── octothorpe │ │ ├── _acid_shield.c │ │ ├── _electric_shield.c │ │ ├── _fire_shield.c │ │ ├── _gas_shield.c │ │ ├── _ice_shield.c │ │ ├── bonestripper.c │ │ ├── devil_mark.c │ │ ├── dragoncloak.c │ │ ├── drow_phial.c │ │ ├── drowchain.c │ │ ├── emgem.c │ │ ├── extradsash.c │ │ ├── gsword.c │ │ ├── kainhand.c │ │ ├── karmor.c │ │ ├── nightmare.c │ │ ├── nightydsp.c │ │ └── valkyrplate.c │ ├── odin │ │ ├── drowmoonblade.c │ │ ├── drowshadow.c │ │ ├── elfshadow.c │ │ ├── jenna_garter_sheath.c │ │ ├── oghmaold │ │ │ ├── armorsmithtoolset.c │ │ │ ├── basil.c │ │ │ ├── bat.c │ │ │ ├── browncottonpants.c │ │ │ ├── chinchilla.c │ │ │ ├── closedcrate.c │ │ │ ├── crysknife.c │ │ │ ├── crysknife_new.c │ │ │ ├── diamonddust.c │ │ │ ├── drowskinmagehat.c │ │ │ ├── elfbloodbracelet.c │ │ │ ├── elfchild.c │ │ │ ├── everythingtools.c │ │ │ ├── ferret.c │ │ │ ├── gigi_anvil.c │ │ │ ├── girlheadpike.c │ │ │ ├── gnomishspectacles.c │ │ │ ├── hamster.c │ │ │ ├── handreplacement.c │ │ │ ├── healerskit.c │ │ │ ├── jewellingkit.c │ │ │ ├── kaeangems.c │ │ │ ├── meteor.c │ │ │ ├── meteoricmithril.c │ │ │ ├── mithrilhook.c │ │ │ ├── moonshine.c │ │ │ ├── niennephoto.c │ │ │ ├── nightscloak.c │ │ │ ├── noblemanspants.c │ │ │ ├── ocrate.c │ │ │ ├── oregano.c │ │ │ ├── pepper.c │ │ │ ├── peppermint.c │ │ │ ├── purplesuedepants.c │ │ │ ├── quill1.c │ │ │ ├── quill2.c │ │ │ ├── quill3.c │ │ │ ├── quill4.c │ │ │ ├── rangerarmor.c │ │ │ ├── rum.c │ │ │ ├── runeofugliness.c │ │ │ ├── runeparchment.c │ │ │ ├── salt.c │ │ │ ├── sball2.c │ │ │ ├── sealedletter.c │ │ │ ├── sewingkit.c │ │ │ ├── shortsleevedshirt.c │ │ │ ├── shotokanfist1.c │ │ │ ├── shotokanfist2.c │ │ │ ├── skinningknife.c │ │ │ ├── skinningknife2.c │ │ │ ├── skinningknife3.c │ │ │ ├── skinningknife4.c │ │ │ ├── skinningknife5.c │ │ │ ├── sledgeomatic.c │ │ │ ├── smithyhammer1.c │ │ │ ├── smithyhammer2.c │ │ │ ├── smithyhammer3.c │ │ │ ├── spurs.c │ │ │ ├── stabbyquill.c │ │ │ ├── stephencoat.c │ │ │ ├── tengrianvil.c │ │ │ ├── tengrispecialhammer.c │ │ │ ├── tyrranbook.c │ │ │ ├── uraplate.c │ │ │ ├── vialofblood.c │ │ │ ├── vodka.c │ │ │ ├── weaponsmithtoolset.c │ │ │ ├── whiskey.c │ │ │ ├── wine.c │ │ │ └── woodlandarmor.c │ │ ├── ramiusmantle2.c │ │ └── saqira_updated │ │ │ ├── saq_sparrowsong.c │ │ │ ├── sparrowarmor.c │ │ │ └── turquoisebands.c │ ├── oghma │ │ ├── hat.c │ │ └── swordofknowledge.c │ ├── oghmaold │ │ ├── armorsmithtoolset.c │ │ ├── basil.c │ │ ├── bat.c │ │ ├── browncottonpants.c │ │ ├── chinchilla.c │ │ ├── closedcrate.c │ │ ├── crysknife.c │ │ ├── crysknife_new.c │ │ ├── diamonddust.c │ │ ├── drowskinmagehat.c │ │ ├── elfbloodbracelet.c │ │ ├── elfchild.c │ │ ├── everythingtools.c │ │ ├── ferret.c │ │ ├── gigi_anvil.c │ │ ├── girlheadpike.c │ │ ├── gnomishspectacles.c │ │ ├── hamster.c │ │ ├── handreplacement.c │ │ ├── healerskit.c │ │ ├── jewellingkit.c │ │ ├── kaeangems.c │ │ ├── meteor.c │ │ ├── meteoricmithril.c │ │ ├── mithrilhook.c │ │ ├── moonshine.c │ │ ├── niennephoto.c │ │ ├── nightscloak.c │ │ ├── noblemanspants.c │ │ ├── ocrate.c │ │ ├── oregano.c │ │ ├── pepper.c │ │ ├── peppermint.c │ │ ├── purplesuedepants.c │ │ ├── quill1.c │ │ ├── quill2.c │ │ ├── quill3.c │ │ ├── quill4.c │ │ ├── rangerarmor.c │ │ ├── rum.c │ │ ├── runeofugliness.c │ │ ├── runeparchment.c │ │ ├── salt.c │ │ ├── sball2.c │ │ ├── sealedletter.c │ │ ├── sewingkit.c │ │ ├── shortsleevedshirt.c │ │ ├── shotokanfist1.c │ │ ├── shotokanfist2.c │ │ ├── skinningknife.c │ │ ├── skinningknife2.c │ │ ├── skinningknife3.c │ │ ├── skinningknife4.c │ │ ├── skinningknife5.c │ │ ├── sledgeomatic.c │ │ ├── smithyhammer1.c │ │ ├── smithyhammer2.c │ │ ├── smithyhammer3.c │ │ ├── spurs.c │ │ ├── stabbyquill.c │ │ ├── stephencoat.c │ │ ├── tengrianvil.c │ │ ├── tengrispecialhammer.c │ │ ├── tyrranbook.c │ │ ├── uraplate.c │ │ ├── vialofblood.c │ │ ├── vodka.c │ │ ├── weaponsmithtoolset.c │ │ ├── whiskey.c │ │ ├── wine.c │ │ └── woodlandarmor.c │ ├── saide │ │ ├── barbed.c │ │ ├── cult_amulet.c │ │ ├── ethereal_scimitar.c │ │ ├── felroot.c │ │ ├── halloweenpumpkin.c │ │ ├── olafnote.c │ │ ├── onyx_knight.c │ │ ├── perfume1.c │ │ ├── perfume2.c │ │ ├── perfume3.c │ │ ├── testerobj.c │ │ ├── testobj.c │ │ ├── testobject2.c │ │ ├── testsword.c │ │ ├── testsword2.c │ │ └── trollwarts.c │ ├── sayed │ │ ├── barmor.c │ │ ├── lstaff.c │ │ └── recurved_bow.c │ ├── selune.old │ │ ├── moonpendant.c │ │ └── sisters.coin.c │ ├── selune │ │ ├── beauty_pendant.c │ │ ├── beautypendant.c │ │ ├── blackrose.c │ │ ├── body.c │ │ ├── braceletofcontrol.c │ │ ├── chalk.c │ │ ├── circle.c │ │ ├── coatofarms.c │ │ ├── corpseshayna.c │ │ ├── crimsonrobe.c │ │ ├── dragonrobe.c │ │ ├── drawing.c │ │ ├── eiryashapatent.c │ │ ├── gemofreasoning.c │ │ ├── moonthingie.c │ │ ├── moonthingie2.c │ │ ├── mrynalairobe.c │ │ ├── mydress.c │ │ ├── necklaceofbeauty.c │ │ ├── nfsword.c │ │ ├── nightfallsword.c │ │ ├── peace.c │ │ ├── peacefulrest.c │ │ ├── pieceofcloth.c │ │ ├── poetry_orb.c │ │ ├── poetry_statue.c │ │ ├── robethingie.c │ │ ├── robethingie2.c │ │ ├── rubberboot.c │ │ ├── selunesdress.c │ │ ├── shaynacorpse.c │ │ ├── stick.c │ │ └── towels.c │ ├── shar │ │ ├── airvest2.c │ │ ├── anniversary.c │ │ ├── anniversarycake.c │ │ ├── archmagerobe.c │ │ ├── aurilcirclet.c │ │ ├── banegauntlet.c │ │ ├── bitchbadge.c │ │ ├── burninghands.c │ │ ├── catmask.c │ │ ├── cestus2.c │ │ ├── champagne.c │ │ ├── chillingtouch.c │ │ ├── cyricpriest.c │ │ ├── dawnsurcoat.c │ │ ├── disknight.c │ │ ├── felineglove.c │ │ ├── frostfirefear.c │ │ ├── glassengagementband.c │ │ ├── ivorytorque2.c │ │ ├── kylix.c │ │ ├── lawbook2.c │ │ ├── loviterobes.c │ │ ├── malarclaws.c │ │ ├── malarheart.c │ │ ├── moonfirebracers.c │ │ ├── permafrosthands.c │ │ ├── platinumbreast.c │ │ ├── shadowclasp.c │ │ ├── shadowweavetome.c │ │ ├── shargown.c │ │ ├── shockinggrasp.c │ │ ├── starlightgown.c │ │ ├── tempusblood.c │ │ ├── thieftoolsA.c │ │ ├── thieftoolsB.c │ │ ├── thieftoolsC.c │ │ ├── tormrobes.c │ │ ├── twilighthelm.c │ │ ├── tymoracleric.c │ │ ├── vivianring.c │ │ ├── windamulet.c │ │ └── zephyr2.c │ ├── silvanus │ │ ├── a_diamond.c │ │ ├── ascroll1.c │ │ ├── ascroll2.c │ │ ├── carendore_ring.c │ │ ├── contact_scroll1.c │ │ ├── contact_scroll2.c │ │ ├── crimson_bracers2.c │ │ ├── cube.c │ │ ├── dagger.c │ │ ├── death_skull.c │ │ ├── diamond_blade.c │ │ ├── diamond_helm.c │ │ ├── diamond_shard.c │ │ ├── doublet.c │ │ ├── dwarven_battleplate2.c │ │ ├── dwarven_cloak1.c │ │ ├── dwarven_helm1.c │ │ ├── dwarven_robe.c │ │ ├── ebon_sword.c │ │ ├── ebony_armor.c │ │ ├── ebony_axe.c │ │ ├── elfshine2.c │ │ ├── forging_hammer.c │ │ ├── frostreaver2.c │ │ ├── gamulet.c │ │ ├── gloom_shield1.c │ │ ├── glove1.c │ │ ├── gloves2.c │ │ ├── gown.c │ │ ├── heart_locket.c │ │ ├── holder.c │ │ ├── hosscroll1.c │ │ ├── hosscroll2.c │ │ ├── ivory_bracers.c │ │ ├── j_sblade.c │ │ ├── l_ccoif.c │ │ ├── letter.c │ │ ├── m_chainmail.c │ │ ├── mystic_chainmail.c │ │ ├── n_wrath.c │ │ ├── note2.c │ │ ├── nscroll1.c │ │ ├── nscroll2.c │ │ ├── nscroll3.c │ │ ├── nscroll4.c │ │ ├── obsidian_orb1.c │ │ ├── os_boots.c │ │ ├── parchment.c │ │ ├── pendant.c │ │ ├── plaque.c │ │ ├── razor.c │ │ ├── ring_of_light.c │ │ ├── robe1.c │ │ ├── robe2.c │ │ ├── rose_whip.c │ │ ├── shadow_herb.c │ │ ├── shadow_robe.c │ │ ├── snake's_fang.c │ │ ├── soul_hammer.c │ │ ├── soul_hammer1.c │ │ ├── soul_hammer2.c │ │ ├── souls_gem.c │ │ ├── souls_gem1.c │ │ ├── souls_gem2.c │ │ ├── souls_gem3.c │ │ ├── souls_gem4.c │ │ ├── statue.c │ │ ├── veil.c │ │ └── wind_staff.c │ ├── sune │ │ ├── loincloth.c │ │ ├── nipple.c │ │ ├── scaleloin.c │ │ └── wolfg.c │ ├── thorn │ │ └── dairobe.c │ ├── tiamat │ │ ├── Anhur_shield.c │ │ ├── Tiamat_keep_key.c │ │ ├── Tiamat_scales.c │ │ ├── Tiamat_scales2.c │ │ ├── alchemist_robe.c │ │ ├── ancient_shield.c │ │ ├── anhur_runes.c │ │ ├── armed_trophy.c │ │ ├── azure_runes.c │ │ ├── balgus_plate.c │ │ ├── balgus_sword.c │ │ ├── bat_cloak.c │ │ ├── bear_cloak.c │ │ ├── bear_hood.c │ │ ├── beauty_veil.c │ │ ├── bentalf_lance.c │ │ ├── blue_key.c │ │ ├── bondage_pants.c │ │ ├── bone_armor.c │ │ ├── borden_armor.c │ │ ├── brandy.c │ │ ├── bug_helm.c │ │ ├── candykey.c │ │ ├── carapace_plate.c │ │ ├── carrot.c │ │ ├── chain_devil.c │ │ ├── claws.c │ │ ├── cookie_blank.c │ │ ├── coral_spear.c │ │ ├── crutch.c │ │ ├── crystal_skull.c │ │ ├── dagger_war.c │ │ ├── damadder15.c │ │ ├── damadder25.c │ │ ├── damadder45.c │ │ ├── dance_trophy.c │ │ ├── dark_greaves.c │ │ ├── dedicant_mask.c │ │ ├── deft_gloves.c │ │ ├── devil_chain.c │ │ ├── dragon_heart.c │ │ ├── dragon_scale.c │ │ ├── drink_trophy.c │ │ ├── drinkz.c │ │ ├── earthgauntlet.c │ │ ├── emace_disr.c │ │ ├── eversor_collar.c │ │ ├── eye_storm.c │ │ ├── eyestalks.c │ │ ├── fingerless_gloves.c │ │ ├── fishy_shirt.c │ │ ├── flumask.c │ │ ├── foodz.c │ │ ├── fur_coat.c │ │ ├── gator_hide.c │ │ ├── generic_greaves.c │ │ ├── genericweapon.c │ │ ├── gentle_gloves.c │ │ ├── ghostaxe.c │ │ ├── ghoultouch.c │ │ ├── golem_tome.c │ │ ├── great_coat.c │ │ ├── hag_cane.c │ │ ├── haghat.c │ │ ├── hawk_maks.c │ │ ├── helm_plate.c │ │ ├── hide_robe.c │ │ ├── honey.c │ │ ├── invis_mark.c │ │ ├── jav_trophy.c │ │ ├── jester_boots.c │ │ ├── key_castle.c │ │ ├── lance_bentalf.c │ │ ├── lance_lion.c │ │ ├── lionblade.c │ │ ├── mace_disr.c │ │ ├── mask_armor.c │ │ ├── mon │ │ │ ├── eversor_hyena.c │ │ │ └── eversor_hyena2.c │ │ ├── moss_cloak.c │ │ ├── new_scalpel.c │ │ ├── olive_oil.c │ │ ├── partytable.c │ │ ├── partytable2.c │ │ ├── plaid_robe.c │ │ ├── powder_case.c │ │ ├── psi_blade.c │ │ ├── psi_staff.c │ │ ├── pwner.c │ │ ├── race_trophy.c │ │ ├── red_key.c │ │ ├── reinforce.c │ │ ├── rose_plate.c │ │ ├── saffron.c │ │ ├── shab_skin.c │ │ ├── shadow_vest.c │ │ ├── shamrock.c │ │ ├── ship_key.c │ │ ├── sinthiaarmor.c │ │ ├── slaadclaw.c │ │ ├── smokeboots.c │ │ ├── snuggie.c │ │ ├── spiked_boots.c │ │ ├── sting_arm.c │ │ ├── stripe_stockings.c │ │ ├── tailslap.c │ │ ├── test2.c │ │ ├── testgo.c │ │ ├── tiara_bug.c │ │ ├── tsarven_lance.c │ │ ├── turtle_shield.c │ │ ├── urban_camo.c │ │ ├── vinegar.c │ │ ├── white_dragon.c │ │ ├── woe_armor.c │ │ ├── wolfsbane.c │ │ ├── woodarmor.c │ │ ├── wow_sword.c │ │ └── wrestle_trophy.c │ ├── torm │ │ ├── aqueousarmour.c │ │ ├── avatarjacket.c │ │ ├── bodice.c │ │ ├── bowl.c │ │ ├── bowsaw.c │ │ ├── cknife.c │ │ ├── dolly.c │ │ ├── drowamulet.c │ │ ├── drowdress.c │ │ ├── flute.c │ │ ├── helm_chess.c │ │ ├── jewel.c │ │ ├── leafarmour.c │ │ ├── leathercoat.c │ │ ├── lockedbox.c │ │ ├── loupe.c │ │ ├── moonstonearmour.c │ │ ├── mystrarose.c │ │ ├── netarmour.c │ │ ├── oldkatana.c │ │ ├── puzzlering.c │ │ ├── quill.c │ │ ├── scraper.c │ │ ├── scroll_case.c │ │ ├── sewingkit.c │ │ ├── snowsaw.c │ │ ├── souleater.c │ │ ├── spheres.c │ │ ├── splendidrobes.c │ │ ├── sunrisearmour.c │ │ ├── surcoat.c │ │ ├── swordcare.c │ │ ├── swordhilt.c │ │ └── tachi.c │ ├── torm_rid │ │ ├── akadihead.c │ │ ├── bloodvial.c │ │ ├── defenderJ.c │ │ ├── devineplate.c │ │ ├── evraewynpants.c │ │ ├── glassrobe.c │ │ ├── greatshield.c │ │ ├── hardleatherboots.c │ │ ├── ladyrobestorm.c │ │ ├── lollipop.c │ │ ├── redpants.c │ │ ├── rose_ring.c │ │ ├── saradinbrooch.c │ │ └── sunderhammer.c │ ├── tristan │ │ ├── armor.c │ │ ├── armor2.c │ │ ├── axe1.c │ │ ├── jarofblood.c │ │ ├── notpball.c │ │ ├── pocket.c │ │ ├── pocket2.c │ │ ├── scimitar.c │ │ ├── test.c │ │ └── test2.c │ ├── tsera │ │ ├── aarmor.c │ │ ├── aarmor2.c │ │ ├── anerobes.c │ │ ├── aramelhelm.c │ │ ├── archrobes.c │ │ ├── arhat.c │ │ ├── arrowdam.c │ │ ├── asheath.c │ │ ├── beshabadie.c │ │ ├── ccase.c │ │ ├── chest.c │ │ ├── cmon.c │ │ ├── darkbracelets.c │ │ ├── darkshadow.c │ │ ├── dleggings.c │ │ ├── elfcrux.c │ │ ├── enrapture.c │ │ ├── esword.c │ │ ├── eyepatch.c │ │ ├── festival │ │ │ ├── flamerose.c │ │ │ ├── handmirror.c │ │ │ └── mask_jester_torm.c │ │ ├── flamerose.c │ │ ├── freewind.c │ │ ├── girruuth_box1.c │ │ ├── hknife.c │ │ ├── malarpendant.c │ │ ├── marikapike.c │ │ ├── maskdagger.c │ │ ├── mooncirclet.c │ │ ├── nightyds.c │ │ ├── nightydsp.c │ │ ├── nymeriasword.c │ │ ├── painting.c │ │ ├── rapierdam.c │ │ ├── rarmor.c │ │ ├── rock.c │ │ ├── sarmor.c │ │ ├── scat.c │ │ ├── scat2.c │ │ ├── scorp.c │ │ ├── shadowrobes.c │ │ ├── shifterrobes.c │ │ ├── smon.c │ │ ├── smontest.c │ │ ├── solar.c │ │ ├── songblade.c │ │ ├── stormrapier.c │ │ ├── succubus.c │ │ ├── tasword.c │ │ ├── taswordany.c │ │ ├── tcat.c │ │ ├── tlance.c │ │ └── wdress.c │ ├── tyr │ │ ├── Tyrsrobe.c │ │ ├── boychild.c │ │ └── mask1.c │ ├── valkur │ │ ├── arvandor.c │ │ ├── blackcoat.c │ │ ├── drinkz.c │ │ ├── foodz.c │ │ ├── myitem.c │ │ ├── taint.c │ │ ├── tainted.c │ │ ├── tainted_gar.c │ │ └── testdagger.c │ ├── velsharoon │ │ ├── badgerarmor.c │ │ ├── coral_trident.c │ │ ├── develance.c │ │ ├── devesword.c │ │ ├── draconic_mind.c │ │ ├── drinkz.c │ │ ├── fatesembrace.c │ │ ├── foodz.c │ │ ├── jimimark.c │ │ ├── kenderspride.c │ │ ├── quillsword.c │ │ ├── sekolah_pendant.c │ │ ├── shadow.c │ │ ├── silkrobes.c │ │ ├── starsmajesty.c │ │ ├── stormarm.c │ │ ├── sunedoll.c │ │ ├── topaz_heart.c │ │ ├── trevizesword.c │ │ ├── urchin_stilleto.c │ │ ├── velcrown.c │ │ ├── velfang.c │ │ ├── velskull.c │ │ └── voideye.c │ ├── xvim │ │ ├── Bantiochsword.c │ │ ├── BladeofHate.c │ │ ├── Braceletofspeed.c │ │ ├── Crystalplate.c │ │ ├── Crystalplate2.c │ │ ├── Dwarfrobe.c │ │ ├── DwarvenWR.c │ │ ├── Elvarobe.c │ │ ├── Greydonrobe.c │ │ ├── Lahnnasword.c │ │ ├── Lahnnasword2.c │ │ ├── Lahnnasword3.c │ │ ├── Lahnnasword4.c │ │ ├── NastyHammer.c │ │ ├── Sabreofthestones.c │ │ ├── ShadeDragonArmor2.c │ │ ├── ShadeDragonBoots.c │ │ ├── SwordOfWar.c │ │ ├── WoodenStake.c │ │ ├── Xvimweap.c │ │ ├── ambyjadew.c │ │ ├── ataarnecklace.c │ │ ├── ataarnecklace2.c │ │ ├── bdruidrobe.c │ │ ├── bloodring.c │ │ ├── cloakxvim.c │ │ ├── darumsword.c │ │ ├── darumsword2.c │ │ ├── desmondplate.c │ │ ├── desmondplate2.c │ │ ├── etarenaweapon.c │ │ ├── etarenaweapon2.c │ │ ├── flandarmor.c │ │ ├── gabrielleplate.c │ │ ├── gimlihelm.c │ │ ├── glovesofw.c │ │ ├── glovesofw2.c │ │ ├── greydonstaff.c │ │ ├── hammerspike1.c │ │ ├── iaidoamulet.c │ │ ├── jacobhead.c │ │ ├── kierarmor1.c │ │ ├── littleguysrobe3.c │ │ ├── pigstatue.c │ │ ├── rocarm.c │ │ ├── roccloth.c │ │ ├── sharstaff.c │ │ ├── shoeofwoe.c │ │ └── staffdruid.c │ └── yves │ │ ├── Deku.c │ │ └── cigar.c ├── avrooms │ ├── asmodeus.c │ ├── crystalmsg.h │ ├── grumbar.c │ ├── hlal.c │ ├── ibrandul.c │ ├── lurue.c │ ├── luruebday.c │ ├── scrytable.c │ ├── tiamat.c │ └── velsharoon.c ├── azha │ ├── alamut │ │ └── room │ │ │ ├── 8level2.c │ │ │ └── forest8.c │ ├── azha.h │ ├── daemon │ │ └── overseer.c │ ├── equip │ │ ├── a_axe.c │ │ ├── avenger.c │ │ ├── avenger.obs │ │ ├── extra_healing.c │ │ ├── fort │ │ │ ├── aldagger.c │ │ │ ├── runeblade.c │ │ │ ├── runecurse.c │ │ │ ├── sc.c │ │ │ └── swordchaos.c │ │ ├── gov_staff.c │ │ ├── iarmor.c │ │ ├── ihalberd.c │ │ ├── ihelm.c │ │ ├── ipike.c │ │ ├── iscimitar.c │ │ ├── ishield.c │ │ ├── rc.c │ │ ├── recurved_bow.c │ │ ├── robeconceal.c │ │ ├── scimitar.c │ │ ├── stun_staff.c │ │ ├── warmor.c │ │ └── wsword.c │ ├── fort │ │ ├── gate.c │ │ ├── hall2.c │ │ ├── hall3.c │ │ ├── hall4.c │ │ ├── keep.c │ │ ├── passage1.c │ │ ├── passage2.c │ │ ├── passage3.c │ │ ├── passage4.c │ │ ├── stair1.c │ │ ├── stair2.c │ │ ├── stair3.c │ │ └── treasury.c │ ├── history.txt │ ├── mon │ │ ├── abbas.c │ │ ├── abuosama.c │ │ ├── agrapolos.c │ │ ├── al.c │ │ ├── alarcher.c │ │ ├── aldada.c │ │ ├── alemir.c │ │ ├── alghazi.c │ │ ├── alhazen.c │ │ ├── alradin.c │ │ ├── alshabazz.c │ │ ├── alsura.c │ │ ├── areopagus.c │ │ ├── asdude.c │ │ ├── assurya.c │ │ ├── bokara.c │ │ ├── divai.c │ │ ├── dubcheck.c │ │ ├── esoldier.c │ │ ├── fort │ │ │ ├── gfelemental.c │ │ │ ├── salamander.c │ │ │ └── stoker.c │ │ ├── h_alhazen.c │ │ ├── haze.c │ │ ├── ibby.c │ │ ├── ibn.c │ │ ├── ibnpasha.c │ │ ├── ibnshia.c │ │ ├── ibnshiraz.c │ │ ├── impguard.c │ │ ├── impranger.c │ │ ├── imps.c │ │ ├── impscout.c │ │ ├── impsgt.c │ │ ├── impsoldier.c │ │ ├── itrooper.c │ │ ├── larcher.c │ │ ├── lubokis.c │ │ ├── mdubcheck.c │ │ ├── merchant.c │ │ ├── militia.c │ │ ├── murad.c │ │ ├── pack.c │ │ ├── provost.c │ │ ├── ra │ │ ├── rad.c │ │ ├── s-impguard.c │ │ ├── s-impsgt.c │ │ ├── s-impsoldier.c │ │ ├── scout.c │ │ ├── se.c │ │ ├── seeker.c │ │ ├── simp.c │ │ ├── sk.c │ │ ├── skirmisher.c │ │ ├── sn.c │ │ ├── stable.c │ │ ├── stoker.c │ │ ├── surite.c │ │ ├── sweeper.c │ │ ├── taras.c │ │ ├── tetra.c │ │ ├── thanatos.c │ │ ├── thief.c │ │ ├── townsman.c │ │ └── watchman.c │ ├── monsters.h │ ├── obj │ │ ├── agmr_ring.c │ │ ├── alradinbrooch.c │ │ ├── arop.c │ │ ├── crescent.c │ │ ├── fake.c │ │ ├── fred.c │ │ ├── gemsee.c │ │ ├── gmr_ring.c │ │ ├── mr_ring.c │ │ ├── pack.c │ │ ├── passkey.c │ │ ├── poison.c │ │ ├── regen_ring.c │ │ ├── rift_key.c │ │ ├── vanishing.c │ │ └── vanishing.gre │ ├── rift │ │ ├── hell1.c │ │ └── hell2.c │ ├── std │ │ └── wander.c │ ├── test.db │ ├── theater │ │ ├── east4.c │ │ ├── inherits │ │ │ ├── azha_trade.c │ │ │ ├── box_inherit.c │ │ │ ├── calim2_inherit.c │ │ │ ├── calim_inherit.c │ │ │ ├── catwalk_inherit.c │ │ │ ├── cost_inherit.c │ │ │ ├── droom_inherit.c │ │ │ ├── dso_inherit.c │ │ │ ├── mezz_inherit.c │ │ │ ├── prop_inherit.c │ │ │ ├── stairs_inherit.c │ │ │ └── under_inherit.c │ │ ├── mon │ │ ├── mons │ │ │ ├── cloaker.c │ │ │ ├── ivashka_harpy.c │ │ │ ├── marion_bard.c │ │ │ ├── marion_cavalier.c │ │ │ ├── marion_cleric.c │ │ │ ├── marion_fighter.c │ │ │ ├── marion_mage.c │ │ │ ├── marion_ranger.c │ │ │ ├── marion_thief.c │ │ │ ├── marionette.c │ │ │ ├── mashiva.c │ │ │ ├── mimic.c │ │ │ ├── pinksiren.c │ │ │ ├── purplesiren.c │ │ │ └── woodenhorse.c │ │ ├── obj │ │ │ ├── alignleather.c │ │ │ ├── bardchoker.c │ │ │ ├── bodies.c │ │ │ ├── cathood.c │ │ │ ├── chessflail.c │ │ │ ├── eryinesleather.c │ │ │ ├── frogsuit.c │ │ │ ├── glamchain.c │ │ │ ├── goldheaddress.c │ │ │ ├── goldtop.c │ │ │ ├── griffonmask.c │ │ │ ├── handbill.c │ │ │ ├── handcrank.c │ │ │ ├── innocentdress.c │ │ │ ├── jadeclaws.c │ │ │ ├── lunarfan.c │ │ │ ├── malebplate.c │ │ │ ├── marbleflute.c │ │ │ ├── marblelute.c │ │ │ ├── marblelyre.c │ │ │ ├── menshirt.c │ │ │ ├── moonshadow.c │ │ │ ├── r_shoes.c │ │ │ ├── regalcrown.c │ │ │ ├── roguesuit.c │ │ │ ├── runeaxe.c │ │ │ ├── script1.c │ │ │ ├── script2.c │ │ │ ├── script3.c │ │ │ ├── shadowspear.c │ │ │ ├── songblade.c │ │ │ ├── squirrelsuit.c │ │ │ ├── steelshield.c │ │ │ ├── tabbycatsuit.c │ │ │ ├── tigermask.c │ │ │ ├── titansword.c │ │ │ └── womendress.c │ │ ├── rooms │ │ │ ├── azp1.c │ │ │ ├── azp2.c │ │ │ ├── azp3.c │ │ │ ├── azp4.c │ │ │ ├── azp5.c │ │ │ ├── azp6.c │ │ │ ├── azp7.c │ │ │ ├── azp8.c │ │ │ ├── azp9.c │ │ │ ├── backstage.c │ │ │ ├── box1.c │ │ │ ├── box2.c │ │ │ ├── box3.c │ │ │ ├── box4.c │ │ │ ├── cal1.c │ │ │ ├── cal2.c │ │ │ ├── cal3.c │ │ │ ├── cal4.c │ │ │ ├── cal5.c │ │ │ ├── calim1.c │ │ │ ├── calim2.c │ │ │ ├── calim3.c │ │ │ ├── calim4.c │ │ │ ├── calim5.c │ │ │ ├── calim6.c │ │ │ ├── calim7.c │ │ │ ├── calim8.c │ │ │ ├── cat1.c │ │ │ ├── cat2.c │ │ │ ├── cat3.c │ │ │ ├── cat4.c │ │ │ ├── cat5.c │ │ │ ├── cat6.c │ │ │ ├── cat7.c │ │ │ ├── cat8.c │ │ │ ├── cat9.c │ │ │ ├── cost1.c │ │ │ ├── cost2.c │ │ │ ├── cost3.c │ │ │ ├── cost4.c │ │ │ ├── cost5.c │ │ │ ├── droom1.c │ │ │ ├── droom2.c │ │ │ ├── droom3.c │ │ │ ├── droom4.c │ │ │ ├── dso1.c │ │ │ ├── dso2.c │ │ │ ├── dso3.c │ │ │ ├── dso4.c │ │ │ ├── dso5.c │ │ │ ├── dso6.c │ │ │ ├── mezz1.c │ │ │ ├── mezz2.c │ │ │ ├── mezz3.c │ │ │ ├── mezz4.c │ │ │ ├── nest.c │ │ │ ├── prop1.c │ │ │ ├── prop2.c │ │ │ ├── prop3.c │ │ │ ├── prop4.c │ │ │ ├── prop5.c │ │ │ ├── stairs1.c │ │ │ ├── stairs2.c │ │ │ ├── stairs3.c │ │ │ ├── stairs4.c │ │ │ ├── theater1.c │ │ │ ├── theater2.c │ │ │ ├── under1.c │ │ │ ├── under2.c │ │ │ ├── under3.c │ │ │ ├── under4.c │ │ │ ├── under5.c │ │ │ ├── under6.c │ │ │ └── under7.c │ │ ├── theater.h │ │ └── wroad13.c │ ├── town │ │ ├── armor_storage.c │ │ ├── azha_psi_comps.c │ │ ├── bank.c │ │ ├── bokara_storage.c │ │ ├── center1.c │ │ ├── center2.c │ │ ├── church.c │ │ ├── crystal.c │ │ ├── customs.c │ │ ├── east1.c │ │ ├── east2.c │ │ ├── east3.c │ │ ├── east4.c │ │ ├── ending │ │ ├── food_storage.c │ │ ├── fort1.c │ │ ├── fort2.c │ │ ├── fort3.c │ │ ├── fort4.c │ │ ├── fort5.c │ │ ├── healer.c │ │ ├── high1.c │ │ ├── high2.c │ │ ├── high3.c │ │ ├── high4.c │ │ ├── high5.c │ │ ├── jail.c │ │ ├── market1.c │ │ ├── market2.c │ │ ├── market3.c │ │ ├── market4.c │ │ ├── market5.c │ │ ├── market6.c │ │ ├── mounts │ │ │ ├── camel.c │ │ │ ├── elephant.c │ │ │ ├── stallion.c │ │ │ └── tiger.c │ │ ├── murad_storage.c │ │ ├── police.c │ │ ├── portal.c │ │ ├── south1.c │ │ ├── south2.c │ │ ├── south3.c │ │ ├── south4.c │ │ ├── south5.c │ │ ├── southgate.c │ │ ├── special_storage.c │ │ ├── sroad1.c │ │ ├── sroad2.c │ │ ├── sroad3.c │ │ ├── stable.c │ │ ├── taras_storage.c │ │ ├── tavern.c │ │ ├── townhall.c │ │ ├── weapons_storage.c │ │ ├── west1.c │ │ ├── west2.c │ │ ├── west3.c │ │ ├── west4.c │ │ ├── westgate.c │ │ └── wroad.c │ └── virtual │ │ ├── fort1 │ │ ├── fort1.desc │ │ ├── fort1.exits │ │ └── fort1.terrain │ │ ├── fort1_daemon.c │ │ ├── fort1_server.c │ │ ├── fort2 │ │ ├── fort2.desc │ │ ├── fort2.exits │ │ └── fort2.terrain │ │ ├── fort2_daemon.c │ │ ├── fort2_server.c │ │ ├── fort3 │ │ ├── fort3.desc │ │ └── fort3.exits │ │ ├── level1_daemon.c │ │ └── level1_server.c ├── barriermnts │ ├── bforest │ │ ├── bforest.h │ │ ├── broom.c │ │ ├── fpath.c │ │ ├── fredge.c │ │ ├── mon │ │ │ └── hwolf.c │ │ ├── obj │ │ │ ├── abow.c │ │ │ ├── bbow.c │ │ │ ├── hknife.c │ │ │ ├── hspear.c │ │ │ └── wildberries.c │ │ ├── rooms │ │ │ ├── bce1.c │ │ │ ├── bce2.c │ │ │ ├── fpath1.c │ │ │ ├── fpath10.c │ │ │ ├── fpath2.c │ │ │ ├── fpath3.c │ │ │ ├── fpath38.c │ │ │ ├── fpath39.c │ │ │ ├── fpath4.c │ │ │ ├── fpath40.c │ │ │ ├── fpath41.c │ │ │ ├── fpath42.c │ │ │ ├── fpath43.c │ │ │ ├── fpath44.c │ │ │ ├── fpath45.c │ │ │ ├── fpath46.c │ │ │ ├── fpath47.c │ │ │ ├── fpath48.c │ │ │ ├── fpath49.c │ │ │ ├── fpath5.c │ │ │ ├── fpath50.c │ │ │ ├── fpath51.c │ │ │ ├── fpath52.c │ │ │ ├── fpath53.c │ │ │ ├── fpath54.c │ │ │ ├── fpath55.c │ │ │ ├── fpath56.c │ │ │ ├── fpath57.c │ │ │ ├── fpath58.c │ │ │ ├── fpath59.c │ │ │ ├── fpath60.c │ │ │ ├── fpath61.c │ │ │ ├── fpath62.c │ │ │ ├── fpath63.c │ │ │ ├── fpath8.c │ │ │ ├── fpath9.c │ │ │ ├── frpath1.c │ │ │ ├── frpath2.c │ │ │ ├── frpath3.c │ │ │ ├── frpath4.c │ │ │ ├── frpath5.c │ │ │ ├── troom1.c │ │ │ ├── troom2.c │ │ │ ├── troom3.c │ │ │ ├── troom4.c │ │ │ └── troom5.c │ │ ├── treeroom2.c │ │ └── troom.c │ ├── bpeak │ │ ├── b.c │ │ ├── bpeak.h │ │ ├── dcave.c │ │ ├── mon │ │ │ ├── axlhaina.c │ │ │ ├── bogre.c │ │ │ ├── dwolf.c │ │ │ ├── dwolf2.c │ │ │ ├── dwolf3.c │ │ │ ├── fgiant.c │ │ │ ├── hillg1.c │ │ │ ├── hillg2.c │ │ │ ├── hillg3.c │ │ │ ├── hillg4.c │ │ │ ├── hillg5.c │ │ │ ├── ogre2.c │ │ │ ├── orcc.c │ │ │ ├── rorc.c │ │ │ ├── serpent.c │ │ │ └── spider1.c │ │ ├── obj │ │ │ ├── avenger.c │ │ │ ├── basicc.c │ │ │ ├── bpan.c │ │ │ ├── conchshell1.c │ │ │ ├── dwarfsword.c │ │ │ ├── gclub.c │ │ │ ├── goldnugget.c │ │ │ ├── leather.c │ │ │ ├── parchment2.c │ │ │ ├── pillar.c │ │ │ ├── pmsring.c │ │ │ ├── rarmband.c │ │ │ ├── saring.c │ │ │ ├── searcuff.c │ │ │ ├── shells.c │ │ │ ├── smokedfish.c │ │ │ ├── spidernecklace.c │ │ │ ├── trevenge.c │ │ │ ├── vinering.c │ │ │ ├── wcloak1.c │ │ │ └── wcloakm.c │ │ ├── rooms │ │ │ ├── b1.c │ │ │ ├── b2.c │ │ │ ├── b3.c │ │ │ ├── bcave1.c │ │ │ ├── bcave2.c │ │ │ ├── bcave3.c │ │ │ ├── bcave4.c │ │ │ ├── bcliff.c │ │ │ ├── bcliff2.c │ │ │ ├── bcliff3.c │ │ │ ├── bcliff4.c │ │ │ ├── bcliff5.c │ │ │ ├── bcliff6.c │ │ │ ├── bcliff7.c │ │ │ ├── bcliff8.c │ │ │ ├── bkgroom.c │ │ │ ├── bldg1.c │ │ │ ├── bldg2.c │ │ │ ├── bldg3.c │ │ │ ├── bledge.c │ │ │ ├── bpath2.c │ │ │ ├── bpath3.c │ │ │ ├── bridge.c │ │ │ ├── ce1.c │ │ │ ├── criver.c │ │ │ ├── dcave1.c │ │ │ ├── dcave2.c │ │ │ ├── dcave3.c │ │ │ ├── dcave4.c │ │ │ ├── dcave5.c │ │ │ ├── dcave6.c │ │ │ ├── dcave7.c │ │ │ ├── dcave8.c │ │ │ ├── kgroom.c │ │ │ ├── redge.c │ │ │ ├── redge2.c │ │ │ ├── steps.c │ │ │ ├── stwy1.c │ │ │ ├── stwy2.c │ │ │ ├── stwy3.c │ │ │ ├── t1.c │ │ │ ├── t2.c │ │ │ ├── t3.c │ │ │ ├── t4.c │ │ │ ├── t5.c │ │ │ ├── t6.c │ │ │ ├── t7.c │ │ │ ├── tcliff1.c │ │ │ ├── tcliff11.c │ │ │ ├── tcliff13.c │ │ │ ├── tcliff2.c │ │ │ ├── tcliff3.c │ │ │ ├── tcliff4.c │ │ │ ├── tcliff5.c │ │ │ ├── tcliff9.c │ │ │ ├── tent1.c │ │ │ ├── tent2.c │ │ │ ├── tent3.c │ │ │ └── wolfpen.c │ │ ├── stwy.c │ │ ├── transition.c │ │ └── transition2.c │ ├── lothwaite │ │ ├── inherit │ │ │ ├── barrow_tomb.c │ │ │ ├── barrows.c │ │ │ ├── chandler.c │ │ │ ├── clothing_storage.c │ │ │ ├── general_storage.c │ │ │ ├── green.c │ │ │ ├── jeweler_shop.c │ │ │ ├── pathway.c │ │ │ ├── pathwayend.c │ │ │ ├── shore.c │ │ │ ├── smithy_storage.c │ │ │ ├── training.c │ │ │ └── vilpathway.c │ │ ├── lothwaite.h │ │ ├── lothwaite_quest.c │ │ ├── mon │ │ │ ├── edric.c │ │ │ ├── firbolg_citizen.c │ │ │ ├── firbolgchild.c │ │ │ ├── firbolgskeleton.c │ │ │ ├── firbolgwarrior.c │ │ │ ├── galen.c │ │ │ ├── ghostfirbolg.c │ │ │ ├── ghostking.c │ │ │ ├── ghostshaman.c │ │ │ ├── giantbee.c │ │ │ ├── gwanaelle.c │ │ │ ├── gwendolyn.c │ │ │ ├── imp.c │ │ │ ├── lothwaite_clerk.c │ │ │ ├── madelyn.c │ │ │ ├── mathuin.c │ │ │ ├── shaman.c │ │ │ └── trainer.c │ │ ├── obj │ │ │ ├── abrigon.c │ │ │ ├── airstaff.c │ │ │ ├── armband.c │ │ │ ├── base_pants.c │ │ │ ├── boots.c │ │ │ ├── candle_inherit.c │ │ │ ├── candle_sign │ │ │ ├── comb.c │ │ │ ├── corpse.c │ │ │ ├── drinking_horn.c │ │ │ ├── earthstaff.c │ │ │ ├── ethereal_bplate.c │ │ │ ├── ethereal_bracers.c │ │ │ ├── evertorch.c │ │ │ ├── firestaff.c │ │ │ ├── fleece_vest.c │ │ │ ├── flower_clasp.c │ │ │ ├── frost_sheath.c │ │ │ ├── ghostbelt.c │ │ │ ├── ghostboots.c │ │ │ ├── ghostcloak.c │ │ │ ├── ghostsandals.c │ │ │ ├── ghostscythe.c │ │ │ ├── ghoststaff.c │ │ │ ├── ghostsword.c │ │ │ ├── gloves.c │ │ │ ├── health_amulet.c │ │ │ ├── heart_clasp.c │ │ │ ├── honeycomb.c │ │ │ ├── impcloak.c │ │ │ ├── impstaff.c │ │ │ ├── leather_breeches.c │ │ │ ├── pants.c │ │ │ ├── pendant.c │ │ │ ├── pillar.c │ │ │ ├── robe.c │ │ │ ├── rune_layout │ │ │ ├── sandals.c │ │ │ ├── scented.c │ │ │ ├── sealing_wax.c │ │ │ ├── shadow_amulet.c │ │ │ ├── shadow_circlet.c │ │ │ ├── shadow_ring.c │ │ │ ├── shaped.c │ │ │ ├── shoes.c │ │ │ ├── snowflake_clasp.c │ │ │ ├── taper.c │ │ │ ├── torc.c │ │ │ ├── vilsign.c │ │ │ ├── waterstaff.c │ │ │ └── wool_tunic.c │ │ ├── ring-inherits │ │ │ ├── b_seal1.c │ │ │ ├── b_seal10.c │ │ │ ├── b_seal11.c │ │ │ ├── b_seal12.c │ │ │ ├── b_seal13.c │ │ │ ├── b_seal14.c │ │ │ ├── b_seal15.c │ │ │ ├── b_seal16.c │ │ │ ├── b_seal17.c │ │ │ ├── b_seal18.c │ │ │ ├── b_seal2.c │ │ │ ├── b_seal3.c │ │ │ ├── b_seal4.c │ │ │ ├── b_seal5.c │ │ │ ├── b_seal6.c │ │ │ ├── b_seal7.c │ │ │ ├── b_seal8.c │ │ │ ├── b_seal9.c │ │ │ └── signet_ring.h │ │ ├── rings │ │ │ ├── aenya.c │ │ │ ├── ahryk.c │ │ │ ├── akielstreea.c │ │ │ ├── alveric.c │ │ │ ├── alzar.c │ │ │ ├── anabella.c │ │ │ ├── anestriana.c │ │ │ ├── anshara.c │ │ │ ├── anson.c │ │ │ ├── ares.c │ │ │ ├── ariel.c │ │ │ ├── aurianne.c │ │ │ ├── belendithas.c │ │ │ ├── bellasarius.c │ │ │ ├── bregan.c │ │ │ ├── casualty.c │ │ │ ├── catherine.c │ │ │ ├── cerise.c │ │ │ ├── chexxi.c │ │ │ ├── cienia.c │ │ │ ├── claire.c │ │ │ ├── cythera.c │ │ │ ├── djaenya.c │ │ │ ├── eiryasha.c │ │ │ ├── eleanor.c │ │ │ ├── elendil.c │ │ │ ├── etarena.c │ │ │ ├── etnebais.c │ │ │ ├── feyd.c │ │ │ ├── gaspar.c │ │ │ ├── gered.c │ │ │ ├── gregor.c │ │ │ ├── harkain.c │ │ │ ├── illusen.c │ │ │ ├── innaeli.c │ │ │ ├── irisdel.c │ │ │ ├── istishia.c │ │ │ ├── jacen.c │ │ │ ├── jaedryl.c │ │ │ ├── judaxan.c │ │ │ ├── kendra.c │ │ │ ├── kennera.c │ │ │ ├── kheli.c │ │ │ ├── kieran.c │ │ │ ├── kiervalan.c │ │ │ ├── kiya.c │ │ │ ├── klinque.c │ │ │ ├── larenthanil.c │ │ │ ├── logos.c │ │ │ ├── lusell.c │ │ │ ├── mithras.c │ │ │ ├── myrkul.c │ │ │ ├── nalthic.c │ │ │ ├── naquin.c │ │ │ ├── niccoli.c │ │ │ ├── nienne.c │ │ │ ├── nsykah.c │ │ │ ├── nymeria.c │ │ │ ├── oghma.c │ │ │ ├── one.c │ │ │ ├── orodreth.c │ │ │ ├── ozaranth.c │ │ │ ├── quondangel.c │ │ │ ├── ragen.c │ │ │ ├── ramius.c │ │ │ ├── renicus.c │ │ │ ├── rheyn.c │ │ │ ├── rubicant.c │ │ │ ├── sadhara.c │ │ │ ├── selucia.c │ │ │ ├── selve.c │ │ │ ├── shrydelhi.c │ │ │ ├── silesse.c │ │ │ ├── singer.c │ │ │ ├── tatsuei.c │ │ │ ├── taviel.c │ │ │ ├── tengri.c │ │ │ ├── tharius.c │ │ │ ├── thayil.c │ │ │ ├── tsera.c │ │ │ ├── uchiha.c │ │ │ ├── valkorye.c │ │ │ ├── william.c │ │ │ ├── xangli.c │ │ │ ├── zashedia.c │ │ │ ├── zeal.c │ │ │ ├── ziger.c │ │ │ └── ziva.c │ │ └── rooms │ │ │ ├── b1.c │ │ │ ├── b10.c │ │ │ ├── b11.c │ │ │ ├── b12.c │ │ │ ├── b13.c │ │ │ ├── b14.c │ │ │ ├── b15.c │ │ │ ├── b16.c │ │ │ ├── b17.c │ │ │ ├── b18.c │ │ │ ├── b19.c │ │ │ ├── b2.c │ │ │ ├── b20.c │ │ │ ├── b21.c │ │ │ ├── b22.c │ │ │ ├── b23.c │ │ │ ├── b24.c │ │ │ ├── b25.c │ │ │ ├── b26.c │ │ │ ├── b27.c │ │ │ ├── b28.c │ │ │ ├── b29.c │ │ │ ├── b3.c │ │ │ ├── b30.c │ │ │ ├── b31.c │ │ │ ├── b32.c │ │ │ ├── b33.c │ │ │ ├── b34.c │ │ │ ├── b35.c │ │ │ ├── b36.c │ │ │ ├── b37.c │ │ │ ├── b38.c │ │ │ ├── b39.c │ │ │ ├── b4.c │ │ │ ├── b40.c │ │ │ ├── b41.c │ │ │ ├── b42.c │ │ │ ├── b43.c │ │ │ ├── b44.c │ │ │ ├── b45.c │ │ │ ├── b46.c │ │ │ ├── b47.c │ │ │ ├── b48.c │ │ │ ├── b49.c │ │ │ ├── b5.c │ │ │ ├── b50.c │ │ │ ├── b51.c │ │ │ ├── b52.c │ │ │ ├── b53.c │ │ │ ├── b54.c │ │ │ ├── b55.c │ │ │ ├── b56.c │ │ │ ├── b57.c │ │ │ ├── b58.c │ │ │ ├── b59.c │ │ │ ├── b6.c │ │ │ ├── b60.c │ │ │ ├── b7.c │ │ │ ├── b8.c │ │ │ ├── b9.c │ │ │ ├── b_start.c │ │ │ ├── beeroom.c │ │ │ ├── bridge1.c │ │ │ ├── bt1.c │ │ │ ├── bt10.c │ │ │ ├── bt11.c │ │ │ ├── bt12.c │ │ │ ├── bt2.c │ │ │ ├── bt3.c │ │ │ ├── bt4.c │ │ │ ├── bt5.c │ │ │ ├── bt6.c │ │ │ ├── bt7.c │ │ │ ├── bt8.c │ │ │ ├── bt9.c │ │ │ ├── candle.c │ │ │ ├── chapel1.c │ │ │ ├── chapel2.c │ │ │ ├── chapel3.c │ │ │ ├── chapel4.c │ │ │ ├── chapel5.c │ │ │ ├── clothing.c │ │ │ ├── dock.c │ │ │ ├── forge.c │ │ │ ├── general.c │ │ │ ├── grass1.c │ │ │ ├── green1.c │ │ │ ├── green2.c │ │ │ ├── green3.c │ │ │ ├── green4.c │ │ │ ├── guard.c │ │ │ ├── healer.c │ │ │ ├── hidden1.c │ │ │ ├── hidden2.c │ │ │ ├── inn1.c │ │ │ ├── inn2.c │ │ │ ├── inn3.c │ │ │ ├── inn4.c │ │ │ ├── inn5.c │ │ │ ├── jeweler.c │ │ │ ├── leader1.c │ │ │ ├── leader2.c │ │ │ ├── pathway1.c │ │ │ ├── pathway10.c │ │ │ ├── pathway11.c │ │ │ ├── pathway12.c │ │ │ ├── pathway13.c │ │ │ ├── pathway14.c │ │ │ ├── pathway15.c │ │ │ ├── pathway16.c │ │ │ ├── pathway17.c │ │ │ ├── pathway18.c │ │ │ ├── pathway19.c │ │ │ ├── pathway2.c │ │ │ ├── pathway20.c │ │ │ ├── pathway21.c │ │ │ ├── pathway22.c │ │ │ ├── pathway23.c │ │ │ ├── pathway24.c │ │ │ ├── pathway25.c │ │ │ ├── pathway26.c │ │ │ ├── pathway27.c │ │ │ ├── pathway28.c │ │ │ ├── pathway29.c │ │ │ ├── pathway3.c │ │ │ ├── pathway4.c │ │ │ ├── pathway5.c │ │ │ ├── pathway6.c │ │ │ ├── pathway7.c │ │ │ ├── pathway8.c │ │ │ ├── pathway9.c │ │ │ ├── shore1.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── smithy.c │ │ │ ├── stones1.c │ │ │ ├── stones2.c │ │ │ ├── training1.c │ │ │ ├── training10.c │ │ │ ├── training2.c │ │ │ ├── training3.c │ │ │ ├── training4.c │ │ │ ├── training5.c │ │ │ ├── training6.c │ │ │ ├── training7.c │ │ │ ├── training8.c │ │ │ ├── training9.c │ │ │ └── veggarden.c │ ├── ruins │ │ ├── inherit │ │ │ ├── inner.c │ │ │ ├── l0.c │ │ │ ├── l1a.c │ │ │ ├── l1b.c │ │ │ ├── l1c.c │ │ │ ├── l2a.c │ │ │ ├── l2b.c │ │ │ ├── l2c.c │ │ │ ├── path.c │ │ │ └── ruins.h │ │ ├── mon │ │ │ ├── advspirit.c │ │ │ ├── cultspirit.c │ │ │ ├── glovebird.c │ │ │ ├── goblin.c │ │ │ ├── goblin2.c │ │ │ ├── gobshaman.c │ │ │ ├── mage.c │ │ │ ├── sionne.c │ │ │ └── wyvern.c │ │ ├── obj │ │ │ ├── amulet.c │ │ │ ├── battleguards.c │ │ │ ├── bladestaff.c │ │ │ ├── bracelet.c │ │ │ ├── braceletold.c │ │ │ ├── butterflycloak.c │ │ │ ├── circlet.c │ │ │ ├── elbowshield.c │ │ │ ├── essence.c │ │ │ ├── featheredhat.c │ │ │ ├── gobstick.c │ │ │ ├── gobstone.c │ │ │ ├── hairpin.c │ │ │ ├── hairpin2.c │ │ │ ├── katar.c │ │ │ ├── kimono.c │ │ │ ├── oils.c │ │ │ ├── perfume.c │ │ │ ├── pothelmet.c │ │ │ ├── rangerglove.c │ │ │ ├── ribbons.c │ │ │ ├── sash.c │ │ │ ├── sceptre.c │ │ │ ├── scimitar.c │ │ │ ├── sigilblue.c │ │ │ ├── sigilgreen.c │ │ │ ├── sigilred.c │ │ │ ├── sigilyellow.c │ │ │ ├── spindledisks.c │ │ │ ├── thundergloves.c │ │ │ ├── veil.c │ │ │ ├── vest.c │ │ │ └── wolfjacket.c │ │ └── room │ │ │ ├── 1-2.c │ │ │ ├── 1-3.c │ │ │ ├── 1-4.c │ │ │ ├── 2-1.c │ │ │ ├── 2-2.c │ │ │ ├── 2-3.c │ │ │ ├── 2-4.c │ │ │ ├── 2-5.c │ │ │ ├── 3-1.c │ │ │ ├── 3-2.c │ │ │ ├── 3-3.c │ │ │ ├── 3-4.c │ │ │ ├── 3-5.c │ │ │ ├── 4-1.c │ │ │ ├── 4-5.c │ │ │ ├── 5-1.c │ │ │ ├── 5-5.c │ │ │ ├── 6-1.c │ │ │ ├── 6-5.c │ │ │ ├── 7-1.c │ │ │ ├── 7-5.c │ │ │ ├── 8-1.c │ │ │ ├── 8-2.c │ │ │ ├── 8-3.c │ │ │ ├── 8-4.c │ │ │ ├── 8-5.c │ │ │ ├── b1-1.c │ │ │ ├── b1-2.c │ │ │ ├── b1-3.c │ │ │ ├── b2-1.c │ │ │ ├── b2-2.c │ │ │ ├── b2-3.c │ │ │ ├── b2-4.c │ │ │ ├── b2-5.c │ │ │ ├── b3-1.c │ │ │ ├── b3-2.c │ │ │ ├── b3-3.c │ │ │ ├── b3-4.c │ │ │ ├── b3-5.c │ │ │ ├── b4-1.c │ │ │ ├── b4-2.c │ │ │ ├── b4-3.c │ │ │ ├── b4-4.c │ │ │ ├── b4-5.c │ │ │ ├── b5-1.c │ │ │ ├── b5-2.c │ │ │ ├── b5-3.c │ │ │ ├── b5-4.c │ │ │ ├── b5-5.c │ │ │ ├── b6-1.c │ │ │ ├── b6-2.c │ │ │ ├── b6-3.c │ │ │ ├── b7-3.c │ │ │ ├── entry.c │ │ │ ├── inner1.c │ │ │ ├── inner2.c │ │ │ ├── inner3.c │ │ │ ├── path0.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── t1.c │ │ │ ├── t2.c │ │ │ ├── t3.c │ │ │ ├── u1-1.c │ │ │ ├── u1-2.c │ │ │ ├── u1-3.c │ │ │ ├── u1-4.c │ │ │ ├── u1-5.c │ │ │ ├── u2-1.c │ │ │ ├── u2-2.c │ │ │ ├── u2-4.c │ │ │ ├── u2-5.c │ │ │ ├── u3-1.c │ │ │ ├── u3-2.c │ │ │ ├── u3-4.c │ │ │ ├── u3-5.c │ │ │ ├── u4-1.c │ │ │ ├── u4-2.c │ │ │ ├── u4-4.c │ │ │ ├── u4-5.c │ │ │ ├── u5-1.c │ │ │ ├── u5-2.c │ │ │ ├── u5-3.c │ │ │ ├── u5-4.c │ │ │ ├── u5-5.c │ │ │ ├── u6-1.c │ │ │ ├── u6-2.c │ │ │ ├── u6-3.c │ │ │ ├── u6-4.c │ │ │ ├── u6-5.c │ │ │ └── u7-3.c │ └── underdark │ │ ├── DESC │ │ └── obj │ │ ├── elfskin_boots.c │ │ ├── spider_slippers.c │ │ └── sticky_shield.c ├── charucavern │ ├── area notes.txt │ ├── charucavern │ │ ├── area notes.txt │ │ ├── mirrormaze │ │ │ ├── inherits │ │ │ │ └── mirror.c │ │ │ └── ob │ │ │ │ └── flask.c │ │ ├── mizatencampment │ │ │ ├── inherits │ │ │ │ ├── area_stuff.h │ │ │ │ ├── crystal_storage.c │ │ │ │ ├── merchant_storage.c │ │ │ │ ├── mizatcavern.c │ │ │ │ ├── mizatencamp.c │ │ │ │ └── vendor.c │ │ │ ├── mon │ │ │ │ ├── bartender.c │ │ │ │ ├── crystal_merchant.c │ │ │ │ ├── merchant.c │ │ │ │ ├── mizat_guard.c │ │ │ │ └── mizati.c │ │ │ ├── ob │ │ │ │ ├── bright_pink_crystal.c │ │ │ │ ├── dark_yellow_crystal.c │ │ │ │ ├── tent.c │ │ │ │ ├── tent_object.c │ │ │ │ └── tent_room.c │ │ │ └── rooms │ │ │ │ ├── bar.c │ │ │ │ ├── crystal_merchant.c │ │ │ │ ├── leader.c │ │ │ │ ├── merchant.c │ │ │ │ ├── mizat_encamp1.c │ │ │ │ ├── mizat_encamp2.c │ │ │ │ ├── mizat_encamp3.c │ │ │ │ ├── mizat_encamp4.c │ │ │ │ ├── mizat_encamp5.c │ │ │ │ ├── mizatcave1.c │ │ │ │ ├── mizatcave2.c │ │ │ │ ├── mizatcave3.c │ │ │ │ └── portal1.c │ │ ├── mysticcave │ │ │ ├── inherits │ │ │ │ ├── area_stuff.h │ │ │ │ ├── cc_treasure.c │ │ │ │ ├── lower.c │ │ │ │ ├── mid.c │ │ │ │ ├── mysticcave.c │ │ │ │ └── upper.c │ │ │ ├── mon │ │ │ │ ├── abomination.c │ │ │ │ ├── arcane_ooze.c │ │ │ │ ├── bloated_rat.c │ │ │ │ ├── conflaguration_ooze.c │ │ │ │ ├── mimic.c │ │ │ │ ├── rune_keeper.c │ │ │ │ ├── starving_bear.c │ │ │ │ ├── starving_hyena.c │ │ │ │ ├── starving_wolf.c │ │ │ │ └── summoning_ooze.c │ │ │ ├── ob │ │ │ │ ├── crater_specials.c │ │ │ │ ├── crater_weapon.c │ │ │ │ ├── fiery_toxin.c │ │ │ │ ├── rune.c │ │ │ │ ├── rune_shard.c │ │ │ │ └── written_info.c │ │ │ └── rooms │ │ │ │ ├── lower1.c │ │ │ │ ├── lower10.c │ │ │ │ ├── lower11.c │ │ │ │ ├── lower12.c │ │ │ │ ├── lower13.c │ │ │ │ ├── lower14.c │ │ │ │ ├── lower15.c │ │ │ │ ├── lower2.c │ │ │ │ ├── lower2_1.c │ │ │ │ ├── lower2_2.c │ │ │ │ ├── lower2_3.c │ │ │ │ ├── lower2_4.c │ │ │ │ ├── lower2_5.c │ │ │ │ ├── lower2_6.c │ │ │ │ ├── lower2_7.c │ │ │ │ ├── lower2_enter.c │ │ │ │ ├── lower3.c │ │ │ │ ├── lower4.c │ │ │ │ ├── lower5.c │ │ │ │ ├── lower6.c │ │ │ │ ├── lower7.c │ │ │ │ ├── lower8.c │ │ │ │ ├── lower9.c │ │ │ │ ├── lowerenter.c │ │ │ │ ├── mid1.c │ │ │ │ ├── mid10.c │ │ │ │ ├── mid11.c │ │ │ │ ├── mid2.c │ │ │ │ ├── mid2_1.c │ │ │ │ ├── mid2_2.c │ │ │ │ ├── mid2_3.c │ │ │ │ ├── mid2_4.c │ │ │ │ ├── mid2_5.c │ │ │ │ ├── mid2_6.c │ │ │ │ ├── mid2_7.c │ │ │ │ ├── mid2_enter.c │ │ │ │ ├── mid3.c │ │ │ │ ├── mid4.c │ │ │ │ ├── mid5.c │ │ │ │ ├── mid6.c │ │ │ │ ├── mid7.c │ │ │ │ ├── mid8.c │ │ │ │ ├── mid9.c │ │ │ │ ├── midenter.c │ │ │ │ ├── old │ │ │ │ ├── inner1.c │ │ │ │ ├── inner10.c │ │ │ │ ├── inner11.c │ │ │ │ ├── inner12.c │ │ │ │ ├── inner13.c │ │ │ │ ├── inner14.c │ │ │ │ ├── inner15.c │ │ │ │ ├── inner16.c │ │ │ │ ├── inner17.c │ │ │ │ ├── inner18.c │ │ │ │ ├── inner19.c │ │ │ │ ├── inner2.c │ │ │ │ ├── inner20.c │ │ │ │ ├── inner21.c │ │ │ │ ├── inner22.c │ │ │ │ ├── inner23.c │ │ │ │ ├── inner24.c │ │ │ │ ├── inner25.c │ │ │ │ ├── inner26.c │ │ │ │ ├── inner27.c │ │ │ │ ├── inner28.c │ │ │ │ ├── inner29.c │ │ │ │ ├── inner3.c │ │ │ │ ├── inner30.c │ │ │ │ ├── inner31.c │ │ │ │ ├── inner4.c │ │ │ │ ├── inner5.c │ │ │ │ ├── inner6.c │ │ │ │ ├── inner7.c │ │ │ │ ├── inner8.c │ │ │ │ ├── inner9.c │ │ │ │ ├── out1.c │ │ │ │ ├── out10.c │ │ │ │ ├── out11.c │ │ │ │ ├── out12.c │ │ │ │ ├── out13.c │ │ │ │ ├── out14.c │ │ │ │ ├── out15.c │ │ │ │ ├── out16.c │ │ │ │ ├── out17.c │ │ │ │ ├── out18.c │ │ │ │ ├── out2.c │ │ │ │ ├── out3.c │ │ │ │ ├── out4.c │ │ │ │ ├── out5.c │ │ │ │ ├── out6.c │ │ │ │ ├── out7.c │ │ │ │ ├── out8.c │ │ │ │ └── out9.c │ │ │ │ ├── upper1.c │ │ │ │ ├── upper10.c │ │ │ │ ├── upper11.c │ │ │ │ ├── upper12.c │ │ │ │ ├── upper13.c │ │ │ │ ├── upper14.c │ │ │ │ ├── upper15.c │ │ │ │ ├── upper2.c │ │ │ │ ├── upper3.c │ │ │ │ ├── upper4.c │ │ │ │ ├── upper5.c │ │ │ │ ├── upper6.c │ │ │ │ ├── upper7.c │ │ │ │ ├── upper8.c │ │ │ │ ├── upper9.c │ │ │ │ └── upperout.c │ │ └── wormlair │ │ │ ├── inherits │ │ │ ├── area_stuff.h │ │ │ ├── worm.c │ │ │ ├── worm_treasure.c │ │ │ ├── wormfall.c │ │ │ ├── wormlair.c │ │ │ ├── wormtun.c │ │ │ ├── wormtunnar.c │ │ │ └── wormtunnar2.c │ │ │ ├── mon │ │ │ ├── adult_purple_worm.c │ │ │ ├── greater_purple_worm.c │ │ │ ├── howne.c │ │ │ ├── spectral_purple_worm.c │ │ │ └── young_purple_worm.c │ │ │ ├── ob │ │ │ ├── lightstone.c │ │ │ ├── purple_worm_blade.c │ │ │ ├── purple_worm_coif.c │ │ │ ├── sourcestone.c │ │ │ ├── worm_guise.c │ │ │ └── worm_stomach.c │ │ │ └── rooms │ │ │ ├── wormnar1_1.c │ │ │ ├── wormnar1_2.c │ │ │ ├── wormnar1_3.c │ │ │ ├── wormnar1_4.c │ │ │ ├── wormnar1_5.c │ │ │ ├── wormnar1_6.c │ │ │ ├── wormnar2_1.c │ │ │ ├── wormnar2_2.c │ │ │ ├── wormnar2_3.c │ │ │ ├── wormnar2_4.c │ │ │ ├── wormnar2_5.c │ │ │ ├── wormnar2_6.c │ │ │ ├── wormnar3_1.c │ │ │ ├── wormnar3_2.c │ │ │ ├── wormnar3_3.c │ │ │ ├── wormnar3_4.c │ │ │ ├── wormnar3_5.c │ │ │ ├── wormnar3_6.c │ │ │ ├── wormnar4_1.c │ │ │ ├── wormnar4_2.c │ │ │ ├── wormnar4_3.c │ │ │ ├── wormnar4_4.c │ │ │ ├── wormnar4_5.c │ │ │ ├── wormnar4_6.c │ │ │ ├── wormtun1_1.c │ │ │ ├── wormtun1_10.c │ │ │ ├── wormtun1_11.c │ │ │ ├── wormtun1_12.c │ │ │ ├── wormtun1_2.c │ │ │ ├── wormtun1_3.c │ │ │ ├── wormtun1_4.c │ │ │ ├── wormtun1_5.c │ │ │ ├── wormtun1_6.c │ │ │ ├── wormtun1_7.c │ │ │ ├── wormtun1_8.c │ │ │ ├── wormtun1_9.c │ │ │ ├── wormtun2_1.c │ │ │ ├── wormtun2_10.c │ │ │ ├── wormtun2_11.c │ │ │ ├── wormtun2_12.c │ │ │ ├── wormtun2_13.c │ │ │ ├── wormtun2_14.c │ │ │ ├── wormtun2_15.c │ │ │ ├── wormtun2_2.c │ │ │ ├── wormtun2_3.c │ │ │ ├── wormtun2_4.c │ │ │ ├── wormtun2_5.c │ │ │ ├── wormtun2_6.c │ │ │ ├── wormtun2_7.c │ │ │ ├── wormtun2_8.c │ │ │ ├── wormtun2_9.c │ │ │ ├── wormtun3_1.c │ │ │ ├── wormtun3_10.c │ │ │ ├── wormtun3_11.c │ │ │ ├── wormtun3_2.c │ │ │ ├── wormtun3_3.c │ │ │ ├── wormtun3_4.c │ │ │ ├── wormtun3_5.c │ │ │ ├── wormtun3_6.c │ │ │ ├── wormtun3_7.c │ │ │ ├── wormtun3_8.c │ │ │ └── wormtun3_9.c │ ├── diseases │ │ ├── deep_flu.c │ │ ├── disease_inherit.c │ │ └── lice.c │ ├── mirrormaze │ │ ├── inherits │ │ │ └── mirror.c │ │ └── ob │ │ │ └── flask.c │ ├── mizatencampment │ │ ├── inherits │ │ │ ├── area_stuff.h │ │ │ ├── crystal_storage.c │ │ │ ├── merchant_storage.c │ │ │ ├── mizatcavern.c │ │ │ ├── mizatencamp.c │ │ │ └── vendor.c │ │ ├── mon │ │ │ ├── bartender.c │ │ │ ├── crystal_merchant.c │ │ │ ├── merchant.c │ │ │ ├── mizat_guard.c │ │ │ └── mizati.c │ │ ├── ob │ │ │ ├── bright_pink_crystal.c │ │ │ ├── dark_yellow_crystal.c │ │ │ ├── tent.c │ │ │ ├── tent_object.c │ │ │ └── tent_room.c │ │ └── rooms │ │ │ ├── bar.c │ │ │ ├── crystal_merchant.c │ │ │ ├── leader.c │ │ │ ├── merchant.c │ │ │ ├── mizat_encamp1.c │ │ │ ├── mizat_encamp2.c │ │ │ ├── mizat_encamp3.c │ │ │ ├── mizat_encamp4.c │ │ │ ├── mizat_encamp5.c │ │ │ ├── mizatcave1.c │ │ │ ├── mizatcave2.c │ │ │ ├── mizatcave3.c │ │ │ └── portal1.c │ ├── mysticcave │ │ ├── inherits │ │ │ ├── area_stuff.h │ │ │ ├── cc_treasure.c │ │ │ ├── lower.c │ │ │ ├── mid.c │ │ │ ├── mysticcave.c │ │ │ └── upper.c │ │ ├── mon │ │ │ ├── abomination.c │ │ │ ├── arcane_ooze.c │ │ │ ├── bloated_rat.c │ │ │ ├── conflaguration_ooze.c │ │ │ ├── mimic.c │ │ │ ├── rune_keeper.c │ │ │ ├── starving_bear.c │ │ │ ├── starving_hyena.c │ │ │ ├── starving_wolf.c │ │ │ └── summoning_ooze.c │ │ ├── ob │ │ │ ├── crater_specials.c │ │ │ ├── crater_weapon.c │ │ │ ├── fiery_toxin.c │ │ │ ├── rune.c │ │ │ ├── rune_shard.c │ │ │ └── written_info.c │ │ └── rooms │ │ │ ├── lower1.c │ │ │ ├── lower10.c │ │ │ ├── lower11.c │ │ │ ├── lower12.c │ │ │ ├── lower13.c │ │ │ ├── lower14.c │ │ │ ├── lower15.c │ │ │ ├── lower2.c │ │ │ ├── lower2_1.c │ │ │ ├── lower2_2.c │ │ │ ├── lower2_3.c │ │ │ ├── lower2_4.c │ │ │ ├── lower2_5.c │ │ │ ├── lower2_6.c │ │ │ ├── lower2_7.c │ │ │ ├── lower2_enter.c │ │ │ ├── lower3.c │ │ │ ├── lower4.c │ │ │ ├── lower5.c │ │ │ ├── lower6.c │ │ │ ├── lower7.c │ │ │ ├── lower8.c │ │ │ ├── lower9.c │ │ │ ├── lowerenter.c │ │ │ ├── mid1.c │ │ │ ├── mid10.c │ │ │ ├── mid11.c │ │ │ ├── mid2.c │ │ │ ├── mid2_1.c │ │ │ ├── mid2_2.c │ │ │ ├── mid2_3.c │ │ │ ├── mid2_4.c │ │ │ ├── mid2_5.c │ │ │ ├── mid2_6.c │ │ │ ├── mid2_7.c │ │ │ ├── mid2_enter.c │ │ │ ├── mid3.c │ │ │ ├── mid4.c │ │ │ ├── mid5.c │ │ │ ├── mid6.c │ │ │ ├── mid7.c │ │ │ ├── mid8.c │ │ │ ├── mid9.c │ │ │ ├── midenter.c │ │ │ ├── old │ │ │ ├── inner1.c │ │ │ ├── inner10.c │ │ │ ├── inner11.c │ │ │ ├── inner12.c │ │ │ ├── inner13.c │ │ │ ├── inner14.c │ │ │ ├── inner15.c │ │ │ ├── inner16.c │ │ │ ├── inner17.c │ │ │ ├── inner18.c │ │ │ ├── inner19.c │ │ │ ├── inner2.c │ │ │ ├── inner20.c │ │ │ ├── inner21.c │ │ │ ├── inner22.c │ │ │ ├── inner23.c │ │ │ ├── inner24.c │ │ │ ├── inner25.c │ │ │ ├── inner26.c │ │ │ ├── inner27.c │ │ │ ├── inner28.c │ │ │ ├── inner29.c │ │ │ ├── inner3.c │ │ │ ├── inner30.c │ │ │ ├── inner31.c │ │ │ ├── inner4.c │ │ │ ├── inner5.c │ │ │ ├── inner6.c │ │ │ ├── inner7.c │ │ │ ├── inner8.c │ │ │ ├── inner9.c │ │ │ ├── out1.c │ │ │ ├── out10.c │ │ │ ├── out11.c │ │ │ ├── out12.c │ │ │ ├── out13.c │ │ │ ├── out14.c │ │ │ ├── out15.c │ │ │ ├── out16.c │ │ │ ├── out17.c │ │ │ ├── out18.c │ │ │ ├── out2.c │ │ │ ├── out3.c │ │ │ ├── out4.c │ │ │ ├── out5.c │ │ │ ├── out6.c │ │ │ ├── out7.c │ │ │ ├── out8.c │ │ │ └── out9.c │ │ │ ├── upper1.c │ │ │ ├── upper10.c │ │ │ ├── upper11.c │ │ │ ├── upper12.c │ │ │ ├── upper13.c │ │ │ ├── upper14.c │ │ │ ├── upper15.c │ │ │ ├── upper2.c │ │ │ ├── upper3.c │ │ │ ├── upper4.c │ │ │ ├── upper5.c │ │ │ ├── upper6.c │ │ │ ├── upper7.c │ │ │ ├── upper8.c │ │ │ ├── upper9.c │ │ │ └── upperout.c │ └── wormlair │ │ ├── inherits │ │ ├── area_stuff.h │ │ ├── worm.c │ │ ├── worm_treasure.c │ │ ├── wormfall.c │ │ ├── wormlair.c │ │ ├── wormtun.c │ │ ├── wormtunnar.c │ │ └── wormtunnar2.c │ │ ├── mon │ │ ├── adult_purple_worm.c │ │ ├── greater_purple_worm.c │ │ ├── howne.c │ │ ├── spectral_purple_worm.c │ │ └── young_purple_worm.c │ │ ├── ob │ │ ├── lightstone.c │ │ ├── purple_worm_blade.c │ │ ├── purple_worm_coif.c │ │ ├── sourcestone.c │ │ ├── worm_guise.c │ │ └── worm_stomach.c │ │ └── rooms │ │ ├── wormnar1_1.c │ │ ├── wormnar1_2.c │ │ ├── wormnar1_3.c │ │ ├── wormnar1_4.c │ │ ├── wormnar1_5.c │ │ ├── wormnar1_6.c │ │ ├── wormnar2_1.c │ │ ├── wormnar2_2.c │ │ ├── wormnar2_3.c │ │ ├── wormnar2_4.c │ │ ├── wormnar2_5.c │ │ ├── wormnar2_6.c │ │ ├── wormnar3_1.c │ │ ├── wormnar3_2.c │ │ ├── wormnar3_3.c │ │ ├── wormnar3_4.c │ │ ├── wormnar3_5.c │ │ ├── wormnar3_6.c │ │ ├── wormnar4_1.c │ │ ├── wormnar4_2.c │ │ ├── wormnar4_3.c │ │ ├── wormnar4_4.c │ │ ├── wormnar4_5.c │ │ ├── wormnar4_6.c │ │ ├── wormtun1_1.c │ │ ├── wormtun1_10.c │ │ ├── wormtun1_11.c │ │ ├── wormtun1_12.c │ │ ├── wormtun1_2.c │ │ ├── wormtun1_3.c │ │ ├── wormtun1_4.c │ │ ├── wormtun1_5.c │ │ ├── wormtun1_6.c │ │ ├── wormtun1_7.c │ │ ├── wormtun1_8.c │ │ ├── wormtun1_9.c │ │ ├── wormtun2_1.c │ │ ├── wormtun2_10.c │ │ ├── wormtun2_11.c │ │ ├── wormtun2_12.c │ │ ├── wormtun2_13.c │ │ ├── wormtun2_14.c │ │ ├── wormtun2_15.c │ │ ├── wormtun2_2.c │ │ ├── wormtun2_3.c │ │ ├── wormtun2_4.c │ │ ├── wormtun2_5.c │ │ ├── wormtun2_6.c │ │ ├── wormtun2_7.c │ │ ├── wormtun2_8.c │ │ ├── wormtun2_9.c │ │ ├── wormtun3_1.c │ │ ├── wormtun3_10.c │ │ ├── wormtun3_11.c │ │ ├── wormtun3_2.c │ │ ├── wormtun3_3.c │ │ ├── wormtun3_4.c │ │ ├── wormtun3_5.c │ │ ├── wormtun3_6.c │ │ ├── wormtun3_7.c │ │ ├── wormtun3_8.c │ │ └── wormtun3_9.c ├── common │ ├── assassins │ │ ├── dryzil.c │ │ ├── freloc.c │ │ ├── freloc2.c │ │ ├── mon │ │ │ └── voidhuntress.c │ │ └── obj │ │ │ ├── assassins_dagger.c │ │ │ └── mark.c │ ├── boards │ │ ├── announcementboard.c │ │ ├── assassinboard.c │ │ ├── avatarboard.c │ │ ├── avatarmailboard.c │ │ ├── barbarianboard.c │ │ ├── bardboard.c │ │ ├── bugsboard.c │ │ ├── clericboard.c │ │ ├── commentboard.c │ │ ├── druidboard.c │ │ ├── fighterboard.c │ │ ├── ideasboard.c │ │ ├── inquisitorboard.c │ │ ├── lawboard.c │ │ ├── libboard.c │ │ ├── mageboard.c │ │ ├── magusboard.c │ │ ├── mainboard.c │ │ ├── monkboard.c │ │ ├── newbieboard.c │ │ ├── paladinboard.c │ │ ├── pkmailboard.c │ │ ├── praiseboard.c │ │ ├── psionboard.c │ │ ├── rangerboard.c │ │ ├── thiefboard.c │ │ ├── typosboard.c │ │ ├── warlockboard.c │ │ └── wizboard.c │ ├── common.h │ ├── daemon │ │ ├── bane_rweap_d.c │ │ ├── filters_d.c │ │ ├── geardefin.h │ │ ├── randgear_d.c │ │ ├── randstuff_d.c │ │ ├── randtreasure_d.c │ │ ├── sp_randwpn.c │ │ ├── sp_randwpn_d.c │ │ └── sp_randwpn_d2.c │ ├── defines │ │ └── guards.lst │ ├── immarea │ │ └── rooms │ │ │ ├── core.c │ │ │ └── hub.c │ ├── immortals │ │ ├── arearoom.c │ │ ├── builderlounge.c │ │ ├── clone_wand.c │ │ ├── fixit_poster.c │ │ ├── houses_sign.c │ │ ├── id_adder.c │ │ ├── monInfo │ │ ├── monsterset.c │ │ ├── prof_clearer.c │ │ ├── undercommon_wand.c │ │ ├── universalremote.c │ │ ├── wand.c │ │ └── workroom.c │ ├── inherit │ │ ├── armor_storage_full.c │ │ ├── cloth_storage.c │ │ ├── gs_storage.c │ │ ├── hitching_post.c │ │ ├── metal_storage.c │ │ ├── tb_storage.c │ │ ├── tool_storage.c │ │ ├── wood_storage.c │ │ ├── wpn_storage.c │ │ └── wpn_storage_full.c │ ├── mons │ │ ├── bat.c │ │ ├── cooshee.c │ │ ├── death_effects │ │ │ ├── acid_splash.c │ │ │ ├── death_effect_base.c │ │ │ ├── death_effects.h │ │ │ ├── maggots.c │ │ │ ├── noxious_gas.c │ │ │ ├── skeleton_blood.c │ │ │ └── sleep_gas.c │ │ ├── death_effects_d.c │ │ ├── dwarf.c │ │ ├── giant.c │ │ ├── giantbat.c │ │ ├── giantrat.c │ │ ├── jail_mon.c │ │ ├── maggot.c │ │ ├── mimic.c │ │ ├── mimic_chest.c │ │ ├── ogre.c │ │ ├── questor.c │ │ ├── rat.c │ │ ├── skeleton.c │ │ ├── spider.c │ │ ├── testdummy.c │ │ ├── worker1.c │ │ ├── worker2.c │ │ ├── worker3.c │ │ └── worker4.c │ ├── mounts │ │ ├── barded_flying_mount.c │ │ ├── barded_war_horse.c │ │ ├── bulette.c │ │ ├── camel.c │ │ ├── charger.c │ │ ├── clydesdale.c │ │ ├── donkey.c │ │ ├── dpegasus.c │ │ ├── flying_griffon.c │ │ ├── flying_nightmare.c │ │ ├── flying_pegasus.c │ │ ├── funicorn.c │ │ ├── gelding.c │ │ ├── gianteagle.c │ │ ├── gpegasus.c │ │ ├── graywolf.c │ │ ├── griffon.c │ │ ├── hippogriff.c │ │ ├── horse.c │ │ ├── kirre.c │ │ ├── lion.c │ │ ├── mare.c │ │ ├── nightmare.c │ │ ├── panther.c │ │ ├── pegasus.c │ │ ├── pony.c │ │ ├── riding_boar.c │ │ ├── riding_elephant.c │ │ ├── riding_jaguar.c │ │ ├── riding_tiger.c │ │ ├── shadowsteed.c │ │ ├── spegasus.c │ │ ├── stallion.c │ │ ├── unicorn.c │ │ ├── war_horse.c │ │ └── winterwolf.c │ ├── obj │ │ ├── alchemy │ │ │ └── essence_storage.c │ │ ├── areas │ │ │ ├── darktrail_sign.c │ │ │ ├── dd_sign.c │ │ │ ├── dragonsign.c │ │ │ ├── echoes_sign.c │ │ │ ├── ekibi_sign.c │ │ │ ├── goblin_sign.c │ │ │ ├── kildare_sign.c │ │ │ ├── meadow_sign.c │ │ │ ├── orcs_sign.c │ │ │ ├── piaf_sign.c │ │ │ └── yntala_sign.c │ │ ├── armour │ │ │ ├── banded.c │ │ │ ├── barding.c │ │ │ ├── belt.c │ │ │ ├── bracers.c │ │ │ ├── breastplate.c │ │ │ ├── brigadine.c │ │ │ ├── bronze.c │ │ │ ├── buckler.c │ │ │ ├── chain.c │ │ │ ├── cloak_hooded.c │ │ │ ├── cloak_hoodlg.c │ │ │ ├── cloak_hoodsm.c │ │ │ ├── coif.c │ │ │ ├── coif_leather.c │ │ │ ├── field.c │ │ │ ├── fullplate.c │ │ │ ├── gauntlets.c │ │ │ ├── greaves.c │ │ │ ├── helm.c │ │ │ ├── hide.c │ │ │ ├── hide_large.c │ │ │ ├── hide_small.c │ │ │ ├── horseshoes.c │ │ │ ├── leather.c │ │ │ ├── leather_gauntlets.c │ │ │ ├── leather_greaves.c │ │ │ ├── leather_plate.c │ │ │ ├── lfullplate.c │ │ │ ├── lrobe.c │ │ │ ├── mshield.c │ │ │ ├── padded.c │ │ │ ├── pawguards.c │ │ │ ├── pcbarding.c │ │ │ ├── pcleatherbarding.c │ │ │ ├── plate.c │ │ │ ├── ring.c │ │ │ ├── robe.c │ │ │ ├── sbanded.c │ │ │ ├── sbronze.c │ │ │ ├── scale.c │ │ │ ├── schain.c │ │ │ ├── sfullplate.c │ │ │ ├── shelm.c │ │ │ ├── shield.c │ │ │ ├── sleather.c │ │ │ ├── spadded.c │ │ │ ├── splate.c │ │ │ ├── splint.c │ │ │ ├── sring.c │ │ │ ├── srobe.c │ │ │ ├── sscale.c │ │ │ ├── sshield.c │ │ │ ├── studded.c │ │ │ └── wooden_armor.c │ │ ├── brewing │ │ │ ├── brew.h │ │ │ ├── brewed_inherit.c │ │ │ ├── brewed_potion.c │ │ │ ├── brewed_powder.c │ │ │ ├── elixirs │ │ │ │ ├── elixir_of_barkskin.c │ │ │ │ ├── elixir_of_bears_endurance.c │ │ │ │ ├── elixir_of_bless.c │ │ │ │ ├── elixir_of_bulls_strength.c │ │ │ │ ├── elixir_of_cats_grace.c │ │ │ │ ├── elixir_of_darkvision.c │ │ │ │ ├── elixir_of_displacement.c │ │ │ │ ├── elixir_of_eagles_splendor.c │ │ │ │ ├── elixir_of_energy_resistance.c │ │ │ │ ├── elixir_of_foxs_cunning.c │ │ │ │ ├── elixir_of_grace.c │ │ │ │ ├── elixir_of_haste.c │ │ │ │ ├── elixir_of_heroism.c │ │ │ │ ├── elixir_of_insight.c │ │ │ │ ├── elixir_of_levitation.c │ │ │ │ ├── elixir_of_misdirection.c │ │ │ │ ├── elixir_of_owls_wisdom.c │ │ │ │ ├── elixir_of_pass_without_trace.c │ │ │ │ ├── elixir_of_regeneration.c │ │ │ │ ├── elixir_of_spider_climb.c │ │ │ │ ├── elixir_of_sticky_fingers.c │ │ │ │ ├── elixir_of_stoneskin.c │ │ │ │ ├── elixir_of_tenacity.c │ │ │ │ └── elixir_of_water_breathing.c │ │ │ ├── herb_inherit.c │ │ │ ├── herb_pouch.c │ │ │ ├── herb_special_inherit.c │ │ │ ├── misc │ │ │ │ ├── dwarfs_pride_tobacco.c │ │ │ │ ├── garlic_essence.c │ │ │ │ ├── halflings_homeblend_tobacco.c │ │ │ │ ├── luxury_of_tharis_tobacco.c │ │ │ │ ├── pirates_booty_tobacco.c │ │ │ │ ├── tsarven_tobacco.c │ │ │ │ └── white_dragon_tobacco.c │ │ │ ├── oils │ │ │ │ ├── fire_oil.c │ │ │ │ ├── frost_oil.c │ │ │ │ ├── oil_of_curse_removal.c │ │ │ │ ├── weapon_oil_inherit.c │ │ │ │ └── wizard_oil.c │ │ │ ├── old │ │ │ │ ├── _kit.c │ │ │ │ ├── advanced_heal.c │ │ │ │ ├── cure_blindness.c │ │ │ │ ├── cure_poison.c │ │ │ │ ├── det_invis.c │ │ │ │ ├── epic_heal.c │ │ │ │ ├── extra_heal.c │ │ │ │ ├── full_heal.c │ │ │ │ ├── heal.c │ │ │ │ ├── healing.c │ │ │ │ ├── healing_10.c │ │ │ │ ├── herb_pouch.c │ │ │ │ ├── hurt.c │ │ │ │ ├── invisible.c │ │ │ │ ├── legendary_heal.c │ │ │ │ ├── newbie_healing.c │ │ │ │ ├── paralyze.c │ │ │ │ ├── poison.c │ │ │ │ ├── raging_heal.c │ │ │ │ └── weaken.c │ │ │ ├── potions │ │ │ │ ├── potion_of_detect_invisibility.c │ │ │ │ ├── potion_of_gender_inversion.c │ │ │ │ ├── potion_of_hirsute_transmogrification.c │ │ │ │ ├── potion_of_invisibility.c │ │ │ │ ├── potion_of_neutralize_poison.c │ │ │ │ ├── potion_of_optic_transmogrification.c │ │ │ │ ├── potion_of_remove_blindness.c │ │ │ │ └── potion_of_youth.c │ │ │ └── powders │ │ │ │ ├── blinding_powder.c │ │ │ │ └── powder_of_life.c │ │ ├── clothing │ │ │ ├── belt.c │ │ │ ├── breeches.c │ │ │ ├── caparison.c │ │ │ ├── cloak.c │ │ │ ├── gloves.c │ │ │ ├── hat.c │ │ │ ├── magerobe.c │ │ │ ├── robe.c │ │ │ ├── shirt.c │ │ │ └── shoes.c │ │ ├── faiths │ │ │ ├── akadi_badge.c │ │ │ ├── auril_badge.c │ │ │ ├── bane_badge.c │ │ │ ├── cyric_badge.c │ │ │ ├── eldath_badge.c │ │ │ ├── grumbar_badge.c │ │ │ ├── helm_badge.c │ │ │ ├── istishia_badge.c │ │ │ ├── kelemvor_badge.c │ │ │ ├── kossuth_badge.c │ │ │ ├── lathander_badge.c │ │ │ ├── loviatar_badge.c │ │ │ ├── malar_badge.c │ │ │ ├── mask_badge.c │ │ │ ├── mielikki_badge.c │ │ │ ├── mystra_badge.c │ │ │ ├── oghma_badge.c │ │ │ ├── selune_badge.c │ │ │ ├── shar_badge.c │ │ │ ├── silvanus_badge.c │ │ │ ├── talos_badge.c │ │ │ ├── tempus_badge.c │ │ │ ├── torm_badge.c │ │ │ ├── tymora_badge.c │ │ │ ├── tyr_badge.c │ │ │ └── xvim_badge.c │ │ ├── instruments │ │ │ ├── NOTE │ │ │ ├── bagpipes.c │ │ │ ├── banjolele.c │ │ │ ├── bones.c │ │ │ ├── bongodrums.c │ │ │ ├── clavichord.c │ │ │ ├── drum.c │ │ │ ├── fiddle.c │ │ │ ├── flute.c │ │ │ ├── guitar.c │ │ │ ├── handbell.c │ │ │ ├── harmonica.c │ │ │ ├── hautbois.c │ │ │ ├── instrument_case.c │ │ │ ├── instrument_inherit.c │ │ │ ├── lap-harp.c │ │ │ ├── lute.c │ │ │ ├── lyre.c │ │ │ ├── mandolin.c │ │ │ ├── panpipes.c │ │ │ ├── shawm.c │ │ │ └── tabor.c │ │ ├── jewelry │ │ │ ├── anklet.c │ │ │ ├── bracelet.c │ │ │ ├── circlet.c │ │ │ ├── necklace.c │ │ │ ├── pin.c │ │ │ └── ring.c │ │ ├── lrweapon │ │ │ ├── arquebus.c │ │ │ ├── arrows.c │ │ │ ├── bullets.c │ │ │ ├── cannon.c │ │ │ ├── cannonball.c │ │ │ ├── cartridge.c │ │ │ ├── culverin.c │ │ │ ├── darts.c │ │ │ ├── farrows.c │ │ │ ├── flarrows.c │ │ │ ├── grapeshot.c │ │ │ ├── hackbut.c │ │ │ ├── hcrossbow.c │ │ │ ├── hquarrels.c │ │ │ ├── larrows.c │ │ │ ├── limitlessquiver.c │ │ │ ├── longbow.c │ │ │ ├── musket.c │ │ │ ├── pistol.c │ │ │ ├── shortbow.c │ │ │ ├── shurikens.c │ │ │ └── sling.c │ │ ├── misc │ │ │ ├── backpack.c │ │ │ ├── bait.c │ │ │ ├── bandage.c │ │ │ ├── bandoleer.c │ │ │ ├── basket.c │ │ │ ├── beacon.c │ │ │ ├── book.c │ │ │ ├── bullseye.c │ │ │ ├── candle_inherit.c │ │ │ ├── canvas.c │ │ │ ├── carving.c │ │ │ ├── chessboard.c │ │ │ ├── chest.c │ │ │ ├── chesti.c │ │ │ ├── climb_tool.c │ │ │ ├── d20.c │ │ │ ├── darkbeacon.c │ │ │ ├── darkoil.c │ │ │ ├── dart_board.c │ │ │ ├── deckofcards.c │ │ │ ├── die.c │ │ │ ├── eyepatch.c │ │ │ ├── fish.c │ │ │ ├── fishing_pole.c │ │ │ ├── fishing_rod.c │ │ │ ├── flint.c │ │ │ ├── gem.c │ │ │ ├── jailfood │ │ │ │ ├── j_food_awful.c │ │ │ │ ├── j_food_basic.c │ │ │ │ ├── j_food_good.c │ │ │ │ └── j_food_poor.c │ │ │ ├── lantern.c │ │ │ ├── lkchest.c │ │ │ ├── lowbie_map.c │ │ │ ├── oil.c │ │ │ ├── paper.c │ │ │ ├── parchment.c │ │ │ ├── pipe.c │ │ │ ├── pipenew.c │ │ │ ├── pouch.c │ │ │ ├── qobject.c │ │ │ ├── quiver.c │ │ │ ├── rope.c │ │ │ ├── sack.c │ │ │ ├── sbasket.c │ │ │ ├── schest.c │ │ │ ├── scroll_case.c │ │ │ ├── soap.c │ │ │ ├── spouch.c │ │ │ ├── ssack.c │ │ │ ├── street_light.c │ │ │ ├── thief_tools.c │ │ │ ├── tobacco │ │ │ │ ├── cigar.c │ │ │ │ ├── dwarfs_pride_tobacco.c │ │ │ │ ├── full_bodied_cigar.c │ │ │ │ ├── halflings_homeblend_tobacco.c │ │ │ │ ├── light_bodied_cigar.c │ │ │ │ ├── luxury_of_tharis_tobacco.c │ │ │ │ ├── medium_bodied_cigar.c │ │ │ │ ├── pirates_booty_tobacco.c │ │ │ │ ├── tobacco.c │ │ │ │ ├── tsarven_tobacco.c │ │ │ │ └── white_dragon_tobacco.c │ │ │ ├── tools │ │ │ │ ├── armorsmithtoolset.c │ │ │ │ ├── artistkit.c │ │ │ │ ├── bowyerkit.c │ │ │ │ ├── dyekit.c │ │ │ │ ├── everythingtools.c │ │ │ │ ├── foragekit.c │ │ │ │ ├── foragekit2.c │ │ │ │ ├── healerskit.c │ │ │ │ ├── jewellingkit.c │ │ │ │ ├── loupe.c │ │ │ │ ├── portable_crystal_ball.c │ │ │ │ ├── portable_lab_bench.c │ │ │ │ ├── portable_lab_case.c │ │ │ │ ├── portable_scrying_mirror.c │ │ │ │ ├── portable_smithy_bag.c │ │ │ │ ├── portable_smithy_bench.c │ │ │ │ ├── quill1.c │ │ │ │ ├── quill2.c │ │ │ │ ├── quill3.c │ │ │ │ ├── quill4.c │ │ │ │ ├── sewingkit.c │ │ │ │ ├── sewingkit2.c │ │ │ │ ├── skinningkit.c │ │ │ │ ├── skinningknife.c │ │ │ │ ├── skinningknife2.c │ │ │ │ ├── skinningknife3.c │ │ │ │ ├── skinningknife4.c │ │ │ │ ├── skinningknife5.c │ │ │ │ ├── smithyhammer1.c │ │ │ │ ├── smithyhammer2.c │ │ │ │ ├── smithyhammer3.c │ │ │ │ ├── swordcare.c │ │ │ │ ├── weaponsmithtoolset.c │ │ │ │ └── writingcase.c │ │ │ ├── torch.c │ │ │ ├── treas_chest.c │ │ │ └── wood.c │ │ ├── poisons │ │ │ ├── base │ │ │ │ ├── arsenic.c │ │ │ │ ├── black_adder_venom.c │ │ │ │ ├── black_lotus_extract.c │ │ │ │ ├── bloodroot.c │ │ │ │ ├── blue_whinnis.c │ │ │ │ ├── burnt_othur_fumes.c │ │ │ │ ├── dark_reaver_powder.c │ │ │ │ ├── deathblade.c │ │ │ │ ├── dragon_bile.c │ │ │ │ ├── giant_wasp_poison.c │ │ │ │ ├── greenblood_oil.c │ │ │ │ ├── id_moss.c │ │ │ │ ├── insanity_mist.c │ │ │ │ ├── large_scorpion_venom.c │ │ │ │ ├── lich_dust.c │ │ │ │ ├── malyss_root_paste.c │ │ │ │ ├── medium_spider_venom.c │ │ │ │ ├── niltharit.c │ │ │ │ ├── purple_worm_poison.c │ │ │ │ ├── sassone_leaf.c │ │ │ │ ├── shadow_essence.c │ │ │ │ ├── small_centipede_poison.c │ │ │ │ ├── striped_toadstool.c │ │ │ │ ├── terinav_root.c │ │ │ │ ├── ungol_dust.c │ │ │ │ └── wyvern_poison.c │ │ │ ├── poison.h │ │ │ └── poison_inherit.c │ │ ├── potion │ │ │ ├── _kit.c │ │ │ ├── advanced_heal.c │ │ │ ├── cure_blindness.c │ │ │ ├── cure_poison.c │ │ │ ├── det_invis.c │ │ │ ├── epic_heal.c │ │ │ ├── extra_heal.c │ │ │ ├── full_heal.c │ │ │ ├── heal.c │ │ │ ├── healing.c │ │ │ ├── healing_10.c │ │ │ ├── hurt.c │ │ │ ├── invisible.c │ │ │ ├── legendary_heal.c │ │ │ ├── newbie_healing.c │ │ │ ├── paralyze.c │ │ │ ├── poison.c │ │ │ ├── raging_heal.c │ │ │ └── weaken.c │ │ ├── potions │ │ ├── races │ │ │ ├── aasimar.c │ │ │ ├── drow-ssri.c │ │ │ ├── drow.c │ │ │ ├── duergar.c │ │ │ ├── genasiair.c │ │ │ ├── genasiearth.c │ │ │ ├── genasifire.c │ │ │ ├── genasiwater.c │ │ │ ├── svirfneblin.c │ │ │ └── tiefling.c │ │ ├── rand │ │ │ ├── base_pants.c │ │ │ ├── cloak.c │ │ │ ├── epants.c │ │ │ ├── mage_robes.c │ │ │ ├── menshirt.c │ │ │ ├── r_helm.c │ │ │ ├── r_shoes.c │ │ │ ├── rand_chain.c │ │ │ ├── rand_leath_head.c │ │ │ ├── rand_shirts.c │ │ │ ├── randrobe.c │ │ │ ├── s_curiass.c │ │ │ ├── shirt.c │ │ │ ├── skirts.c │ │ │ ├── steelshield.c │ │ │ └── womendress.c │ │ ├── sheath │ │ │ ├── backup │ │ │ │ └── jeweled_mholster.c │ │ │ ├── jeweled_lsheath.c │ │ │ ├── jeweled_lstaff.c │ │ │ ├── jeweled_mholster.c │ │ │ ├── jeweled_msheath.c │ │ │ ├── jeweled_mstaff.c │ │ │ ├── jeweled_sheath_randomizer.c │ │ │ ├── jeweled_ssheath.c │ │ │ ├── jeweled_strap.c │ │ │ ├── pearled_msheath.c │ │ │ ├── sheath_giantbludgeon.c │ │ │ ├── sheath_great.c │ │ │ ├── sheath_inherit.c │ │ │ ├── sheath_large.c │ │ │ ├── sheath_lgbludgeon.c │ │ │ ├── sheath_lgstaff.c │ │ │ ├── sheath_mbludgeon.c │ │ │ ├── sheath_medium.c │ │ │ ├── sheath_mstaff.c │ │ │ ├── sheath_randomizer.c │ │ │ ├── sheath_short.c │ │ │ ├── sheath_small.c │ │ │ ├── shieldstrap.c │ │ │ └── wrist_sheaths.c │ │ ├── special │ │ │ ├── alt_world_change.c │ │ │ ├── alt_world_check.c │ │ │ ├── alt_world_creator.c │ │ │ ├── alt_world_exit_item.c │ │ │ ├── alt_world_fragment.c │ │ │ ├── alt_world_quest_item.c │ │ │ ├── alt_world_quests.h │ │ │ ├── ambassador_ring.c │ │ │ ├── bloodshard.c │ │ │ ├── jail_drink.c │ │ │ ├── jail_food.c │ │ │ ├── rweapon.c │ │ │ └── sp_randwpn.c │ │ ├── text │ │ │ ├── blantern_full │ │ │ ├── blantern_half │ │ │ ├── blantern_one-fourth │ │ │ ├── blantern_three-fourths │ │ │ ├── bslantern_full │ │ │ ├── bslantern_half │ │ │ ├── bslantern_one-fourth │ │ │ └── bslantern_three-fourths │ │ ├── tools │ │ ├── traps │ │ │ └── base │ │ │ │ ├── acid_base.c │ │ │ │ ├── concussion_base.c │ │ │ │ ├── entangle_base.c │ │ │ │ ├── fire_base.c │ │ │ │ ├── lightning_base.c │ │ │ │ ├── spike_base.c │ │ │ │ ├── trap_inherit.c │ │ │ │ └── traps.h │ │ └── weapon │ │ │ ├── awlpike.c │ │ │ ├── bardiche.c │ │ │ ├── bastard.c │ │ │ ├── bastard_two.c │ │ │ ├── battle_axe.c │ │ │ ├── bec_de_corbin.c │ │ │ ├── bill-guisarme.c │ │ │ ├── broad.c │ │ │ ├── butchering_axe.c │ │ │ ├── claw.c │ │ │ ├── club.c │ │ │ ├── club_lg.c │ │ │ ├── dagger.c │ │ │ ├── double_axe.c │ │ │ ├── double_bladed_sword.c │ │ │ ├── dwarvenwaraxe.c │ │ │ ├── elvencurvedblade.c │ │ │ ├── estoc.c │ │ │ ├── falcata.c │ │ │ ├── fan.c │ │ │ ├── fauchard.c │ │ │ ├── flail.c │ │ │ ├── giant_bastard.c │ │ │ ├── giant_battle_axe.c │ │ │ ├── giant_club.c │ │ │ ├── giant_double_axe.c │ │ │ ├── giant_double_bladed_sword.c │ │ │ ├── giant_hammer.c │ │ │ ├── giant_mace.c │ │ │ ├── giant_morningstar.c │ │ │ ├── giant_scythe.c │ │ │ ├── glaive.c │ │ │ ├── guisarme.c │ │ │ ├── halberd.c │ │ │ ├── hammer_lg.c │ │ │ ├── hammer_sm.c │ │ │ ├── handaxe.c │ │ │ ├── hhlance.c │ │ │ ├── jlance.c │ │ │ ├── katana.c │ │ │ ├── khopesh.c │ │ │ ├── knife.c │ │ │ ├── kukri.c │ │ │ ├── lance.c │ │ │ ├── large_battle_axe.c │ │ │ ├── lhlance.c │ │ │ ├── light_rapier.c │ │ │ ├── longsword.c │ │ │ ├── lucern_hammer.c │ │ │ ├── mace.c │ │ │ ├── mclub.c │ │ │ ├── mhlance.c │ │ │ ├── military_fork.c │ │ │ ├── mithril │ │ │ ├── mith_bastard.c │ │ │ ├── mith_battle_axe.c │ │ │ ├── mith_flail.c │ │ │ ├── mith_halberd.c │ │ │ ├── mith_handaxe.c │ │ │ ├── mith_mornstar.c │ │ │ ├── mith_scythe.c │ │ │ ├── mith_shsword.c │ │ │ ├── mith_sickle.c │ │ │ ├── mith_spear.c │ │ │ ├── mith_staff.c │ │ │ ├── mith_trident.c │ │ │ └── mith_warhammer.c │ │ │ ├── morningstar.c │ │ │ ├── mspear.c │ │ │ ├── mstaff.c │ │ │ ├── nunchucks.c │ │ │ ├── partisan.c │ │ │ ├── pick.c │ │ │ ├── polearm_piercing.c │ │ │ ├── polearm_slashing.c │ │ │ ├── quarter_staff.c │ │ │ ├── rake-garrett.c │ │ │ ├── rake.c │ │ │ ├── rapier.c │ │ │ ├── scimitar.c │ │ │ ├── scourge.c │ │ │ ├── scythe.c │ │ │ ├── shortsword.c │ │ │ ├── sickle.c │ │ │ ├── spear_lg.c │ │ │ ├── spear_sm.c │ │ │ ├── spetum.c │ │ │ ├── sstaff.c │ │ │ ├── trident.c │ │ │ ├── two_hand_scythe.c │ │ │ ├── two_hand_sword.c │ │ │ ├── voulge.c │ │ │ ├── wakizashi.c │ │ │ ├── wand.c │ │ │ ├── warhammer.c │ │ │ ├── waveblade.c │ │ │ ├── whip.c │ │ │ └── whip_dagger.c │ ├── stub_file.c │ └── text │ │ ├── blantern_full │ │ ├── blantern_half │ │ ├── blantern_one-fourth │ │ ├── blantern_three-fourths │ │ ├── bslantern_full │ │ ├── bslantern_half │ │ ├── bslantern_one-fourth │ │ ├── bslantern_three-fourths │ │ ├── fortunes │ │ ├── gods │ │ ├── READ_ME │ │ └── akadi │ │ │ ├── allies │ │ │ └── charge │ │ ├── lowbie_map │ │ ├── main_map │ │ ├── map │ │ └── river_map ├── cursed │ ├── cave1 │ │ ├── cave1-1.c │ │ ├── cave1-2.c │ │ ├── cave1-3.c │ │ ├── cave1-4.c │ │ ├── cave1-5.c │ │ ├── improom.c │ │ └── msroom.c │ ├── cursed1.c │ ├── cursed2.c │ ├── cursed3.c │ ├── cursed4.c │ ├── cursed5.c │ ├── cursed6.c │ ├── cursed7.c │ ├── cursed8.c │ ├── cursed9.c │ ├── cursedshop.c │ ├── entrance.c │ ├── mon │ │ ├── gargantua.c │ │ ├── manscorpion.c │ │ ├── omen.c │ │ └── shopkeeper.c │ ├── obj │ │ └── cmap.c │ └── storage │ │ ├── shopke~1.c │ │ └── storage.c ├── dagger │ ├── .access │ ├── Daggerdale │ │ ├── dagger.h │ │ ├── dagmap.h │ │ ├── fountain │ │ │ └── fountain.c │ │ ├── gates │ │ │ ├── Egate.c │ │ │ ├── Ngate.c │ │ │ ├── Sgate.c │ │ │ └── Wgate.c │ │ ├── laws.txt │ │ ├── lawsign.c │ │ ├── mon │ │ │ ├── ghost.c │ │ │ ├── kier.c │ │ │ ├── obj │ │ │ │ ├── demonblade.c │ │ │ │ └── wolfhelm.c │ │ │ └── wolf.c │ │ ├── old │ │ │ ├── dagmap.h │ │ │ ├── fountain │ │ │ │ └── fountain.c │ │ │ ├── gates │ │ │ │ ├── Egate.c │ │ │ │ ├── Ngate.c │ │ │ │ ├── Sgate.c │ │ │ │ └── Wgate.c │ │ │ ├── guilds │ │ │ │ └── fighter │ │ │ │ │ ├── arena1.c │ │ │ │ │ ├── arena2.c │ │ │ │ │ ├── arena3.c │ │ │ │ │ ├── arena4.c │ │ │ │ │ ├── arenaheal.c │ │ │ │ │ └── room1.c │ │ │ ├── laws.txt │ │ │ ├── lawsign.c │ │ │ ├── sewers │ │ │ │ ├── level1.map │ │ │ │ ├── level1 │ │ │ │ │ ├── Nbreed1.c │ │ │ │ │ ├── Rbreed1.c │ │ │ │ │ ├── Wbreed1.c │ │ │ │ │ ├── sewer1.c │ │ │ │ │ ├── sewer10.c │ │ │ │ │ ├── sewer11.c │ │ │ │ │ ├── sewer12.c │ │ │ │ │ ├── sewer13.c │ │ │ │ │ ├── sewer14.c │ │ │ │ │ ├── sewer15.c │ │ │ │ │ ├── sewer16.c │ │ │ │ │ ├── sewer17.c │ │ │ │ │ ├── sewer18.c │ │ │ │ │ ├── sewer19.c │ │ │ │ │ ├── sewer2.c │ │ │ │ │ ├── sewer20.c │ │ │ │ │ ├── sewer21.c │ │ │ │ │ ├── sewer22.c │ │ │ │ │ ├── sewer23.c │ │ │ │ │ ├── sewer24.c │ │ │ │ │ ├── sewer25.c │ │ │ │ │ ├── sewer26.c │ │ │ │ │ ├── sewer27.c │ │ │ │ │ ├── sewer28.c │ │ │ │ │ ├── sewer29.c │ │ │ │ │ ├── sewer3.c │ │ │ │ │ ├── sewer30.c │ │ │ │ │ ├── sewer31.c │ │ │ │ │ ├── sewer32.c │ │ │ │ │ ├── sewer33.c │ │ │ │ │ ├── sewer34.c │ │ │ │ │ ├── sewer35.c │ │ │ │ │ ├── sewer36.c │ │ │ │ │ ├── sewer37.c │ │ │ │ │ ├── sewer38.c │ │ │ │ │ ├── sewer39.c │ │ │ │ │ ├── sewer4.c │ │ │ │ │ ├── sewer40.c │ │ │ │ │ ├── sewer41.c │ │ │ │ │ ├── sewer42.c │ │ │ │ │ ├── sewer43.c │ │ │ │ │ ├── sewer44.c │ │ │ │ │ ├── sewer45.c │ │ │ │ │ ├── sewer46.c │ │ │ │ │ ├── sewer47.c │ │ │ │ │ ├── sewer48.c │ │ │ │ │ ├── sewer49.c │ │ │ │ │ ├── sewer5.c │ │ │ │ │ ├── sewer50.c │ │ │ │ │ ├── sewer51.c │ │ │ │ │ ├── sewer52.c │ │ │ │ │ ├── sewer53.c │ │ │ │ │ ├── sewer54.c │ │ │ │ │ ├── sewer55.c │ │ │ │ │ ├── sewer56.c │ │ │ │ │ ├── sewer57.c │ │ │ │ │ ├── sewer58.c │ │ │ │ │ ├── sewer59.c │ │ │ │ │ ├── sewer6.c │ │ │ │ │ ├── sewer60.c │ │ │ │ │ ├── sewer61.c │ │ │ │ │ ├── sewer62.c │ │ │ │ │ ├── sewer7.c │ │ │ │ │ ├── sewer8.c │ │ │ │ │ └── sewer9.c │ │ │ │ ├── level2.map │ │ │ │ ├── level3.map │ │ │ │ ├── level4.map │ │ │ │ └── mon │ │ │ │ │ ├── Nrat.c │ │ │ │ │ ├── Srat.c │ │ │ │ │ └── Wrat.c │ │ │ ├── shops │ │ │ │ ├── DDguild_storage.c │ │ │ │ ├── alchemistshop.c │ │ │ │ ├── armor_storage.c │ │ │ │ ├── armourshop.c │ │ │ │ ├── bakery.c │ │ │ │ ├── bank.c │ │ │ │ ├── bar.c │ │ │ │ ├── chapel.c │ │ │ │ ├── clothing.c │ │ │ │ ├── courthouse.c │ │ │ │ ├── equipshop.c │ │ │ │ ├── gs_storage.c │ │ │ │ ├── hospital.c │ │ │ │ ├── inn.c │ │ │ │ ├── inn_dining.c │ │ │ │ ├── inn_hall1.c │ │ │ │ ├── inn_hall2.c │ │ │ │ ├── inn_hall3.c │ │ │ │ ├── inn_hall4.c │ │ │ │ ├── inn_kitchen.c │ │ │ │ ├── inn_room1.c │ │ │ │ ├── inn_room2.c │ │ │ │ ├── inn_room3.c │ │ │ │ ├── inn_room4.c │ │ │ │ ├── inn_ward.c │ │ │ │ ├── items │ │ │ │ │ ├── anklets.c │ │ │ │ │ ├── crescent_necklace.c │ │ │ │ │ ├── d_amulet.c │ │ │ │ │ ├── d_boots.c │ │ │ │ │ ├── d_clasp.c │ │ │ │ │ ├── d_gown.c │ │ │ │ │ ├── d_vest.c │ │ │ │ │ ├── earrings.c │ │ │ │ │ ├── r_amulet.c │ │ │ │ │ ├── r_belt.c │ │ │ │ │ ├── r_boots.c │ │ │ │ │ ├── r_clasp.c │ │ │ │ │ ├── r_cloak.c │ │ │ │ │ ├── r_dress.c │ │ │ │ │ ├── r_gown.c │ │ │ │ │ ├── r_jacket.c │ │ │ │ │ ├── r_leggings.c │ │ │ │ │ ├── r_pants.c │ │ │ │ │ ├── r_shirt.c │ │ │ │ │ ├── r_shorts.c │ │ │ │ │ ├── r_skirt.c │ │ │ │ │ ├── r_tunic.c │ │ │ │ │ ├── r_vest.c │ │ │ │ │ └── tiara.c │ │ │ │ ├── jailhouse.c │ │ │ │ ├── jewelry.c │ │ │ │ ├── magicshop.c │ │ │ │ ├── npcs │ │ │ │ │ ├── abessa.c │ │ │ │ │ ├── baker.c │ │ │ │ │ ├── bank_teller.c │ │ │ │ │ ├── beldor.c │ │ │ │ │ ├── belil.c │ │ │ │ │ ├── bilban.c │ │ │ │ │ ├── brutus.c │ │ │ │ │ ├── erling.c │ │ │ │ │ ├── herman.c │ │ │ │ │ ├── hettman.c │ │ │ │ │ ├── jerat.c │ │ │ │ │ ├── kedathia.c │ │ │ │ │ ├── mykadok.c │ │ │ │ │ ├── nicoli.c │ │ │ │ │ ├── nicoli_storage.c │ │ │ │ │ ├── quincy.c │ │ │ │ │ ├── selena.c │ │ │ │ │ ├── sevaokor.c │ │ │ │ │ ├── shanna.c │ │ │ │ │ ├── svetlana.c │ │ │ │ │ ├── thynd.c │ │ │ │ │ └── trigovia.c │ │ │ │ ├── stables.c │ │ │ │ ├── tap.c │ │ │ │ ├── trainer.c │ │ │ │ ├── trainerheal.c │ │ │ │ ├── vethor_bg1 │ │ │ │ ├── vethor_bg2 │ │ │ │ ├── vethor_guild.c │ │ │ │ ├── vethor_healer.c │ │ │ │ ├── vethor_store.c │ │ │ │ ├── vethor_trophy.c │ │ │ │ ├── weapon_storage.c │ │ │ │ ├── weaponshop.c │ │ │ │ ├── wood_apprent.c │ │ │ │ ├── wood_back.c │ │ │ │ └── woodwright.c │ │ │ └── streets │ │ │ │ ├── items │ │ │ │ └── objs │ │ │ │ │ ├── dragon_fountain.c │ │ │ │ │ ├── lantern_pole.c │ │ │ │ │ └── selune_statue.c │ │ │ │ ├── street1.c │ │ │ │ ├── street10.c │ │ │ │ ├── street11.c │ │ │ │ ├── street12.c │ │ │ │ ├── street13.c │ │ │ │ ├── street14.c │ │ │ │ ├── street15.c │ │ │ │ ├── street16.c │ │ │ │ ├── street17.c │ │ │ │ ├── street18.c │ │ │ │ ├── street19.c │ │ │ │ ├── street2.c │ │ │ │ ├── street20.c │ │ │ │ ├── street21.c │ │ │ │ ├── street22.c │ │ │ │ ├── street23.c │ │ │ │ ├── street24.c │ │ │ │ ├── street25.c │ │ │ │ ├── street26.c │ │ │ │ ├── street27.c │ │ │ │ ├── street28.c │ │ │ │ ├── street29.c │ │ │ │ ├── street3.c │ │ │ │ ├── street30.c │ │ │ │ ├── street31.c │ │ │ │ ├── street32.c │ │ │ │ ├── street33.c │ │ │ │ ├── street34.c │ │ │ │ ├── street35.c │ │ │ │ ├── street36.c │ │ │ │ ├── street37.c │ │ │ │ ├── street38.c │ │ │ │ ├── street39.c │ │ │ │ ├── street4.c │ │ │ │ ├── street40.c │ │ │ │ ├── street41.c │ │ │ │ ├── street42.c │ │ │ │ ├── street43.nogood │ │ │ │ ├── street5.c │ │ │ │ ├── street6.c │ │ │ │ ├── street7.c │ │ │ │ ├── street8.c │ │ │ │ └── street9.c │ │ ├── shops │ │ │ ├── DDguild_storage.c │ │ │ ├── alchemistshop.c │ │ │ ├── armor_storage.c │ │ │ ├── armourshop.c │ │ │ ├── bakery.c │ │ │ ├── bank.c │ │ │ ├── bar.c │ │ │ ├── chapel.c │ │ │ ├── clothing.c │ │ │ ├── courthouse.c │ │ │ ├── equipshop.c │ │ │ ├── gs_storage.c │ │ │ ├── hospital.c │ │ │ ├── inn.c │ │ │ ├── inn_dining.c │ │ │ ├── inn_hall1.c │ │ │ ├── inn_hall2.c │ │ │ ├── inn_hall3.c │ │ │ ├── inn_hall4.c │ │ │ ├── inn_kitchen.c │ │ │ ├── inn_room1.c │ │ │ ├── inn_room2.c │ │ │ ├── inn_room3.c │ │ │ ├── inn_room4.c │ │ │ ├── inn_ward.c │ │ │ ├── items │ │ │ │ ├── anklets.c │ │ │ │ ├── crescent_necklace.c │ │ │ │ ├── d_amulet.c │ │ │ │ ├── d_boots.c │ │ │ │ ├── d_clasp.c │ │ │ │ ├── d_gown.c │ │ │ │ ├── d_vest.c │ │ │ │ ├── earrings.c │ │ │ │ ├── r_amulet.c │ │ │ │ ├── r_belt.c │ │ │ │ ├── r_boots.c │ │ │ │ ├── r_clasp.c │ │ │ │ ├── r_cloak.c │ │ │ │ ├── r_dress.c │ │ │ │ ├── r_gown.c │ │ │ │ ├── r_jacket.c │ │ │ │ ├── r_leggings.c │ │ │ │ ├── r_pants.c │ │ │ │ ├── r_shirt.c │ │ │ │ ├── r_shorts.c │ │ │ │ ├── r_skirt.c │ │ │ │ ├── r_tunic.c │ │ │ │ ├── r_vest.c │ │ │ │ └── tiara.c │ │ │ ├── jailhouse.c │ │ │ ├── jewelry.c │ │ │ ├── magicshop.c │ │ │ ├── npcs │ │ │ │ ├── abessa.c │ │ │ │ ├── baker.c │ │ │ │ ├── bank_teller.c │ │ │ │ ├── beldor.c │ │ │ │ ├── belil.c │ │ │ │ ├── bilban.c │ │ │ │ ├── brutus.c │ │ │ │ ├── erling.c │ │ │ │ ├── herman.c │ │ │ │ ├── hettman.c │ │ │ │ ├── jerat.c │ │ │ │ ├── kedathia.c │ │ │ │ ├── mykadok.c │ │ │ │ ├── nicoli.c │ │ │ │ ├── nicoli_storage.c │ │ │ │ ├── quincy.c │ │ │ │ ├── selena.c │ │ │ │ ├── sevaokor.c │ │ │ │ ├── shanna.c │ │ │ │ ├── svetlana.c │ │ │ │ ├── thynd.c │ │ │ │ └── trigovia.c │ │ │ ├── stables.c │ │ │ ├── tap.c │ │ │ ├── trainer.c │ │ │ ├── trainerheal.c │ │ │ ├── vethor_bg1 │ │ │ ├── vethor_bg2 │ │ │ ├── vethor_guild.c │ │ │ ├── vethor_healer.c │ │ │ ├── vethor_store.c │ │ │ ├── vethor_trophy.c │ │ │ ├── weapon_storage.c │ │ │ ├── weaponshop.c │ │ │ ├── wood_apprent.c │ │ │ ├── wood_back.c │ │ │ └── woodwright.c │ │ └── streets │ │ │ ├── items │ │ │ └── objs │ │ │ │ ├── dragon_fountain.c │ │ │ │ ├── lantern_pole.c │ │ │ │ └── selune_statue.c │ │ │ ├── street1.c │ │ │ ├── street10.c │ │ │ ├── street11.c │ │ │ ├── street12.c │ │ │ ├── street13.c │ │ │ ├── street14.c │ │ │ ├── street15.c │ │ │ ├── street16.c │ │ │ ├── street17.c │ │ │ ├── street18.c │ │ │ ├── street19.c │ │ │ ├── street2.c │ │ │ ├── street20.c │ │ │ ├── street21.c │ │ │ ├── street22.c │ │ │ ├── street23.c │ │ │ ├── street24.c │ │ │ ├── street25.c │ │ │ ├── street26.c │ │ │ ├── street27.c │ │ │ ├── street28.c │ │ │ ├── street29.c │ │ │ ├── street29b.c │ │ │ ├── street3.c │ │ │ ├── street30.c │ │ │ ├── street31.c │ │ │ ├── street32.c │ │ │ ├── street33.c │ │ │ ├── street34.c │ │ │ ├── street35.c │ │ │ ├── street36.c │ │ │ ├── street37.c │ │ │ ├── street38.c │ │ │ ├── street39.c │ │ │ ├── street4.c │ │ │ ├── street40.c │ │ │ ├── street41.c │ │ │ ├── street42.c │ │ │ ├── street5.c │ │ │ ├── street6.c │ │ │ ├── street7.c │ │ │ ├── street8.c │ │ │ └── street9.c │ ├── Elvanta │ │ └── forest │ │ │ ├── Inn1.c │ │ │ ├── Inn2.c │ │ │ ├── Inn3.c │ │ │ ├── Inn4.c │ │ │ ├── Inn5.c │ │ │ ├── items │ │ │ ├── armor │ │ │ │ ├── devilwings.c │ │ │ │ ├── helm.c │ │ │ │ ├── leather.c │ │ │ │ └── mithril.c │ │ │ ├── objs │ │ │ │ ├── bench.c │ │ │ │ ├── dragonbed.c │ │ │ │ ├── plaque.c │ │ │ │ ├── settee.c │ │ │ │ ├── stone.c │ │ │ │ └── table.c │ │ │ ├── scroll.c │ │ │ └── wpns │ │ │ │ ├── bardiche.c │ │ │ │ ├── bec_de_corbin.c │ │ │ │ ├── claw.c │ │ │ │ ├── khopesh.c │ │ │ │ ├── knife.c │ │ │ │ ├── lucern_hammer.c │ │ │ │ ├── mace.c │ │ │ │ ├── p_claw.c │ │ │ │ ├── p_dagger.c │ │ │ │ ├── p_knife.c │ │ │ │ └── stinger.c │ │ │ ├── knighta.c │ │ │ ├── knightb.c │ │ │ ├── knightc.c │ │ │ ├── knightd.c │ │ │ ├── knighte.c │ │ │ ├── knightf.c │ │ │ ├── knightg.c │ │ │ ├── knighth.c │ │ │ ├── knighti.c │ │ │ ├── knightj.c │ │ │ ├── knightk.c │ │ │ ├── mon │ │ │ ├── amphisbaena.c │ │ │ ├── anuin.c │ │ │ ├── archer.c │ │ │ ├── armour.c │ │ │ ├── astral_deva.c │ │ │ ├── aurumvorax.c │ │ │ ├── bee.c │ │ │ ├── berton.c │ │ │ ├── binabik.c │ │ │ ├── blackbear.c │ │ │ ├── bugbear.c │ │ │ ├── bushtiger.c │ │ │ ├── castleguard.c │ │ │ ├── cockatrice.c │ │ │ ├── courtier.c │ │ │ ├── d'naia.c │ │ │ ├── daffyd.c │ │ │ ├── deer.c │ │ │ ├── dirg.c │ │ │ ├── diric.c │ │ │ ├── dragon_horse.c │ │ │ ├── dragonbed.c │ │ │ ├── duac.c │ │ │ ├── dwarf.c │ │ │ ├── dwsmith.c │ │ │ ├── eagle.c │ │ │ ├── elf.c │ │ │ ├── elfchild.c │ │ │ ├── foo_lion.c │ │ │ ├── gahzee.c │ │ │ ├── gardener.c │ │ │ ├── genelfchild.c │ │ │ ├── general.c │ │ │ ├── generalspell.c │ │ │ ├── ghost.c │ │ │ ├── glaysa.c │ │ │ ├── goldsmith.c │ │ │ ├── greenhag.c │ │ │ ├── groaning_spirit.c │ │ │ ├── guard.c │ │ │ ├── guy.c │ │ │ ├── herald.c │ │ │ ├── hesna.c │ │ │ ├── human.c │ │ │ ├── ironroot.c │ │ │ ├── ironsmith.c │ │ │ ├── jackalwere.c │ │ │ ├── janice.c │ │ │ ├── jehan.c │ │ │ ├── kalamadea.c │ │ │ ├── kelyan.c │ │ │ ├── keman.c │ │ │ ├── lizard.c │ │ │ ├── mauveen.c │ │ │ ├── mika.c │ │ │ ├── mikhail.c │ │ │ ├── moatmonst.c │ │ │ ├── nymph.c │ │ │ ├── owl.c │ │ │ ├── owlbear.c │ │ │ ├── poet.c │ │ │ ├── rabbit.c │ │ │ ├── raccoon.c │ │ │ ├── rattlesnake.c │ │ │ ├── roc.c │ │ │ ├── satyr.c │ │ │ ├── serpent.c │ │ │ ├── silversmith.c │ │ │ ├── singer.c │ │ │ ├── skeleton.c │ │ │ ├── sparrow.c │ │ │ ├── sprite.c │ │ │ ├── thorn.c │ │ │ ├── timot.c │ │ │ ├── tree.c │ │ │ ├── wdemon.c │ │ │ ├── wight.c │ │ │ ├── wirinth.c │ │ │ └── wspider.c │ │ │ ├── room │ │ │ ├── room1.c │ │ │ ├── room10.c │ │ │ ├── room100.c │ │ │ ├── room101.c │ │ │ ├── room102.c │ │ │ ├── room103.c │ │ │ ├── room104.c │ │ │ ├── room105.c │ │ │ ├── room106.c │ │ │ ├── room107.c │ │ │ ├── room108.c │ │ │ ├── room109.c │ │ │ ├── room11.c │ │ │ ├── room110.c │ │ │ ├── room111.c │ │ │ ├── room112.c │ │ │ ├── room113.c │ │ │ ├── room114.c │ │ │ ├── room115.c │ │ │ ├── room116.c │ │ │ ├── room117.c │ │ │ ├── room118.c │ │ │ ├── room119.c │ │ │ ├── room12.c │ │ │ ├── room120.c │ │ │ ├── room121.c │ │ │ ├── room122.c │ │ │ ├── room123.c │ │ │ ├── room124.c │ │ │ ├── room125.c │ │ │ ├── room126.c │ │ │ ├── room127.c │ │ │ ├── room128.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room20.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room41.c │ │ │ ├── room42.c │ │ │ ├── room43.c │ │ │ ├── room44.c │ │ │ ├── room45.c │ │ │ ├── room46.c │ │ │ ├── room47.c │ │ │ ├── room48.c │ │ │ ├── room49.c │ │ │ ├── room5.c │ │ │ ├── room50.c │ │ │ ├── room51.c │ │ │ ├── room52.c │ │ │ ├── room53.c │ │ │ ├── room54.c │ │ │ ├── room55.c │ │ │ ├── room56.c │ │ │ ├── room57.c │ │ │ ├── room58.c │ │ │ ├── room59.c │ │ │ ├── room6.c │ │ │ ├── room60.c │ │ │ ├── room61.c │ │ │ ├── room62.c │ │ │ ├── room63.c │ │ │ ├── room64.c │ │ │ ├── room65.c │ │ │ ├── room66.c │ │ │ ├── room67.c │ │ │ ├── room68.c │ │ │ ├── room69.c │ │ │ ├── room7.c │ │ │ ├── room70.c │ │ │ ├── room71.c │ │ │ ├── room72.c │ │ │ ├── room73.c │ │ │ ├── room74.c │ │ │ ├── room75.c │ │ │ ├── room76.c │ │ │ ├── room77.c │ │ │ ├── room78.c │ │ │ ├── room79.c │ │ │ ├── room8.c │ │ │ ├── room80.c │ │ │ ├── room81.c │ │ │ ├── room82.c │ │ │ ├── room83.c │ │ │ ├── room84.c │ │ │ ├── room85.c │ │ │ ├── room86.c │ │ │ ├── room87.c │ │ │ ├── room88.c │ │ │ ├── room89.c │ │ │ ├── room9.c │ │ │ ├── room90.c │ │ │ ├── room91.c │ │ │ ├── room92.c │ │ │ ├── room93.c │ │ │ ├── room94.c │ │ │ ├── room95.c │ │ │ ├── room96.c │ │ │ ├── room97.c │ │ │ ├── room98.c │ │ │ ├── room99.c │ │ │ ├── roomG1.c │ │ │ ├── roomG10.c │ │ │ ├── roomG2.c │ │ │ ├── roomG3.c │ │ │ ├── roomG4.c │ │ │ ├── roomG5.c │ │ │ ├── roomG6.c │ │ │ ├── roomG7.c │ │ │ ├── roomG8.c │ │ │ ├── roomG9.c │ │ │ ├── roomH1.c │ │ │ ├── roomH2.c │ │ │ ├── roomH3.c │ │ │ ├── roomH3a.c │ │ │ ├── roomH3b.c │ │ │ ├── roomH3c.c │ │ │ ├── roomH3d.c │ │ │ ├── roomH3e.c │ │ │ ├── roomH3f.c │ │ │ ├── roomH4.c │ │ │ ├── roomH4a.c │ │ │ ├── roomH4b.c │ │ │ ├── roomH4c.c │ │ │ ├── roomH4d.c │ │ │ ├── roomH4e.c │ │ │ ├── roomH4f.c │ │ │ ├── roomH4g.c │ │ │ ├── roomH4h.c │ │ │ ├── roomH4i.c │ │ │ ├── roomH4j.c │ │ │ ├── roomH6.c │ │ │ ├── roomalch.c │ │ │ ├── roomar_storage.c │ │ │ ├── roomarmour.c │ │ │ ├── roombank.c │ │ │ ├── roomcastg_shack.c │ │ │ ├── roomcastg_shack2.c │ │ │ ├── roomcastle1.c │ │ │ ├── roomcastle1b.c │ │ │ ├── roomcastle1c.c │ │ │ ├── roomcastle2.c │ │ │ ├── roomcastle2c.c │ │ │ ├── roomcastle3.c │ │ │ ├── roomcastle3c.c │ │ │ ├── roomcastle4.c │ │ │ ├── roomcastle4b.c │ │ │ ├── roomcastle4c.c │ │ │ ├── roomcastle5.c │ │ │ ├── roomcastle5b.c │ │ │ ├── roomcastle5c.c │ │ │ ├── roomcastle6.c │ │ │ ├── roomcastle6b.c │ │ │ ├── roomcastle7.c │ │ │ ├── roomcastle7b.c │ │ │ ├── roomcastle8.c │ │ │ ├── roomcastle8b.c │ │ │ ├── roomcastle9b.c │ │ │ ├── roomchurch.c │ │ │ ├── roomcloset.c │ │ │ ├── roomdruid1.c │ │ │ ├── roomdruid2.c │ │ │ ├── roomforge.c │ │ │ ├── roomforgea.c │ │ │ ├── roomforgeb.c │ │ │ ├── roomforgec.c │ │ │ ├── roomforged.c │ │ │ ├── roomforgee.c │ │ │ ├── roomforgef.c │ │ │ ├── roomgard1.c │ │ │ ├── roomgarden1.c │ │ │ ├── roomgarden10.c │ │ │ ├── roomgarden11.c │ │ │ ├── roomgarden12.c │ │ │ ├── roomgarden13.c │ │ │ ├── roomgarden14.c │ │ │ ├── roomgarden15.c │ │ │ ├── roomgarden16.c │ │ │ ├── roomgarden2.c │ │ │ ├── roomgarden3.c │ │ │ ├── roomgarden4.c │ │ │ ├── roomgarden5.c │ │ │ ├── roomgarden6.c │ │ │ ├── roomgarden7.c │ │ │ ├── roomgarden8.c │ │ │ ├── roomgarden9.c │ │ │ ├── roomgazebo1.c │ │ │ ├── roomgazebo2.c │ │ │ ├── roomgs_storage.c │ │ │ ├── roomgs_store.c │ │ │ ├── roomhealer.c │ │ │ ├── roomisland1.c │ │ │ ├── roomisland2.c │ │ │ ├── roommoat1.c │ │ │ ├── roommoat10.c │ │ │ ├── roommoat11.c │ │ │ ├── roommoat12.c │ │ │ ├── roommoat13.c │ │ │ ├── roommoat14.c │ │ │ ├── roommoat15.c │ │ │ ├── roommoat16.c │ │ │ ├── roommoat17.c │ │ │ ├── roommoat18.c │ │ │ ├── roommoat19.c │ │ │ ├── roommoat2.c │ │ │ ├── roommoat20.c │ │ │ ├── roommoat21.c │ │ │ ├── roommoat22.c │ │ │ ├── roommoat23.c │ │ │ ├── roommoat3.c │ │ │ ├── roommoat4.c │ │ │ ├── roommoat5.c │ │ │ ├── roommoat6.c │ │ │ ├── roommoat7.c │ │ │ ├── roommoat8.c │ │ │ ├── roommoat9.c │ │ │ ├── roompath1.c │ │ │ ├── roompath2.c │ │ │ ├── roompath3.c │ │ │ ├── roompath4.c │ │ │ ├── roompath5.c │ │ │ ├── roompath6.c │ │ │ ├── roompath7.c │ │ │ ├── roompub.c │ │ │ ├── roomraft1.c │ │ │ ├── roomrock1.c │ │ │ ├── roomrock2.c │ │ │ ├── roomrock3.c │ │ │ ├── roomw_storage.c │ │ │ └── roomweap.c │ ├── Torm │ │ ├── city │ │ │ ├── ampitheatre.c │ │ │ ├── arch1.c │ │ │ ├── bard1.c │ │ │ ├── bard2.c │ │ │ ├── bardcomps.c │ │ │ ├── c1.c │ │ │ ├── c10.c │ │ │ ├── c100.c │ │ │ ├── c101.c │ │ │ ├── c101b.c │ │ │ ├── c102.c │ │ │ ├── c103.c │ │ │ ├── c104.c │ │ │ ├── c105.c │ │ │ ├── c106.c │ │ │ ├── c107.c │ │ │ ├── c108.c │ │ │ ├── c109 │ │ │ ├── c109.c │ │ │ ├── c11.c │ │ │ ├── c110.c │ │ │ ├── c111.c │ │ │ ├── c112.c │ │ │ ├── c113.c │ │ │ ├── c114.c │ │ │ ├── c115.c │ │ │ ├── c116.c │ │ │ ├── c117.c │ │ │ ├── c118.c │ │ │ ├── c119.c │ │ │ ├── c120.c │ │ │ ├── c121.c │ │ │ ├── c122.c │ │ │ ├── c123.c │ │ │ ├── c124.c │ │ │ ├── c125.c │ │ │ ├── c126.c │ │ │ ├── c127.c │ │ │ ├── c128.c │ │ │ ├── c129.c │ │ │ ├── c13.c │ │ │ ├── c130.c │ │ │ ├── c131.c │ │ │ ├── c132.c │ │ │ ├── c133.c │ │ │ ├── c134.c │ │ │ ├── c135.c │ │ │ ├── c136.c │ │ │ ├── c137.c │ │ │ ├── c138.c │ │ │ ├── c139.c │ │ │ ├── c14.c │ │ │ ├── c140.c │ │ │ ├── c141.c │ │ │ ├── c142.c │ │ │ ├── c143.c │ │ │ ├── c144.c │ │ │ ├── c145.c │ │ │ ├── c146.c │ │ │ ├── c147.c │ │ │ ├── c148.c │ │ │ ├── c149.c │ │ │ ├── c150.c │ │ │ ├── c151.c │ │ │ ├── c152.c │ │ │ ├── c153.c │ │ │ ├── c154.c │ │ │ ├── c155.c │ │ │ ├── c156.c │ │ │ ├── c157.c │ │ │ ├── c158.c │ │ │ ├── c16.c │ │ │ ├── c17.c │ │ │ ├── c18.c │ │ │ ├── c19.c │ │ │ ├── c2.c │ │ │ ├── c20.c │ │ │ ├── c21.c │ │ │ ├── c22.c │ │ │ ├── c22a.c │ │ │ ├── c23.c │ │ │ ├── c24.c │ │ │ ├── c25.c │ │ │ ├── c26.c │ │ │ ├── c27.c │ │ │ ├── c28.c │ │ │ ├── c29.c │ │ │ ├── c2a.c │ │ │ ├── c3.c │ │ │ ├── c30.c │ │ │ ├── c31.c │ │ │ ├── c32.c │ │ │ ├── c33.c │ │ │ ├── c33b.c │ │ │ ├── c34.c │ │ │ ├── c35.c │ │ │ ├── c36.c │ │ │ ├── c37.c │ │ │ ├── c38.c │ │ │ ├── c39.c │ │ │ ├── c4.c │ │ │ ├── c40.c │ │ │ ├── c40a.c │ │ │ ├── c41.c │ │ │ ├── c43.c │ │ │ ├── c44.c │ │ │ ├── c45.c │ │ │ ├── c46.c │ │ │ ├── c47.c │ │ │ ├── c48.c │ │ │ ├── c49.c │ │ │ ├── c4a.c │ │ │ ├── c5.c │ │ │ ├── c50.c │ │ │ ├── c51.c │ │ │ ├── c52.c │ │ │ ├── c53.c │ │ │ ├── c54.c │ │ │ ├── c55.c │ │ │ ├── c56.c │ │ │ ├── c57.c │ │ │ ├── c58.c │ │ │ ├── c59.c │ │ │ ├── c59a.c │ │ │ ├── c6.c │ │ │ ├── c60.c │ │ │ ├── c61.c │ │ │ ├── c62.c │ │ │ ├── c63.c │ │ │ ├── c64.c │ │ │ ├── c65.c │ │ │ ├── c66.c │ │ │ ├── c67.c │ │ │ ├── c68.c │ │ │ ├── c69.c │ │ │ ├── c6a.c │ │ │ ├── c7.c │ │ │ ├── c70.c │ │ │ ├── c71.c │ │ │ ├── c72.c │ │ │ ├── c74.c │ │ │ ├── c75.c │ │ │ ├── c76.c │ │ │ ├── c77.c │ │ │ ├── c77a.c │ │ │ ├── c78.c │ │ │ ├── c79.c │ │ │ ├── c79a.c │ │ │ ├── c8.c │ │ │ ├── c80.c │ │ │ ├── c81.c │ │ │ ├── c81a.c │ │ │ ├── c82.c │ │ │ ├── c83.c │ │ │ ├── c84.c │ │ │ ├── c85.c │ │ │ ├── c86.c │ │ │ ├── c87.c │ │ │ ├── c88.c │ │ │ ├── c89.c │ │ │ ├── c8a.c │ │ │ ├── c9.c │ │ │ ├── c90.c │ │ │ ├── c91.c │ │ │ ├── c92.c │ │ │ ├── c93.c │ │ │ ├── c94.c │ │ │ ├── c95.c │ │ │ ├── c96.c │ │ │ ├── c97.c │ │ │ ├── c98.c │ │ │ ├── c99.c │ │ │ ├── dock_taxes.c │ │ │ ├── dock_taxes2.c │ │ │ ├── gallows.c │ │ │ ├── library1.c │ │ │ ├── library2.c │ │ │ ├── portal.c │ │ │ ├── psion.c │ │ │ ├── thieves │ │ │ │ ├── mon │ │ │ │ │ └── anne.c │ │ │ │ ├── obj │ │ │ │ │ ├── earring.c │ │ │ │ │ ├── gloves.c │ │ │ │ │ ├── mark.c │ │ │ │ │ ├── ring.c │ │ │ │ │ └── screamer.c │ │ │ │ ├── vethor_bg1 │ │ │ │ ├── vethor_bg2 │ │ │ │ ├── vethor_guild.c │ │ │ │ ├── vethor_healer.c │ │ │ │ ├── vethor_store.c │ │ │ │ └── vethor_trophy.c │ │ │ └── warehouse.c │ │ ├── graveyard │ │ │ ├── blackkey.c │ │ │ ├── mon │ │ │ │ ├── bat.c │ │ │ │ ├── ghost.c │ │ │ │ ├── ghoul.c │ │ │ │ ├── haunt.c │ │ │ │ ├── headless.c │ │ │ │ ├── mflayer.c │ │ │ │ ├── monster │ │ │ │ ├── nightcloak.c │ │ │ │ ├── nightmare.c │ │ │ │ ├── nightsword.c │ │ │ │ ├── note │ │ │ │ ├── pumpkin2.c │ │ │ │ ├── skeleton.c │ │ │ │ ├── snake.c │ │ │ │ ├── tree.c │ │ │ │ ├── twight.c │ │ │ │ ├── twight2.c │ │ │ │ ├── vampire.c │ │ │ │ └── zombie.c │ │ │ ├── monster │ │ │ ├── rooms │ │ │ │ ├── gate.c │ │ │ │ ├── grave10.c │ │ │ │ ├── grave11.c │ │ │ │ ├── grave12.c │ │ │ │ ├── grave13.c │ │ │ │ ├── grave14.c │ │ │ │ ├── grave15.c │ │ │ │ ├── grave16.c │ │ │ │ ├── grave17.c │ │ │ │ ├── grave18.c │ │ │ │ ├── grave19.c │ │ │ │ ├── grave2.c │ │ │ │ ├── grave20.c │ │ │ │ ├── grave21.c │ │ │ │ ├── grave22.c │ │ │ │ ├── grave23.c │ │ │ │ ├── grave24.c │ │ │ │ ├── grave25.c │ │ │ │ ├── grave26.c │ │ │ │ ├── grave27.c │ │ │ │ ├── grave28.c │ │ │ │ ├── grave29.c │ │ │ │ ├── grave3.c │ │ │ │ ├── grave30.c │ │ │ │ ├── grave31.c │ │ │ │ ├── grave4.c │ │ │ │ ├── grave5.c │ │ │ │ ├── grave6.c │ │ │ │ ├── grave7.c │ │ │ │ ├── grave8.c │ │ │ │ ├── grave9.c │ │ │ │ ├── graveyard.c │ │ │ │ ├── tomb1.c │ │ │ │ ├── tomb2.c │ │ │ │ ├── tomb3.c │ │ │ │ ├── tomb4.c │ │ │ │ └── tomb5.c │ │ │ ├── rustedkey.c │ │ │ └── weapon │ │ │ │ ├── claws.c │ │ │ │ ├── fangs.c │ │ │ │ ├── sword.c │ │ │ │ ├── tentacle.c │ │ │ │ └── vfangs.c │ │ ├── inherits │ │ │ ├── bar.c │ │ │ ├── bathhouse.c │ │ │ ├── boardwalk.c │ │ │ ├── boardwalk2.c │ │ │ ├── cellar.c │ │ │ ├── fortress.c │ │ │ ├── hut.c │ │ │ ├── marketplace.c │ │ │ ├── menu.c │ │ │ ├── park.c │ │ │ ├── tanarn.c │ │ │ ├── townhall.c │ │ │ ├── watchtower.c │ │ │ └── whatever.c │ │ ├── mon │ │ │ ├── armorer1.c │ │ │ ├── armorer2.c │ │ │ ├── bankguard.c │ │ │ ├── bard.c │ │ │ ├── barkeep1.c │ │ │ ├── barkeep2.c │ │ │ ├── barkeep3.c │ │ │ ├── barkeep5.c │ │ │ ├── barkeep6.c │ │ │ ├── bather.c │ │ │ ├── begger.c │ │ │ ├── butterfly.c │ │ │ ├── cassandra.c │ │ │ ├── cassius.c │ │ │ ├── child.c │ │ │ ├── citizen.c │ │ │ ├── clothier.c │ │ │ ├── compkeeper.c │ │ │ ├── dayperson.c │ │ │ ├── dayvendor.c │ │ │ ├── dockworker.c │ │ │ ├── eva.c │ │ │ ├── fisherman.c │ │ │ ├── furtrader.c │ │ │ ├── genkeeper.c │ │ │ ├── ghorse.c │ │ │ ├── grubcheck.c │ │ │ ├── guard1.c │ │ │ ├── guard2.c │ │ │ ├── guard3.c │ │ │ ├── guard4.c │ │ │ ├── guardca.c │ │ │ ├── guardin.c │ │ │ ├── guardse.c │ │ │ ├── guardsl.c │ │ │ ├── healer.c │ │ │ ├── herman.c │ │ │ ├── jeweler.c │ │ │ ├── kedathia.c │ │ │ ├── king.c │ │ │ ├── librarian.c │ │ │ ├── maid.c │ │ │ ├── nicoli.c │ │ │ ├── nicoli_storage.c │ │ │ ├── pickpocket.c │ │ │ ├── piratec.c │ │ │ ├── pirated.c │ │ │ ├── rat.c │ │ │ ├── ratd.c │ │ │ ├── sahuagin.c │ │ │ ├── scribe.c │ │ │ ├── seagull.c │ │ │ ├── selena.c │ │ │ ├── servant.c │ │ │ ├── tax_collector.c │ │ │ ├── tax_collector2.c │ │ │ ├── teller.c │ │ │ ├── trainer.c │ │ │ ├── troll.c │ │ │ ├── vbarbarian.c │ │ │ ├── vdwarf.c │ │ │ ├── velf.c │ │ │ ├── vendire.c │ │ │ ├── vizir.c │ │ │ ├── vmage.c │ │ │ ├── vnative.c │ │ │ ├── warehouseg.c │ │ │ ├── weaponer1.c │ │ │ └── weaponer2.c │ │ ├── obj │ │ │ ├── Mlance+1.c │ │ │ ├── Mlong+2.c │ │ │ ├── Mspear+1.c │ │ │ ├── TORMMAP │ │ │ ├── bench.c │ │ │ ├── bluesash.c │ │ │ ├── bolts.c │ │ │ ├── choker.c │ │ │ ├── d_necklace.c │ │ │ ├── d_pearls.c │ │ │ ├── damprobe.c │ │ │ ├── diamond_hammer.c │ │ │ ├── drums.c │ │ │ ├── duel.c │ │ │ ├── duel_sheath.c │ │ │ ├── duster.c │ │ │ ├── eyeglasses.c │ │ │ ├── eyepatch.c │ │ │ ├── fountain.c │ │ │ ├── freshpearls.c │ │ │ ├── fullplateb.c │ │ │ ├── furboots.c │ │ │ ├── furcloak.c │ │ │ ├── furgloves.c │ │ │ ├── furhat.c │ │ │ ├── gbracelet.c │ │ │ ├── gearring.c │ │ │ ├── gloves.c │ │ │ ├── halberd.c │ │ │ ├── hose.c │ │ │ ├── justice.c │ │ │ ├── lfullplate.c │ │ │ ├── lyre.c │ │ │ ├── magistrobe.c │ │ │ ├── maids.c │ │ │ ├── map.c │ │ │ ├── maracas.c │ │ │ ├── masterkey.c │ │ │ ├── opal_necklace.c │ │ │ ├── opal_ring.c │ │ │ ├── panklet.c │ │ │ ├── pantsc.c │ │ │ ├── pantsl.c │ │ │ ├── pantsp.c │ │ │ ├── papyrus.c │ │ │ ├── pearrings.c │ │ │ ├── perfume.c │ │ │ ├── pnecklace.c │ │ │ ├── pring.c │ │ │ ├── puncture.c │ │ │ ├── r_necklace.c │ │ │ ├── r_pearls.c │ │ │ ├── rags.c │ │ │ ├── rboots.c │ │ │ ├── rodrule.c │ │ │ ├── rubble.c │ │ │ ├── sandal.c │ │ │ ├── sboots.c │ │ │ ├── scimitar.c │ │ │ ├── scomb.c │ │ │ ├── seatrident.c │ │ │ ├── silkdress.c │ │ │ ├── silksash.c │ │ │ ├── silkshirt.c │ │ │ ├── silkshirtb.c │ │ │ ├── silkshirtbb.c │ │ │ ├── silkshirtg.c │ │ │ ├── silkshirtr.c │ │ │ ├── silkshirtw.c │ │ │ ├── soulcleaver.c │ │ │ ├── tambourine.c │ │ │ ├── torm_bracers.c │ │ │ ├── torm_buckler.c │ │ │ ├── torm_leather.c │ │ │ ├── torm_scalemail.c │ │ │ ├── torm_shield.c │ │ │ ├── torm_sword.c │ │ │ ├── trident.c │ │ │ ├── waraxe.c │ │ │ ├── waveplate.c │ │ │ └── whistle.c │ │ ├── road │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path17.c │ │ │ ├── path18.c │ │ │ ├── path19.c │ │ │ ├── path2.c │ │ │ ├── path20.c │ │ │ ├── path21.c │ │ │ ├── path22.c │ │ │ ├── path23.c │ │ │ ├── path24.c │ │ │ ├── path25.c │ │ │ ├── path26.c │ │ │ ├── path27.c │ │ │ ├── path28.c │ │ │ ├── path29.c │ │ │ ├── path3.c │ │ │ ├── path30.c │ │ │ ├── path31.c │ │ │ ├── path32.c │ │ │ ├── path33.c │ │ │ ├── path34.c │ │ │ ├── path35.c │ │ │ ├── path36.c │ │ │ ├── path37.c │ │ │ ├── path38.c │ │ │ ├── path39.c │ │ │ ├── path40.c │ │ │ ├── path41.c │ │ │ ├── path42.c │ │ │ ├── path43.c │ │ │ ├── path44.c │ │ │ ├── path45.c │ │ │ ├── path46.c │ │ │ ├── path47.c │ │ │ ├── path48.c │ │ │ ├── path49.c │ │ │ ├── path50.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ └── path9.c │ │ ├── sewers │ │ │ ├── mbottom.c │ │ │ ├── s1.c │ │ │ ├── s10.c │ │ │ ├── s11.c │ │ │ ├── s12.c │ │ │ ├── s16.c │ │ │ ├── s17.c │ │ │ ├── s18.c │ │ │ ├── s19.c │ │ │ ├── s2.c │ │ │ ├── s20.c │ │ │ ├── s21.c │ │ │ ├── s25.c │ │ │ ├── s26.c │ │ │ ├── s27.c │ │ │ ├── s28.c │ │ │ ├── s29.c │ │ │ ├── s3.c │ │ │ ├── s30.c │ │ │ ├── s31.c │ │ │ ├── s32.c │ │ │ ├── s33.c │ │ │ ├── s34.c │ │ │ ├── s35.c │ │ │ ├── s36.c │ │ │ ├── s37.c │ │ │ ├── s38.c │ │ │ ├── s39.c │ │ │ ├── s4.c │ │ │ ├── s40.c │ │ │ ├── s41.c │ │ │ ├── s42.c │ │ │ ├── s43.c │ │ │ ├── s44.c │ │ │ ├── s45.c │ │ │ ├── s46.c │ │ │ ├── s47.c │ │ │ ├── s48.c │ │ │ ├── s49.c │ │ │ ├── s5.c │ │ │ ├── s50.c │ │ │ ├── s51.c │ │ │ ├── s52.c │ │ │ ├── s53.c │ │ │ ├── s54.c │ │ │ ├── s55.c │ │ │ ├── s56.c │ │ │ ├── s57.c │ │ │ ├── s58.c │ │ │ ├── s59.c │ │ │ ├── s6.c │ │ │ ├── s60.c │ │ │ ├── s61.c │ │ │ ├── s62.c │ │ │ ├── s7.c │ │ │ ├── s8.c │ │ │ ├── s9.c │ │ │ └── sewer.c │ │ ├── special │ │ │ ├── armorer1.c │ │ │ ├── armorer2.c │ │ │ ├── clothier.c │ │ │ ├── furtrader.c │ │ │ ├── genstore.c │ │ │ ├── instruments.c │ │ │ ├── jewelry_storage.c │ │ │ ├── weaponer1.c │ │ │ └── weaponer2.c │ │ ├── tormdefs.h │ │ └── towers │ │ │ └── towerstuff │ │ │ ├── clockworkg.c │ │ │ ├── clockworki.c │ │ │ ├── clockworkw.c │ │ │ ├── cook.c │ │ │ ├── enegu.c │ │ │ ├── golemd.c │ │ │ ├── golemg.c │ │ │ ├── greed.c │ │ │ ├── knife.c │ │ │ ├── knight.c │ │ │ ├── meataxe.c │ │ │ ├── meatmaul.c │ │ │ ├── pileofglass.c │ │ │ ├── priest.c │ │ │ ├── rubble.c │ │ │ ├── rubblei.c │ │ │ ├── rubblew.c │ │ │ ├── savan.c │ │ │ ├── seal1.c │ │ │ ├── seal2.c │ │ │ ├── seal3.c │ │ │ └── varri.c │ ├── acheck.log │ ├── aketon │ │ ├── aketon_circe │ │ ├── daemon │ │ │ ├── artifact_d.c │ │ │ ├── assassin_d.c │ │ │ └── councilor_d.c │ │ ├── mon │ │ │ ├── aerotia.c │ │ │ ├── archer.c │ │ │ ├── boucheaden.c │ │ │ ├── bytukar.c │ │ │ ├── cavalry.c │ │ │ ├── cgolem.c │ │ │ ├── chandos.c │ │ │ ├── chelspan.c │ │ │ ├── citizenA.c │ │ │ ├── citizenB.c │ │ │ ├── citizenC.c │ │ │ ├── citizenD.c │ │ │ ├── citizenE.c │ │ │ ├── citizenF.c │ │ │ ├── crodal.c │ │ │ ├── devian.c │ │ │ ├── feataz.c │ │ │ ├── furdos.c │ │ │ ├── gargoyle.c │ │ │ ├── gargoyle2.c │ │ │ ├── goginet.c │ │ │ ├── guardA.c │ │ │ ├── guardB.c │ │ │ ├── guardC.c │ │ │ ├── guardD.c │ │ │ ├── guardE.c │ │ │ ├── guardF.c │ │ │ ├── hippogriff.c │ │ │ ├── infantry.c │ │ │ ├── jilian.c │ │ │ ├── lealian.c │ │ │ ├── lugabet.c │ │ │ ├── maxian.c │ │ │ ├── mimic.c │ │ │ ├── mortap.c │ │ │ ├── naxterr.c │ │ │ ├── rotatia.c │ │ │ ├── s_guard.c │ │ │ ├── scout.c │ │ │ ├── shawdor.c │ │ │ ├── siacz.c │ │ │ ├── sopzil.c │ │ │ ├── teleris.c │ │ │ ├── vathodouse.c │ │ │ ├── vavedos.c │ │ │ ├── vorloc.c │ │ │ ├── vourolyx.c │ │ │ ├── wallados.c │ │ │ ├── wander │ │ │ │ ├── wander.c │ │ │ │ └── wander_ass.c │ │ │ ├── weyzil.c │ │ │ ├── wizolyx.c │ │ │ └── ziliot.c │ │ ├── obj │ │ │ ├── artifact │ │ │ │ ├── WARNING_README │ │ │ │ ├── artifact_list │ │ │ │ ├── artiweapon.c │ │ │ │ ├── brass_awlpike.c │ │ │ │ ├── mithril_trident.c │ │ │ │ ├── silver_fork.c │ │ │ │ └── silver_knife.c │ │ │ ├── asssword.c │ │ │ ├── bracers_defenseless5.c │ │ │ ├── bracers_defenseless6.c │ │ │ ├── bracers_defenseless7.c │ │ │ ├── bracers_defenseless8.c │ │ │ ├── cable_ne.c │ │ │ ├── cable_nex.c │ │ │ ├── cable_nw.c │ │ │ ├── cable_nwx.c │ │ │ ├── cable_se.c │ │ │ ├── cable_sex.c │ │ │ ├── cable_sw.c │ │ │ ├── cable_swx.c │ │ │ ├── cape.c │ │ │ ├── carrows.c │ │ │ ├── cloak.c │ │ │ ├── cloak_elven.c │ │ │ ├── club_disrup.c │ │ │ ├── crossbow.c │ │ │ ├── dagger_deceit.c │ │ │ ├── dcarrows.c │ │ │ ├── dcrossbow.c │ │ │ ├── de_ring.c │ │ │ ├── e_robe.c │ │ │ ├── elven_boots.c │ │ │ ├── elven_journal │ │ │ ├── f_cloak.c │ │ │ ├── flail_power.c │ │ │ ├── g_jacket.c │ │ │ ├── guardian_statue1.c │ │ │ ├── guardian_statue2.c │ │ │ ├── h_leggings.c │ │ │ ├── hj_ring.c │ │ │ ├── journal.c │ │ │ ├── kp_band.c │ │ │ ├── l_backpack.c │ │ │ ├── l_girdle.c │ │ │ ├── l_gloves.c │ │ │ ├── l_jacket.c │ │ │ ├── l_pants.c │ │ │ ├── mace_dragon.c │ │ │ ├── r_boots.c │ │ │ ├── rcarrows.c │ │ │ ├── rcrossbow.c │ │ │ ├── ring_ram.c │ │ │ ├── s_boots.c │ │ │ ├── s_jacket.c │ │ │ ├── sandals.c │ │ │ ├── serpentcloak.c │ │ │ ├── sg_band.c │ │ │ ├── shoes.c │ │ │ ├── silver_necklace.c │ │ │ ├── skirt.c │ │ │ ├── sliding_leather.c │ │ │ ├── so_ring.c │ │ │ ├── steel_rack.c │ │ │ ├── steel_rackx.c │ │ │ ├── stone.c │ │ │ ├── tcarrows.c │ │ │ ├── tcrossbow.c │ │ │ ├── trousers.c │ │ │ ├── tunic.c │ │ │ └── tuxedo.c │ │ ├── path │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ └── path9.c │ │ ├── rooms │ │ │ ├── councilroom.c │ │ │ ├── daemonroom.c │ │ │ ├── generator.c │ │ │ ├── tree1 │ │ │ │ ├── 1five1.c │ │ │ │ ├── 1five2.c │ │ │ │ ├── 1five3.c │ │ │ │ ├── 1five4.c │ │ │ │ ├── 1five5.c │ │ │ │ ├── 1four1.c │ │ │ │ ├── 1four2.c │ │ │ │ ├── 1four3.c │ │ │ │ ├── 1four4.c │ │ │ │ ├── 1four5.c │ │ │ │ ├── 1four6.c │ │ │ │ ├── 1four7.c │ │ │ │ ├── 1four8.c │ │ │ │ ├── 1four9.c │ │ │ │ ├── 1ground.c │ │ │ │ ├── 1one1.c │ │ │ │ ├── 1one10.c │ │ │ │ ├── 1one11.c │ │ │ │ ├── 1one12.c │ │ │ │ ├── 1one13.c │ │ │ │ ├── 1one14.c │ │ │ │ ├── 1one15.c │ │ │ │ ├── 1one16.c │ │ │ │ ├── 1one17.c │ │ │ │ ├── 1one18.c │ │ │ │ ├── 1one19.c │ │ │ │ ├── 1one2.c │ │ │ │ ├── 1one20.c │ │ │ │ ├── 1one21.c │ │ │ │ ├── 1one22.c │ │ │ │ ├── 1one23.c │ │ │ │ ├── 1one24.c │ │ │ │ ├── 1one25.c │ │ │ │ ├── 1one26.c │ │ │ │ ├── 1one27.c │ │ │ │ ├── 1one28.c │ │ │ │ ├── 1one29.c │ │ │ │ ├── 1one3.c │ │ │ │ ├── 1one30.c │ │ │ │ ├── 1one31.c │ │ │ │ ├── 1one32.c │ │ │ │ ├── 1one33.c │ │ │ │ ├── 1one34.c │ │ │ │ ├── 1one35.c │ │ │ │ ├── 1one36.c │ │ │ │ ├── 1one37.c │ │ │ │ ├── 1one38.c │ │ │ │ ├── 1one39.c │ │ │ │ ├── 1one4.c │ │ │ │ ├── 1one40.c │ │ │ │ ├── 1one41.c │ │ │ │ ├── 1one42.c │ │ │ │ ├── 1one43.c │ │ │ │ ├── 1one44.c │ │ │ │ ├── 1one45.c │ │ │ │ ├── 1one46.c │ │ │ │ ├── 1one47.c │ │ │ │ ├── 1one48.c │ │ │ │ ├── 1one49.c │ │ │ │ ├── 1one5.c │ │ │ │ ├── 1one50.c │ │ │ │ ├── 1one51.c │ │ │ │ ├── 1one52.c │ │ │ │ ├── 1one53.c │ │ │ │ ├── 1one54.c │ │ │ │ ├── 1one55.c │ │ │ │ ├── 1one56.c │ │ │ │ ├── 1one57.c │ │ │ │ ├── 1one58.c │ │ │ │ ├── 1one59.c │ │ │ │ ├── 1one6.c │ │ │ │ ├── 1one60.c │ │ │ │ ├── 1one61.c │ │ │ │ ├── 1one62.c │ │ │ │ ├── 1one63.c │ │ │ │ ├── 1one64.c │ │ │ │ ├── 1one65.c │ │ │ │ ├── 1one7.c │ │ │ │ ├── 1one8.c │ │ │ │ ├── 1one9.c │ │ │ │ ├── 1step1.c │ │ │ │ ├── 1step2.c │ │ │ │ ├── 1step3.c │ │ │ │ ├── 1step4.c │ │ │ │ ├── 1step5.c │ │ │ │ ├── 1three1.c │ │ │ │ ├── 1three10.c │ │ │ │ ├── 1three11.c │ │ │ │ ├── 1three12.c │ │ │ │ ├── 1three13.c │ │ │ │ ├── 1three14.c │ │ │ │ ├── 1three15.c │ │ │ │ ├── 1three16.c │ │ │ │ ├── 1three17.c │ │ │ │ ├── 1three18.c │ │ │ │ ├── 1three19.c │ │ │ │ ├── 1three1a.c │ │ │ │ ├── 1three2.c │ │ │ │ ├── 1three20.c │ │ │ │ ├── 1three21.c │ │ │ │ ├── 1three3.c │ │ │ │ ├── 1three4.c │ │ │ │ ├── 1three5.c │ │ │ │ ├── 1three6.c │ │ │ │ ├── 1three7.c │ │ │ │ ├── 1three8.c │ │ │ │ ├── 1three9.c │ │ │ │ ├── 1top.c │ │ │ │ ├── 1two1.c │ │ │ │ ├── 1two10.c │ │ │ │ ├── 1two11.c │ │ │ │ ├── 1two12.c │ │ │ │ ├── 1two13.c │ │ │ │ ├── 1two14.c │ │ │ │ ├── 1two15.c │ │ │ │ ├── 1two16.c │ │ │ │ ├── 1two17.c │ │ │ │ ├── 1two18.c │ │ │ │ ├── 1two19.c │ │ │ │ ├── 1two2.c │ │ │ │ ├── 1two20.c │ │ │ │ ├── 1two21.c │ │ │ │ ├── 1two22.c │ │ │ │ ├── 1two23.c │ │ │ │ ├── 1two24.c │ │ │ │ ├── 1two25.c │ │ │ │ ├── 1two26.c │ │ │ │ ├── 1two27.c │ │ │ │ ├── 1two28.c │ │ │ │ ├── 1two29.c │ │ │ │ ├── 1two3.c │ │ │ │ ├── 1two30.c │ │ │ │ ├── 1two31.c │ │ │ │ ├── 1two32.c │ │ │ │ ├── 1two33.c │ │ │ │ ├── 1two34.c │ │ │ │ ├── 1two35.c │ │ │ │ ├── 1two36.c │ │ │ │ ├── 1two37.c │ │ │ │ ├── 1two38.c │ │ │ │ ├── 1two39.c │ │ │ │ ├── 1two4.c │ │ │ │ ├── 1two40.c │ │ │ │ ├── 1two41.c │ │ │ │ ├── 1two42.c │ │ │ │ ├── 1two43.c │ │ │ │ ├── 1two44.c │ │ │ │ ├── 1two45.c │ │ │ │ ├── 1two5.c │ │ │ │ ├── 1two6.c │ │ │ │ ├── 1two7.c │ │ │ │ ├── 1two8.c │ │ │ │ └── 1two9.c │ │ │ ├── tree2 │ │ │ │ ├── 2ground.c │ │ │ │ ├── 2one1.c │ │ │ │ ├── 2one10.c │ │ │ │ ├── 2one11.c │ │ │ │ ├── 2one12.c │ │ │ │ ├── 2one13.c │ │ │ │ ├── 2one14.c │ │ │ │ ├── 2one15.c │ │ │ │ ├── 2one16.c │ │ │ │ ├── 2one17.c │ │ │ │ ├── 2one18.c │ │ │ │ ├── 2one19.c │ │ │ │ ├── 2one2.c │ │ │ │ ├── 2one20.c │ │ │ │ ├── 2one21.c │ │ │ │ ├── 2one22.c │ │ │ │ ├── 2one23.c │ │ │ │ ├── 2one24.c │ │ │ │ ├── 2one25.c │ │ │ │ ├── 2one26.c │ │ │ │ ├── 2one27.c │ │ │ │ ├── 2one28.c │ │ │ │ ├── 2one29.c │ │ │ │ ├── 2one3.c │ │ │ │ ├── 2one30.c │ │ │ │ ├── 2one31.c │ │ │ │ ├── 2one32.c │ │ │ │ ├── 2one33.c │ │ │ │ ├── 2one34.c │ │ │ │ ├── 2one35.c │ │ │ │ ├── 2one36.c │ │ │ │ ├── 2one37.c │ │ │ │ ├── 2one38.c │ │ │ │ ├── 2one39.c │ │ │ │ ├── 2one4.c │ │ │ │ ├── 2one40.c │ │ │ │ ├── 2one41.c │ │ │ │ ├── 2one42.c │ │ │ │ ├── 2one43.c │ │ │ │ ├── 2one44.c │ │ │ │ ├── 2one45.c │ │ │ │ ├── 2one5.c │ │ │ │ ├── 2one6.c │ │ │ │ ├── 2one7.c │ │ │ │ ├── 2one8.c │ │ │ │ ├── 2one9.c │ │ │ │ ├── 2step1.c │ │ │ │ ├── 2step2.c │ │ │ │ ├── 2step3.c │ │ │ │ ├── 2three1.c │ │ │ │ ├── 2three2.c │ │ │ │ ├── 2three3.c │ │ │ │ ├── 2three4.c │ │ │ │ ├── 2three5.c │ │ │ │ ├── 2top.c │ │ │ │ ├── 2two1.c │ │ │ │ ├── 2two10.c │ │ │ │ ├── 2two11.c │ │ │ │ ├── 2two12.c │ │ │ │ ├── 2two13.c │ │ │ │ ├── 2two14.c │ │ │ │ ├── 2two15.c │ │ │ │ ├── 2two16.c │ │ │ │ ├── 2two17.c │ │ │ │ ├── 2two18.c │ │ │ │ ├── 2two19.c │ │ │ │ ├── 2two2.c │ │ │ │ ├── 2two20.c │ │ │ │ ├── 2two21.c │ │ │ │ ├── 2two22.c │ │ │ │ ├── 2two23.c │ │ │ │ ├── 2two3.c │ │ │ │ ├── 2two4.c │ │ │ │ ├── 2two5.c │ │ │ │ ├── 2two6.c │ │ │ │ ├── 2two7.c │ │ │ │ ├── 2two8.c │ │ │ │ └── 2two9.c │ │ │ ├── tree3 │ │ │ │ ├── 3ground.c │ │ │ │ ├── 3one1.c │ │ │ │ ├── 3one10.c │ │ │ │ ├── 3one11.c │ │ │ │ ├── 3one12.c │ │ │ │ ├── 3one13.c │ │ │ │ ├── 3one14.c │ │ │ │ ├── 3one15.c │ │ │ │ ├── 3one16.c │ │ │ │ ├── 3one17.c │ │ │ │ ├── 3one18.c │ │ │ │ ├── 3one19.c │ │ │ │ ├── 3one2.c │ │ │ │ ├── 3one20.c │ │ │ │ ├── 3one21.c │ │ │ │ ├── 3one22.c │ │ │ │ ├── 3one23.c │ │ │ │ ├── 3one24.c │ │ │ │ ├── 3one25.c │ │ │ │ ├── 3one26.c │ │ │ │ ├── 3one27.c │ │ │ │ ├── 3one28.c │ │ │ │ ├── 3one29.c │ │ │ │ ├── 3one3.c │ │ │ │ ├── 3one30.c │ │ │ │ ├── 3one31.c │ │ │ │ ├── 3one32.c │ │ │ │ ├── 3one33.c │ │ │ │ ├── 3one34.c │ │ │ │ ├── 3one35.c │ │ │ │ ├── 3one36.c │ │ │ │ ├── 3one37.c │ │ │ │ ├── 3one38.c │ │ │ │ ├── 3one39.c │ │ │ │ ├── 3one4.c │ │ │ │ ├── 3one40.c │ │ │ │ ├── 3one41.c │ │ │ │ ├── 3one42.c │ │ │ │ ├── 3one5.c │ │ │ │ ├── 3one6.c │ │ │ │ ├── 3one7.c │ │ │ │ ├── 3one8.c │ │ │ │ ├── 3one9.c │ │ │ │ ├── 3step1.c │ │ │ │ ├── 3step2.c │ │ │ │ ├── 3step3.c │ │ │ │ ├── 3three1.c │ │ │ │ ├── 3three2.c │ │ │ │ ├── 3three3.c │ │ │ │ ├── 3three4.c │ │ │ │ ├── 3three5.c │ │ │ │ ├── 3three6.c │ │ │ │ ├── 3top.c │ │ │ │ ├── 3two1.c │ │ │ │ ├── 3two10.c │ │ │ │ ├── 3two11.c │ │ │ │ ├── 3two12.c │ │ │ │ ├── 3two13.c │ │ │ │ ├── 3two14.c │ │ │ │ ├── 3two15.c │ │ │ │ ├── 3two16.c │ │ │ │ ├── 3two17.c │ │ │ │ ├── 3two18.c │ │ │ │ ├── 3two19.c │ │ │ │ ├── 3two2.c │ │ │ │ ├── 3two20.c │ │ │ │ ├── 3two21.c │ │ │ │ ├── 3two22.c │ │ │ │ ├── 3two23.c │ │ │ │ ├── 3two3.c │ │ │ │ ├── 3two4.c │ │ │ │ ├── 3two5.c │ │ │ │ ├── 3two6.c │ │ │ │ ├── 3two7.c │ │ │ │ ├── 3two8.c │ │ │ │ ├── 3two9.c │ │ │ │ └── map.txt │ │ │ ├── tree4 │ │ │ │ ├── 4one1.c │ │ │ │ ├── 4one10.c │ │ │ │ ├── 4one11.c │ │ │ │ ├── 4one12.c │ │ │ │ ├── 4one13.c │ │ │ │ ├── 4one14.c │ │ │ │ ├── 4one15.c │ │ │ │ ├── 4one16.c │ │ │ │ ├── 4one17.c │ │ │ │ ├── 4one18.c │ │ │ │ ├── 4one19.c │ │ │ │ ├── 4one2.c │ │ │ │ ├── 4one20.c │ │ │ │ ├── 4one21.c │ │ │ │ ├── 4one22.c │ │ │ │ ├── 4one23.c │ │ │ │ ├── 4one24.c │ │ │ │ ├── 4one25.c │ │ │ │ ├── 4one26.c │ │ │ │ ├── 4one27.c │ │ │ │ ├── 4one28.c │ │ │ │ ├── 4one29.c │ │ │ │ ├── 4one3.c │ │ │ │ ├── 4one30.c │ │ │ │ ├── 4one31.c │ │ │ │ ├── 4one32.c │ │ │ │ ├── 4one33.c │ │ │ │ ├── 4one34.c │ │ │ │ ├── 4one35.c │ │ │ │ ├── 4one36.c │ │ │ │ ├── 4one37.c │ │ │ │ ├── 4one38.c │ │ │ │ ├── 4one39.c │ │ │ │ ├── 4one4.c │ │ │ │ ├── 4one40.c │ │ │ │ ├── 4one41.c │ │ │ │ ├── 4one42.c │ │ │ │ ├── 4one43.c │ │ │ │ ├── 4one44.c │ │ │ │ ├── 4one45.c │ │ │ │ ├── 4one5.c │ │ │ │ ├── 4one6.c │ │ │ │ ├── 4one7.c │ │ │ │ ├── 4one8.c │ │ │ │ ├── 4one9.c │ │ │ │ ├── 4three1.c │ │ │ │ ├── 4three2.c │ │ │ │ ├── 4three3.c │ │ │ │ ├── 4three4.c │ │ │ │ ├── 4three5.c │ │ │ │ ├── 4top.c │ │ │ │ ├── 4two1.c │ │ │ │ ├── 4two10.c │ │ │ │ ├── 4two11.c │ │ │ │ ├── 4two12.c │ │ │ │ ├── 4two13.c │ │ │ │ ├── 4two14.c │ │ │ │ ├── 4two15.c │ │ │ │ ├── 4two16.c │ │ │ │ ├── 4two17.c │ │ │ │ ├── 4two18.c │ │ │ │ ├── 4two19.c │ │ │ │ ├── 4two2.c │ │ │ │ ├── 4two20.c │ │ │ │ ├── 4two21.c │ │ │ │ ├── 4two22.c │ │ │ │ ├── 4two3.c │ │ │ │ ├── 4two4.c │ │ │ │ ├── 4two5.c │ │ │ │ ├── 4two6.c │ │ │ │ ├── 4two7.c │ │ │ │ ├── 4two8.c │ │ │ │ └── 4two9.c │ │ │ ├── tree5 │ │ │ │ ├── 5one1.c │ │ │ │ ├── 5one10.c │ │ │ │ ├── 5one11.c │ │ │ │ ├── 5one12.c │ │ │ │ ├── 5one13.c │ │ │ │ ├── 5one14.c │ │ │ │ ├── 5one15.c │ │ │ │ ├── 5one16.c │ │ │ │ ├── 5one17.c │ │ │ │ ├── 5one18.c │ │ │ │ ├── 5one19.c │ │ │ │ ├── 5one2.c │ │ │ │ ├── 5one20.c │ │ │ │ ├── 5one21.c │ │ │ │ ├── 5one22.c │ │ │ │ ├── 5one23.c │ │ │ │ ├── 5one24.c │ │ │ │ ├── 5one25.c │ │ │ │ ├── 5one26.c │ │ │ │ ├── 5one27.c │ │ │ │ ├── 5one28.c │ │ │ │ ├── 5one29.c │ │ │ │ ├── 5one3.c │ │ │ │ ├── 5one30.c │ │ │ │ ├── 5one31.c │ │ │ │ ├── 5one32.c │ │ │ │ ├── 5one33.c │ │ │ │ ├── 5one34.c │ │ │ │ ├── 5one35.c │ │ │ │ ├── 5one36.c │ │ │ │ ├── 5one37.c │ │ │ │ ├── 5one38.c │ │ │ │ ├── 5one39.c │ │ │ │ ├── 5one4.c │ │ │ │ ├── 5one40.c │ │ │ │ ├── 5one41.c │ │ │ │ ├── 5one5.c │ │ │ │ ├── 5one6.c │ │ │ │ ├── 5one7.c │ │ │ │ ├── 5one8.c │ │ │ │ ├── 5one9.c │ │ │ │ ├── 5three1.c │ │ │ │ ├── 5three2.c │ │ │ │ ├── 5three3.c │ │ │ │ ├── 5three4.c │ │ │ │ ├── 5three5.c │ │ │ │ ├── 5three6.c │ │ │ │ ├── 5top.c │ │ │ │ ├── 5two1.c │ │ │ │ ├── 5two10.c │ │ │ │ ├── 5two11.c │ │ │ │ ├── 5two12.c │ │ │ │ ├── 5two13.c │ │ │ │ ├── 5two14.c │ │ │ │ ├── 5two15.c │ │ │ │ ├── 5two16.c │ │ │ │ ├── 5two17.c │ │ │ │ ├── 5two18.c │ │ │ │ ├── 5two19.c │ │ │ │ ├── 5two2.c │ │ │ │ ├── 5two20.c │ │ │ │ ├── 5two21.c │ │ │ │ ├── 5two22.c │ │ │ │ ├── 5two23.c │ │ │ │ ├── 5two24.c │ │ │ │ ├── 5two3.c │ │ │ │ ├── 5two4.c │ │ │ │ ├── 5two5.c │ │ │ │ ├── 5two6.c │ │ │ │ ├── 5two7.c │ │ │ │ ├── 5two8.c │ │ │ │ └── 5two9.c │ │ │ └── treeout.c │ │ ├── short.h │ │ ├── store │ │ │ ├── archery_storage.c │ │ │ ├── armor_storage.c │ │ │ ├── garment_storage.c │ │ │ ├── general_storage.c │ │ │ ├── jewellery_storage.c │ │ │ ├── tobacco_storage.c │ │ │ ├── treeout.c │ │ │ └── weapon_storage.c │ │ ├── tree3_map.txt │ │ └── updates │ ├── aketon_outpost │ │ ├── aketon_outpost.h │ │ └── rooms │ │ │ ├── aketon_camp.c │ │ │ ├── aketon_central.c │ │ │ ├── aketon_foyer.c │ │ │ ├── aketon_sequoia_inh.c │ │ │ ├── aketon_shrine.c │ │ │ ├── seq1.c │ │ │ ├── seq2.c │ │ │ └── seq3.c │ ├── arctic │ │ ├── arctic.h │ │ ├── cracks.h │ │ ├── creature.c │ │ ├── mon │ │ │ ├── arctic_tempest.c │ │ │ ├── cryohydra.c │ │ │ ├── dire_shark.c │ │ │ ├── fish.c │ │ │ ├── giant_shaman.c │ │ │ ├── mammoth.c │ │ │ ├── scout.c │ │ │ ├── scout_leader.c │ │ │ ├── stomach_lining.c │ │ │ ├── winterwolf.c │ │ │ ├── wolf.c │ │ │ ├── yeti.c │ │ │ └── yetis.c │ │ ├── obj │ │ │ ├── clear_crystal.c │ │ │ ├── gems.c │ │ │ ├── lesserjade.c │ │ │ ├── light_crystal.c │ │ │ ├── ring_water_breathing.c │ │ │ ├── scroll_case.c │ │ │ ├── shark_corpse.c │ │ │ ├── shark_corpse_gashed.c │ │ │ ├── winterstouch.c │ │ │ └── wolf_mantle.c │ │ ├── rooms │ │ │ ├── cave.c │ │ │ ├── cave │ │ │ │ ├── cave1.c │ │ │ │ ├── cave10.c │ │ │ │ ├── cave11.c │ │ │ │ ├── cave12.c │ │ │ │ ├── cave13.c │ │ │ │ ├── cave14.c │ │ │ │ ├── cave15.c │ │ │ │ ├── cave16.c │ │ │ │ ├── cave17.c │ │ │ │ ├── cave18.c │ │ │ │ ├── cave19.c │ │ │ │ ├── cave2.c │ │ │ │ ├── cave20.c │ │ │ │ ├── cave21.c │ │ │ │ ├── cave22.c │ │ │ │ ├── cave23.c │ │ │ │ ├── cave24.c │ │ │ │ ├── cave25.c │ │ │ │ ├── cave26.c │ │ │ │ ├── cave27.c │ │ │ │ ├── cave28.c │ │ │ │ ├── cave29.c │ │ │ │ ├── cave3.c │ │ │ │ ├── cave30.c │ │ │ │ ├── cave31.c │ │ │ │ ├── cave32.c │ │ │ │ ├── cave33.c │ │ │ │ ├── cave34.c │ │ │ │ ├── cave35.c │ │ │ │ ├── cave36.c │ │ │ │ ├── cave37.c │ │ │ │ ├── cave38.c │ │ │ │ ├── cave39.c │ │ │ │ ├── cave4.c │ │ │ │ ├── cave40.c │ │ │ │ ├── cave41.c │ │ │ │ ├── cave42.c │ │ │ │ ├── cave43.c │ │ │ │ ├── cave44.c │ │ │ │ ├── cave45.c │ │ │ │ ├── cave46.c │ │ │ │ ├── cave47.c │ │ │ │ ├── cave48.c │ │ │ │ ├── cave49.c │ │ │ │ ├── cave5.c │ │ │ │ ├── cave50.c │ │ │ │ ├── cave51.c │ │ │ │ ├── cave52.c │ │ │ │ ├── cave53.c │ │ │ │ ├── cave54.c │ │ │ │ ├── cave55.c │ │ │ │ ├── cave6.c │ │ │ │ ├── cave7.c │ │ │ │ ├── cave8.c │ │ │ │ └── cave9.c │ │ │ ├── caveb.c │ │ │ ├── lair │ │ │ │ ├── giants1.c │ │ │ │ └── giants2.c │ │ │ ├── lake.c │ │ │ ├── lake │ │ │ │ ├── lake1.c │ │ │ │ ├── lake10.c │ │ │ │ ├── lake11.c │ │ │ │ ├── lake12.c │ │ │ │ ├── lake13.c │ │ │ │ ├── lake14.c │ │ │ │ ├── lake15.c │ │ │ │ ├── lake16.c │ │ │ │ ├── lake2.c │ │ │ │ ├── lake3.c │ │ │ │ ├── lake4.c │ │ │ │ ├── lake5.c │ │ │ │ ├── lake6.c │ │ │ │ ├── lake7.c │ │ │ │ ├── lake8.c │ │ │ │ ├── lake9.c │ │ │ │ ├── road1.c │ │ │ │ ├── road2.c │ │ │ │ ├── road3.c │ │ │ │ ├── road4.c │ │ │ │ ├── road5.c │ │ │ │ ├── road6.c │ │ │ │ ├── road7.c │ │ │ │ ├── road8.c │ │ │ │ └── waterfall.c │ │ │ ├── uw.c │ │ │ ├── uw │ │ │ │ ├── bottom.c │ │ │ │ ├── shark_stomach.c │ │ │ │ ├── uw1.c │ │ │ │ ├── uw10.c │ │ │ │ ├── uw11.c │ │ │ │ ├── uw12.c │ │ │ │ ├── uw13.c │ │ │ │ ├── uw14.c │ │ │ │ ├── uw15.c │ │ │ │ ├── uw16.c │ │ │ │ ├── uw17.c │ │ │ │ ├── uw18.c │ │ │ │ ├── uw19.c │ │ │ │ ├── uw2.c │ │ │ │ ├── uw20.c │ │ │ │ ├── uw3.c │ │ │ │ ├── uw4.c │ │ │ │ ├── uw5.c │ │ │ │ ├── uw6.c │ │ │ │ ├── uw7.c │ │ │ │ ├── uw8.c │ │ │ │ ├── uw9.c │ │ │ │ ├── uwb1.c │ │ │ │ ├── uwb2.c │ │ │ │ ├── uwb3.c │ │ │ │ ├── uwb4.c │ │ │ │ ├── uwb5.c │ │ │ │ ├── uwb6.c │ │ │ │ ├── uwb7.c │ │ │ │ ├── uwb8.c │ │ │ │ └── uwb9.c │ │ │ └── uwb.c │ │ └── underwater.c │ ├── armor │ │ ├── c_armor.c │ │ ├── cs_armor.c │ │ ├── gkey.c │ │ ├── gold │ │ │ ├── room1.c │ │ │ └── room2.c │ │ ├── implementor.c │ │ ├── scrapmon.c │ │ ├── silver │ │ │ ├── room1.c │ │ │ └── room2.c │ │ └── skey.c │ ├── ava_cold_storage.c │ ├── avaboard2.c │ ├── avalounge.c │ ├── boards_portal.c │ ├── bodyhold.c │ ├── cave1 │ │ └── rooms │ │ │ ├── alcove.c │ │ │ ├── entrance.c │ │ │ ├── room1.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room2.c │ │ │ ├── room3.c │ │ │ ├── room4.c │ │ │ ├── room5.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── room8.c │ │ │ └── room9.c │ ├── cave2 │ │ ├── cave1.c │ │ ├── cave10.c │ │ ├── cave100.c │ │ ├── cave101.c │ │ ├── cave102.c │ │ ├── cave103.c │ │ ├── cave104.c │ │ ├── cave105.c │ │ ├── cave106.c │ │ ├── cave107.c │ │ ├── cave108.c │ │ ├── cave109.c │ │ ├── cave11.c │ │ ├── cave110.c │ │ ├── cave111.c │ │ ├── cave112.c │ │ ├── cave113.c │ │ ├── cave114.c │ │ ├── cave115.c │ │ ├── cave116.c │ │ ├── cave117.c │ │ ├── cave118.c │ │ ├── cave119.c │ │ ├── cave12.c │ │ ├── cave120.c │ │ ├── cave121.c │ │ ├── cave122.c │ │ ├── cave123.c │ │ ├── cave124.c │ │ ├── cave125.c │ │ ├── cave126.c │ │ ├── cave127.c │ │ ├── cave128.c │ │ ├── cave129.c │ │ ├── cave13.c │ │ ├── cave130.c │ │ ├── cave131.c │ │ ├── cave132.c │ │ ├── cave133.c │ │ ├── cave134.c │ │ ├── cave135.c │ │ ├── cave136.c │ │ ├── cave137.c │ │ ├── cave138.c │ │ ├── cave139.c │ │ ├── cave14.c │ │ ├── cave140.c │ │ ├── cave141.c │ │ ├── cave142.c │ │ ├── cave143.c │ │ ├── cave144.c │ │ ├── cave145.c │ │ ├── cave15.c │ │ ├── cave16.c │ │ ├── cave17.c │ │ ├── cave18.c │ │ ├── cave19.c │ │ ├── cave2.c │ │ ├── cave20.c │ │ ├── cave21.c │ │ ├── cave22.c │ │ ├── cave23.c │ │ ├── cave24.c │ │ ├── cave25.c │ │ ├── cave26.c │ │ ├── cave27.c │ │ ├── cave28.c │ │ ├── cave29.c │ │ ├── cave3.c │ │ ├── cave30.c │ │ ├── cave31.c │ │ ├── cave32.c │ │ ├── cave33.c │ │ ├── cave34.c │ │ ├── cave35.c │ │ ├── cave36.c │ │ ├── cave37.c │ │ ├── cave38.c │ │ ├── cave39.c │ │ ├── cave4.c │ │ ├── cave40.c │ │ ├── cave41.c │ │ ├── cave42.c │ │ ├── cave43.c │ │ ├── cave44.c │ │ ├── cave45.c │ │ ├── cave46.c │ │ ├── cave47.c │ │ ├── cave48.c │ │ ├── cave49.c │ │ ├── cave5.c │ │ ├── cave50.c │ │ ├── cave51.c │ │ ├── cave52.c │ │ ├── cave53.c │ │ ├── cave54.c │ │ ├── cave55.c │ │ ├── cave56.c │ │ ├── cave57.c │ │ ├── cave58.c │ │ ├── cave59.c │ │ ├── cave6.c │ │ ├── cave60.c │ │ ├── cave61.c │ │ ├── cave62.c │ │ ├── cave63.c │ │ ├── cave64.c │ │ ├── cave65.c │ │ ├── cave66.c │ │ ├── cave67.c │ │ ├── cave68.c │ │ ├── cave69.c │ │ ├── cave7.c │ │ ├── cave70.c │ │ ├── cave71.c │ │ ├── cave72.c │ │ ├── cave73.c │ │ ├── cave74.c │ │ ├── cave75.c │ │ ├── cave76.c │ │ ├── cave77.c │ │ ├── cave78.c │ │ ├── cave79.c │ │ ├── cave8.c │ │ ├── cave80.c │ │ ├── cave81.c │ │ ├── cave82.c │ │ ├── cave83.c │ │ ├── cave84.c │ │ ├── cave85.c │ │ ├── cave86.c │ │ ├── cave87.c │ │ ├── cave88.c │ │ ├── cave89.c │ │ ├── cave9.c │ │ ├── cave90.c │ │ ├── cave91.c │ │ ├── cave92.c │ │ ├── cave93.c │ │ ├── cave94.c │ │ ├── cave95.c │ │ ├── cave96.c │ │ ├── cave97.c │ │ ├── cave98.c │ │ ├── cave99.c │ │ ├── healer.c │ │ ├── mon │ │ │ ├── G_demon.c │ │ │ ├── berserker.c │ │ │ ├── berserker2.c │ │ │ ├── crone.c │ │ │ ├── demon.c │ │ │ ├── demon2.c │ │ │ ├── demon2b.c │ │ │ ├── demon3.c │ │ │ ├── escapee.c │ │ │ ├── ogre1.c │ │ │ ├── ogre2.c │ │ │ ├── ogre3.c │ │ │ ├── ogre4.c │ │ │ ├── ogre5.c │ │ │ ├── ogre6.c │ │ │ ├── summoner.c │ │ │ ├── summoner2.c │ │ │ ├── vakoth.c │ │ │ ├── weaponlesswonder.c │ │ │ ├── witch.c │ │ │ └── wonder.c │ │ ├── obj │ │ │ ├── blacksword.c │ │ │ ├── bloodrobe.c │ │ │ ├── c_wand.c │ │ │ ├── demonfork.c │ │ │ ├── doubletflames.c │ │ │ ├── flame_whip.c │ │ │ └── treetrunk.c │ │ ├── short.h │ │ └── spec │ │ │ └── mobs.c │ ├── colorhold.c │ ├── derro │ │ ├── I │ │ ├── derrodefs.h │ │ ├── mon │ │ │ ├── captive.c │ │ │ ├── cook.c │ │ │ ├── cook_ares │ │ │ ├── derro1.c │ │ │ ├── derro2.c │ │ │ ├── derro3.c │ │ │ ├── derro4.c │ │ │ ├── elemental.c │ │ │ ├── fireking.c │ │ │ ├── firesnake.c │ │ │ ├── funnel.c │ │ │ ├── mold.c │ │ │ ├── owl.c │ │ │ ├── pech.c │ │ │ └── raven.c │ │ ├── obj │ │ │ ├── Stormrobe.c │ │ │ ├── aklys.c │ │ │ ├── blacksapphire.c │ │ │ ├── blackscimitar.c │ │ │ ├── bplate_amethyst.c │ │ │ ├── bplate_bopal.c │ │ │ ├── bplate_emerald.c │ │ │ ├── bplate_inherit.c │ │ │ ├── bplate_moonstone.c │ │ │ ├── bplate_ruby.c │ │ │ ├── bplate_sapphire.c │ │ │ ├── bplate_sunstone.c │ │ │ ├── brownkey.c │ │ │ ├── chain.c │ │ │ ├── cocow.c │ │ │ ├── corpse.c │ │ │ ├── crimson_bracers.c │ │ │ ├── dragonhead.c │ │ │ ├── emerald.c │ │ │ ├── emeraldpl.c │ │ │ ├── fangs.c │ │ │ ├── fireplate.c │ │ │ ├── flameblade.c │ │ │ ├── food.c │ │ │ ├── frcow.c │ │ │ ├── greatcloak.c │ │ │ ├── hobboots.c │ │ │ ├── hook-fauchard.c │ │ │ ├── kather.c │ │ │ ├── noblemanspants.c │ │ │ ├── oldscimitar.c │ │ │ ├── prybar.c │ │ │ ├── ramjerkin.c │ │ │ ├── scimitar.c │ │ │ ├── secari.c │ │ │ ├── shield.c │ │ │ ├── sildorekatana.c │ │ │ ├── spikedbuckler.c │ │ │ ├── ssecari.c │ │ │ ├── star.c │ │ │ ├── steelhelm.c │ │ │ ├── stone.c │ │ │ ├── stonecube.c │ │ │ ├── tanto.c │ │ │ ├── tunic.c │ │ │ ├── wakizashi.c │ │ │ ├── wcheck.log │ │ │ ├── whitebliaut.c │ │ │ └── whitesmock.c │ │ ├── old │ │ │ ├── I │ │ │ ├── derrodefs.h │ │ │ ├── mon │ │ │ │ ├── captive.c │ │ │ │ ├── cook.c │ │ │ │ ├── cook_ares │ │ │ │ ├── derro1.c │ │ │ │ ├── derro2.c │ │ │ │ ├── derro3.c │ │ │ │ ├── derro4.c │ │ │ │ ├── elemental.c │ │ │ │ ├── fireking.c │ │ │ │ ├── firesnake.c │ │ │ │ ├── funnel.c │ │ │ │ ├── mold.c │ │ │ │ ├── owl.c │ │ │ │ ├── pech.c │ │ │ │ └── raven.c │ │ │ ├── obj │ │ │ │ ├── Stormrobe.c │ │ │ │ ├── aklys.c │ │ │ │ ├── blacksapphire.c │ │ │ │ ├── blackscimitar.c │ │ │ │ ├── bplate_amethyst.c │ │ │ │ ├── bplate_bopal.c │ │ │ │ ├── bplate_emerald.c │ │ │ │ ├── bplate_inherit.c │ │ │ │ ├── bplate_moonstone.c │ │ │ │ ├── bplate_ruby.c │ │ │ │ ├── bplate_sapphire.c │ │ │ │ ├── bplate_sunstone.c │ │ │ │ ├── brownkey.c │ │ │ │ ├── chain.c │ │ │ │ ├── cocow.c │ │ │ │ ├── corpse.c │ │ │ │ ├── crimson_bracers.c │ │ │ │ ├── dragonhead.c │ │ │ │ ├── emerald.c │ │ │ │ ├── emeraldpl.c │ │ │ │ ├── fangs.c │ │ │ │ ├── fireplate.c │ │ │ │ ├── flameblade.c │ │ │ │ ├── food.c │ │ │ │ ├── frcow.c │ │ │ │ ├── greatcloak.c │ │ │ │ ├── hobboots.c │ │ │ │ ├── hook-fauchard.c │ │ │ │ ├── kather.c │ │ │ │ ├── noblemanspants.c │ │ │ │ ├── oldscimitar.c │ │ │ │ ├── prybar.c │ │ │ │ ├── ramjerkin.c │ │ │ │ ├── scimitar.c │ │ │ │ ├── secari.c │ │ │ │ ├── shield.c │ │ │ │ ├── sildorekatana.c │ │ │ │ ├── spikedbuckler.c │ │ │ │ ├── ssecari.c │ │ │ │ ├── star.c │ │ │ │ ├── steelhelm.c │ │ │ │ ├── stone.c │ │ │ │ ├── stonecube.c │ │ │ │ ├── tanto.c │ │ │ │ ├── tunic.c │ │ │ │ ├── wakizashi.c │ │ │ │ ├── wcheck.log │ │ │ │ ├── whitebliaut.c │ │ │ │ └── whitesmock.c │ │ │ └── rooms │ │ │ │ ├── a1.c │ │ │ │ ├── a2.c │ │ │ │ ├── a3.c │ │ │ │ ├── a4.c │ │ │ │ ├── a5-capture.c │ │ │ │ ├── a5.c │ │ │ │ ├── a6.c │ │ │ │ ├── a7.c │ │ │ │ ├── b.c │ │ │ │ ├── b1.c │ │ │ │ ├── b2.c │ │ │ │ ├── b3.c │ │ │ │ ├── b4.c │ │ │ │ ├── b5.c │ │ │ │ ├── b6.c │ │ │ │ ├── b7.c │ │ │ │ ├── b8.c │ │ │ │ ├── c1.c │ │ │ │ ├── c10.c │ │ │ │ ├── c11.c │ │ │ │ ├── c12.c │ │ │ │ ├── c13.c │ │ │ │ ├── c14.c │ │ │ │ ├── c15.c │ │ │ │ ├── c16.c │ │ │ │ ├── c17.c │ │ │ │ ├── c18.c │ │ │ │ ├── c19.c │ │ │ │ ├── c2.c │ │ │ │ ├── c20.c │ │ │ │ ├── c21.c │ │ │ │ ├── c22.c │ │ │ │ ├── c23.c │ │ │ │ ├── c24.c │ │ │ │ ├── c25.c │ │ │ │ ├── c26.c │ │ │ │ ├── c27.c │ │ │ │ ├── c28.c │ │ │ │ ├── c29.c │ │ │ │ ├── c3.c │ │ │ │ ├── c30.c │ │ │ │ ├── c31.c │ │ │ │ ├── c32.c │ │ │ │ ├── c33.c │ │ │ │ ├── c34.c │ │ │ │ ├── c35.c │ │ │ │ ├── c36.c │ │ │ │ ├── c37.c │ │ │ │ ├── c38.c │ │ │ │ ├── c39.c │ │ │ │ ├── c4.c │ │ │ │ ├── c40.c │ │ │ │ ├── c41.c │ │ │ │ ├── c42.c │ │ │ │ ├── c43.c │ │ │ │ ├── c44.c │ │ │ │ ├── c5.c │ │ │ │ ├── c6.c │ │ │ │ ├── c7.c │ │ │ │ ├── c8.c │ │ │ │ ├── c9.c │ │ │ │ ├── lavapit.c │ │ │ │ ├── oven.c │ │ │ │ ├── r1.c │ │ │ │ ├── r2.c │ │ │ │ ├── r3.c │ │ │ │ ├── r4.c │ │ │ │ ├── r5.c │ │ │ │ ├── r6.c │ │ │ │ └── r7.c │ │ └── rooms │ │ │ ├── a1.c │ │ │ ├── a2.c │ │ │ ├── a3.c │ │ │ ├── a4.c │ │ │ ├── a5-capture.c │ │ │ ├── a5.c │ │ │ ├── a6.c │ │ │ ├── a7.c │ │ │ ├── b.c │ │ │ ├── b1.c │ │ │ ├── b2.c │ │ │ ├── b3.c │ │ │ ├── b4.c │ │ │ ├── b5.c │ │ │ ├── b6.c │ │ │ ├── b7.c │ │ │ ├── b8.c │ │ │ ├── c1.c │ │ │ ├── c10.c │ │ │ ├── c11.c │ │ │ ├── c12.c │ │ │ ├── c13.c │ │ │ ├── c14.c │ │ │ ├── c15.c │ │ │ ├── c16.c │ │ │ ├── c17.c │ │ │ ├── c18.c │ │ │ ├── c19.c │ │ │ ├── c2.c │ │ │ ├── c20.c │ │ │ ├── c21.c │ │ │ ├── c22.c │ │ │ ├── c23.c │ │ │ ├── c24.c │ │ │ ├── c25.c │ │ │ ├── c26.c │ │ │ ├── c27.c │ │ │ ├── c28.c │ │ │ ├── c29.c │ │ │ ├── c3.c │ │ │ ├── c30.c │ │ │ ├── c31.c │ │ │ ├── c32.c │ │ │ ├── c33.c │ │ │ ├── c34.c │ │ │ ├── c35.c │ │ │ ├── c36.c │ │ │ ├── c37.c │ │ │ ├── c38.c │ │ │ ├── c39.c │ │ │ ├── c4.c │ │ │ ├── c40.c │ │ │ ├── c41.c │ │ │ ├── c42.c │ │ │ ├── c43.c │ │ │ ├── c44.c │ │ │ ├── c5.c │ │ │ ├── c6.c │ │ │ ├── c7.c │ │ │ ├── c8.c │ │ │ ├── c9.c │ │ │ ├── hidden.c │ │ │ ├── lavapit.c │ │ │ ├── oven.c │ │ │ ├── r1.c │ │ │ ├── r2.c │ │ │ ├── r3.c │ │ │ ├── r4.c │ │ │ ├── r5.c │ │ │ ├── r6.c │ │ │ └── r7.c │ ├── drow │ │ ├── avenger.c │ │ ├── keep │ │ │ ├── mon │ │ │ │ └── soldier.c │ │ │ └── short.h │ │ ├── logs │ │ │ └── donations │ │ ├── mon │ │ │ ├── airelem.c │ │ │ ├── drowa.c │ │ │ ├── drowcap.c │ │ │ ├── drowf.c │ │ │ ├── drowg.c │ │ │ ├── drowh.c │ │ │ ├── drowp.c │ │ │ ├── drows.c │ │ │ ├── droww.c │ │ │ ├── elfelder.c │ │ │ ├── elite.c │ │ │ ├── emisary.c │ │ │ ├── fwitch.c │ │ │ ├── gar.c │ │ │ ├── gar1.c │ │ │ ├── kraznoth.c │ │ │ ├── maul.c │ │ │ ├── mflayer.c │ │ │ ├── mykrysh.c │ │ │ ├── priest.c │ │ │ ├── shadow.c │ │ │ ├── shadow.gre │ │ │ ├── slv.c │ │ │ ├── slythssz.c │ │ │ ├── smonk.c │ │ │ ├── solar.c │ │ │ └── tyvicus.c │ │ ├── note │ │ ├── obj │ │ │ ├── avenger.c │ │ │ ├── blbow.c │ │ │ ├── blcloak.c │ │ │ ├── bldagger.c │ │ │ ├── blood.c │ │ │ ├── blsword.c │ │ │ ├── bread.c │ │ │ ├── chest.c │ │ │ ├── cylinder.c │ │ │ ├── drow_gem.c │ │ │ ├── elited.c │ │ │ ├── elitesword.c │ │ │ ├── fireball.c │ │ │ ├── flames.c │ │ │ ├── frwand.c │ │ │ ├── frwand.gre │ │ │ ├── glyph.c │ │ │ ├── hand.c │ │ │ ├── jaws.c │ │ │ ├── marmor.c │ │ │ ├── mask.c │ │ │ ├── mask.crys │ │ │ ├── rune.c │ │ │ ├── sign.c │ │ │ ├── sphere.c │ │ │ ├── spider_necklace.c │ │ │ ├── spine.c │ │ │ ├── staff.c │ │ │ ├── tablet.c │ │ │ ├── tentacle.c │ │ │ ├── thood.c │ │ │ ├── tornado.c │ │ │ ├── velvet_mask.c │ │ │ ├── vomit.c │ │ │ ├── wind.c │ │ │ └── wowand.c │ │ ├── rooms │ │ │ ├── bridge1.c │ │ │ ├── bridge2.c │ │ │ ├── brk1.c │ │ │ ├── brk2.c │ │ │ ├── brk3.c │ │ │ ├── brk4.c │ │ │ ├── brk5.c │ │ │ ├── brk6.c │ │ │ ├── brk7.c │ │ │ ├── brk8.c │ │ │ ├── city1.c │ │ │ ├── city10.c │ │ │ ├── city11.c │ │ │ ├── city12.c │ │ │ ├── city13.c │ │ │ ├── city14.c │ │ │ ├── city15.c │ │ │ ├── city16.c │ │ │ ├── city17.c │ │ │ ├── city18.c │ │ │ ├── city19.c │ │ │ ├── city2.c │ │ │ ├── city20.c │ │ │ ├── city21.c │ │ │ ├── city22.c │ │ │ ├── city23.c │ │ │ ├── city24.c │ │ │ ├── city25.c │ │ │ ├── city26.c │ │ │ ├── city27.c │ │ │ ├── city28.c │ │ │ ├── city29.c │ │ │ ├── city3.c │ │ │ ├── city30.c │ │ │ ├── city31.c │ │ │ ├── city32.c │ │ │ ├── city33.c │ │ │ ├── city34.c │ │ │ ├── city35.c │ │ │ ├── city36.c │ │ │ ├── city37.c │ │ │ ├── city38.c │ │ │ ├── city39.c │ │ │ ├── city4.c │ │ │ ├── city40.c │ │ │ ├── city41.c │ │ │ ├── city42.c │ │ │ ├── city5.c │ │ │ ├── city6.c │ │ │ ├── city7.c │ │ │ ├── city8.c │ │ │ ├── city9.c │ │ │ ├── court1.c │ │ │ ├── court2.c │ │ │ ├── court3.c │ │ │ ├── court4.c │ │ │ ├── court5.c │ │ │ ├── court6.c │ │ │ ├── court7.c │ │ │ ├── court8.c │ │ │ ├── elite1.c │ │ │ ├── elite2.c │ │ │ ├── elite3.c │ │ │ ├── elite4.c │ │ │ ├── elite5.c │ │ │ ├── elite6.c │ │ │ ├── fakecell.c │ │ │ ├── fakeroom.c │ │ │ ├── healer.c │ │ │ ├── lake.c │ │ │ ├── shack1.c │ │ │ ├── shack2.c │ │ │ ├── slave1.c │ │ │ ├── slave2.c │ │ │ ├── slave3.c │ │ │ ├── slave4.c │ │ │ ├── slave5.c │ │ │ ├── slave6.c │ │ │ ├── slave7.c │ │ │ ├── slave8.c │ │ │ ├── store.c │ │ │ ├── temple.c │ │ │ ├── temple1.c │ │ │ ├── tower1.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── tower5.c │ │ │ ├── treasury.c │ │ │ ├── tun1.c │ │ │ ├── tun10.c │ │ │ ├── tun11.c │ │ │ ├── tun12.c │ │ │ ├── tun13.c │ │ │ ├── tun14.c │ │ │ ├── tun2.c │ │ │ ├── tun3.c │ │ │ ├── tun4.c │ │ │ ├── tun5.c │ │ │ ├── tun6.c │ │ │ ├── tun7.c │ │ │ ├── tun8.c │ │ │ ├── tun9.c │ │ │ ├── twr1.c │ │ │ ├── twr2.c │ │ │ ├── twr3.c │ │ │ ├── twr4.c │ │ │ └── weapons.c │ │ ├── short.h │ │ ├── storage.c │ │ ├── temple │ │ │ ├── mon │ │ │ │ ├── drider.c │ │ │ │ ├── junk │ │ │ │ ├── lspider.c │ │ │ │ ├── mflayer.c │ │ │ │ ├── pest.c │ │ │ │ ├── priest.c │ │ │ │ ├── priest1.c │ │ │ │ ├── priest2.c │ │ │ │ ├── priest3.c │ │ │ │ ├── priest4.c │ │ │ │ ├── priest5.c │ │ │ │ ├── spider.c │ │ │ │ ├── swarm.c │ │ │ │ ├── syculess.c │ │ │ │ └── webder.c │ │ │ ├── obj │ │ │ │ ├── boo.c │ │ │ │ ├── bread.c │ │ │ │ ├── funeral.c │ │ │ │ ├── gemsee.c │ │ │ │ ├── hlstick.c │ │ │ │ ├── hlyavenger.c │ │ │ │ ├── jewel.c │ │ │ │ ├── possess.c │ │ │ │ ├── ruby.c │ │ │ │ ├── stickd.c │ │ │ │ ├── sticki.c │ │ │ │ ├── sticks.c │ │ │ │ ├── stickw.c │ │ │ │ ├── whip.c │ │ │ │ └── worwell.c │ │ │ ├── rooms │ │ │ │ ├── first1.c │ │ │ │ ├── first10.c │ │ │ │ ├── first11.c │ │ │ │ ├── first12.c │ │ │ │ ├── first13.c │ │ │ │ ├── first14.c │ │ │ │ ├── first14.gre │ │ │ │ ├── first15.c │ │ │ │ ├── first16.c │ │ │ │ ├── first17.c │ │ │ │ ├── first18.c │ │ │ │ ├── first19.c │ │ │ │ ├── first2.c │ │ │ │ ├── first20.c │ │ │ │ ├── first21.c │ │ │ │ ├── first3.c │ │ │ │ ├── first4.c │ │ │ │ ├── first5.c │ │ │ │ ├── first6.c │ │ │ │ ├── first7.c │ │ │ │ ├── first8.c │ │ │ │ ├── first8.gre │ │ │ │ ├── first9.c │ │ │ │ ├── web.c │ │ │ │ ├── web1.c │ │ │ │ ├── web10.c │ │ │ │ ├── web11.c │ │ │ │ ├── web12.c │ │ │ │ ├── web13.c │ │ │ │ ├── web14.c │ │ │ │ ├── web15.c │ │ │ │ ├── web16.c │ │ │ │ ├── web17.c │ │ │ │ ├── web18.c │ │ │ │ ├── web19.c │ │ │ │ ├── web2.c │ │ │ │ ├── web20.c │ │ │ │ ├── web21.c │ │ │ │ ├── web3.c │ │ │ │ ├── web4.c │ │ │ │ ├── web5.c │ │ │ │ ├── web6.c │ │ │ │ ├── web7.c │ │ │ │ ├── web8.c │ │ │ │ ├── web9.c │ │ │ │ └── well.c │ │ │ └── short.h │ │ └── test.c │ ├── dumbyroom.c │ ├── elements │ │ └── path │ │ │ └── path1.c │ ├── exchange │ │ ├── exchange.h │ │ ├── horse │ │ │ ├── horse.h │ │ │ ├── mobs │ │ │ │ ├── bunny_girl.c │ │ │ │ └── master_trainer.c │ │ │ ├── obj │ │ │ │ ├── certificate.c │ │ │ │ ├── diamond_spurs.c │ │ │ │ ├── golden_shoes.c │ │ │ │ ├── horse_upgrade.c │ │ │ │ ├── ivory_shoes.c │ │ │ │ ├── obs_spurs.c │ │ │ │ ├── ruby_spurs.c │ │ │ │ ├── sign1.c │ │ │ │ ├── sign2.c │ │ │ │ └── silver_shoes.c │ │ │ ├── rooms │ │ │ │ ├── hall.c │ │ │ │ └── training.c │ │ │ └── storage │ │ │ │ ├── horse_edit.c │ │ │ │ ├── horse_edit_special.c │ │ │ │ ├── horse_master.c │ │ │ │ └── horse_race.season2 │ │ ├── mobs │ │ │ ├── babra.c │ │ │ ├── belanos.c │ │ │ ├── blythe.c │ │ │ ├── dougan.c │ │ │ ├── rorn.c │ │ │ ├── stefanie.c │ │ │ └── watts.c │ │ ├── obj │ │ │ ├── certificate.c │ │ │ └── watts_key.c │ │ ├── prices.h │ │ └── rooms │ │ │ ├── cafe.c │ │ │ ├── entrance.c │ │ │ ├── foyer.c │ │ │ ├── hallway.c │ │ │ ├── hallway2.c │ │ │ ├── healer.c │ │ │ ├── meeting.c │ │ │ └── trading.c │ ├── gboard.c │ ├── keep │ │ └── road │ │ │ ├── bridge1.c │ │ │ ├── entrance1.c │ │ │ ├── entrance2.c │ │ │ ├── road1.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road2.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ └── road9.c │ ├── kinaro │ │ ├── armor.c │ │ ├── armors │ │ ├── bank.c │ │ ├── bar.c │ │ ├── church.c │ │ ├── defs.h │ │ ├── general.c │ │ ├── guard1.c │ │ ├── guard2.c │ │ ├── guard3.c │ │ ├── guard4.c │ │ ├── guard5.c │ │ ├── healer.c │ │ ├── layout │ │ ├── mines │ │ │ ├── elevator.c │ │ │ ├── lower1a.c │ │ │ ├── lower1b.c │ │ │ ├── lower1c.c │ │ │ ├── lower1d.c │ │ │ ├── lower1e.c │ │ │ ├── lower1f.c │ │ │ ├── lower1g.c │ │ │ ├── lower1h.c │ │ │ ├── lower1i.c │ │ │ ├── lower1j.c │ │ │ ├── lower1k.c │ │ │ ├── lower1l.c │ │ │ ├── lower1m.c │ │ │ ├── lower2a.c │ │ │ ├── lower2b.c │ │ │ ├── lower2c.c │ │ │ ├── lower2d.c │ │ │ ├── lower2e.c │ │ │ ├── lower2f.c │ │ │ ├── lower2g.c │ │ │ ├── lower2h.c │ │ │ ├── lower2i.c │ │ │ ├── lower2j.c │ │ │ ├── lower2k.c │ │ │ ├── lower2l.c │ │ │ ├── lower2m.c │ │ │ ├── lower2n.c │ │ │ ├── lower2o.c │ │ │ ├── lower2p.c │ │ │ ├── lower2q.c │ │ │ ├── mines0.c │ │ │ ├── mines1.c │ │ │ ├── mines2.c │ │ │ ├── mines3.c │ │ │ ├── mines4.c │ │ │ ├── mines5.c │ │ │ ├── mines6.c │ │ │ ├── mines7.c │ │ │ ├── mines8.c │ │ │ ├── mines9.c │ │ │ ├── shaft0.c │ │ │ ├── shaft1a.c │ │ │ ├── shaft1b.c │ │ │ ├── shaft1c.c │ │ │ ├── shaft1d.c │ │ │ ├── shaft1e.c │ │ │ ├── shaft1f.c │ │ │ ├── shaft1g.c │ │ │ ├── shaft1h.c │ │ │ ├── shaft1i.c │ │ │ ├── shaft1j.c │ │ │ ├── shaft1k.c │ │ │ ├── shaft1l.c │ │ │ ├── shaft1m.c │ │ │ ├── shaft1n.c │ │ │ ├── shaft1o.c │ │ │ ├── shaft1p.c │ │ │ ├── shaft1q.c │ │ │ ├── shaft1r.c │ │ │ ├── shaft1s.c │ │ │ ├── shaft1t.c │ │ │ ├── shaft1u.c │ │ │ ├── shaft1v.c │ │ │ ├── shaft1w.c │ │ │ ├── shaft1x.c │ │ │ ├── shaft1y.c │ │ │ ├── shaft1z.c │ │ │ ├── shaft2a.c │ │ │ ├── shaft2b.c │ │ │ ├── shaft2c.c │ │ │ ├── shaft2d.c │ │ │ ├── shaft2e.c │ │ │ ├── shaft2f.c │ │ │ ├── shaft2g.c │ │ │ ├── shaft2h.c │ │ │ ├── shaft3a.c │ │ │ ├── shaft3b.c │ │ │ ├── shaft3c.c │ │ │ └── shaft3d.c │ │ ├── mon │ │ │ ├── barkeep.c │ │ │ ├── barkeep2.c │ │ │ ├── dulag.c │ │ │ ├── eirik.c │ │ │ ├── gake.c │ │ │ ├── guard1.c │ │ │ ├── kort.c │ │ │ ├── noranat.c │ │ │ ├── sheas.c │ │ │ ├── stegg.c │ │ │ └── tora.c │ │ ├── obj │ │ │ ├── armors │ │ │ │ ├── buckler.c │ │ │ │ ├── sbanded.c │ │ │ │ ├── sbronze.c │ │ │ │ ├── schain.c │ │ │ │ ├── sfullplate.c │ │ │ │ ├── shield.c │ │ │ │ ├── sleather.c │ │ │ │ ├── spadded.c │ │ │ │ ├── sring.c │ │ │ │ ├── sscale.c │ │ │ │ └── sshield.c │ │ │ ├── crysaxe.c │ │ │ ├── cryssword.c │ │ │ ├── palisade.c │ │ │ ├── silvchain.c │ │ │ └── silvplate.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── revenue.c │ │ ├── spire.c │ │ ├── storage │ │ │ ├── a_storage.c │ │ │ ├── gs_storage.c │ │ │ ├── lower.c │ │ │ ├── shaft.c │ │ │ ├── tunnel.c │ │ │ └── w_storage.c │ │ ├── street1.c │ │ ├── street2.c │ │ ├── street3.c │ │ ├── street4.c │ │ ├── street5.c │ │ ├── tower1.c │ │ ├── tower2.c │ │ └── weap.c │ ├── lib_room.c │ ├── lost │ │ ├── drow │ │ │ ├── armorshop.c │ │ │ ├── bunkhouse.c │ │ │ ├── city11.c │ │ │ ├── city33.c │ │ │ ├── city38.c │ │ │ ├── city39.c │ │ │ ├── city_.c │ │ │ ├── city__.c │ │ │ ├── city___.c │ │ │ ├── court_.c │ │ │ ├── file~1.006 │ │ │ ├── file~3.004 │ │ │ ├── file~5.005 │ │ │ ├── file~6.005 │ │ │ ├── file~7.004 │ │ │ ├── file~7.005 │ │ │ ├── mixed.c │ │ │ ├── mixed1.c │ │ │ ├── slave4.c │ │ │ ├── slave6.c │ │ │ ├── temple.c │ │ │ ├── tun1.c │ │ │ └── twr_.c │ │ └── mon │ │ │ ├── bagheera.c │ │ │ ├── sirkoth.c │ │ │ └── zokrath.c │ ├── marsh │ │ ├── items │ │ │ ├── armor │ │ │ │ ├── hide.c │ │ │ │ ├── scale.c │ │ │ │ └── shield.c │ │ │ └── wpns │ │ │ │ ├── falchion.c │ │ │ │ ├── fauchard.c │ │ │ │ ├── spear.c │ │ │ │ └── warhammer.c │ │ ├── keep │ │ │ ├── mar1.c │ │ │ ├── mon │ │ │ │ ├── nest.c │ │ │ │ └── oguard.c │ │ │ └── rooms │ │ │ │ ├── draw.c │ │ │ │ ├── gate.c │ │ │ │ └── ward1.c │ │ ├── marsh1.c │ │ ├── mon │ │ │ ├── bugbear.c │ │ │ ├── bulywug1.c │ │ │ ├── bulywug2.c │ │ │ └── shambler.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── path4.c │ │ ├── path5.c │ │ ├── path6.c │ │ ├── path7.c │ │ ├── path8.c │ │ ├── swamp │ │ │ ├── fear_inherit.c │ │ │ ├── marsh.h │ │ │ ├── marsh_inherit.c │ │ │ ├── mon │ │ │ │ ├── banshee.c │ │ │ │ ├── boa.c │ │ │ │ ├── bog.c │ │ │ │ ├── bogger.c │ │ │ │ ├── calf.c │ │ │ │ ├── harv.c │ │ │ │ ├── lizard.c │ │ │ │ ├── locust.c │ │ │ │ ├── lurker.c │ │ │ │ ├── mound.c │ │ │ │ ├── reaver.c │ │ │ │ ├── thing.c │ │ │ │ └── uncle.c │ │ │ ├── old │ │ │ │ ├── Mrooms.c │ │ │ │ ├── mon │ │ │ │ │ ├── banshee.c │ │ │ │ │ ├── boa.c │ │ │ │ │ ├── bog.c │ │ │ │ │ ├── bogger.c │ │ │ │ │ ├── calf.c │ │ │ │ │ ├── harv.c │ │ │ │ │ ├── lizard.c │ │ │ │ │ ├── locust.c │ │ │ │ │ ├── mound.c │ │ │ │ │ ├── reaver.c │ │ │ │ │ ├── thing.c │ │ │ │ │ └── uncle.c │ │ │ │ └── rooms │ │ │ │ │ ├── f1.c │ │ │ │ │ ├── f10.c │ │ │ │ │ ├── f11.c │ │ │ │ │ ├── f12.c │ │ │ │ │ ├── f13.c │ │ │ │ │ ├── f14.c │ │ │ │ │ ├── f15.c │ │ │ │ │ ├── f16.c │ │ │ │ │ ├── f17.c │ │ │ │ │ ├── f18.c │ │ │ │ │ ├── f19.c │ │ │ │ │ ├── f2.c │ │ │ │ │ ├── f20.c │ │ │ │ │ ├── f21.c │ │ │ │ │ ├── f22.c │ │ │ │ │ ├── f23.c │ │ │ │ │ ├── f24.c │ │ │ │ │ ├── f25.c │ │ │ │ │ ├── f26.c │ │ │ │ │ ├── f27.c │ │ │ │ │ ├── f28.c │ │ │ │ │ ├── f29.c │ │ │ │ │ ├── f3.c │ │ │ │ │ ├── f4.c │ │ │ │ │ ├── f5.c │ │ │ │ │ ├── f6.c │ │ │ │ │ ├── f7.c │ │ │ │ │ ├── f8.c │ │ │ │ │ ├── f9.c │ │ │ │ │ ├── m1.c │ │ │ │ │ ├── m10.c │ │ │ │ │ ├── m11.c │ │ │ │ │ ├── m12.c │ │ │ │ │ ├── m13.c │ │ │ │ │ ├── m14.c │ │ │ │ │ ├── m15.c │ │ │ │ │ ├── m16.c │ │ │ │ │ ├── m17.c │ │ │ │ │ ├── m18.c │ │ │ │ │ ├── m19.c │ │ │ │ │ ├── m2.c │ │ │ │ │ ├── m20.c │ │ │ │ │ ├── m21.c │ │ │ │ │ ├── m22.c │ │ │ │ │ ├── m23.c │ │ │ │ │ ├── m24.c │ │ │ │ │ ├── m25.c │ │ │ │ │ ├── m26.c │ │ │ │ │ ├── m27.c │ │ │ │ │ ├── m28.c │ │ │ │ │ ├── m29.c │ │ │ │ │ ├── m3.c │ │ │ │ │ ├── m30.c │ │ │ │ │ ├── m31.c │ │ │ │ │ ├── m32.c │ │ │ │ │ ├── m33.c │ │ │ │ │ ├── m34.c │ │ │ │ │ ├── m35.c │ │ │ │ │ ├── m36.c │ │ │ │ │ ├── m37.c │ │ │ │ │ ├── m38.c │ │ │ │ │ ├── m39.c │ │ │ │ │ ├── m4.c │ │ │ │ │ ├── m40.c │ │ │ │ │ ├── m41.c │ │ │ │ │ ├── m42.c │ │ │ │ │ ├── m43.c │ │ │ │ │ ├── m44.c │ │ │ │ │ ├── m5.c │ │ │ │ │ ├── m6.c │ │ │ │ │ ├── m7.c │ │ │ │ │ ├── m8.c │ │ │ │ │ └── m9.c │ │ │ └── rooms │ │ │ │ ├── f_n001_p000.c │ │ │ │ ├── f_n001_p001.c │ │ │ │ ├── f_n001_p002.c │ │ │ │ ├── f_n001_p003.c │ │ │ │ ├── f_n001_p004.c │ │ │ │ ├── f_n001_p005.c │ │ │ │ ├── f_n001_p006.c │ │ │ │ ├── f_n001_p007.c │ │ │ │ ├── f_n001_p008.c │ │ │ │ ├── f_n002_p001.c │ │ │ │ ├── f_n002_p002.c │ │ │ │ ├── f_n002_p003.c │ │ │ │ ├── f_n002_p004.c │ │ │ │ ├── f_n002_p005.c │ │ │ │ ├── f_n002_p006.c │ │ │ │ ├── f_n002_p007.c │ │ │ │ ├── f_n003_p001.c │ │ │ │ ├── f_n003_p002.c │ │ │ │ ├── f_n003_p003.c │ │ │ │ ├── f_n003_p004.c │ │ │ │ ├── f_n003_p005.c │ │ │ │ ├── f_n003_p006.c │ │ │ │ ├── f_n003_p007.c │ │ │ │ ├── f_n004_p001.c │ │ │ │ ├── f_n004_p002.c │ │ │ │ ├── f_n004_p003.c │ │ │ │ ├── f_n004_p004.c │ │ │ │ ├── f_n004_p005.c │ │ │ │ ├── f_n004_p006.c │ │ │ │ ├── f_n004_p007.c │ │ │ │ ├── f_n005_p000.c │ │ │ │ ├── f_n005_p001.c │ │ │ │ ├── f_n005_p002.c │ │ │ │ ├── f_n005_p003.c │ │ │ │ ├── f_n005_p004.c │ │ │ │ ├── f_n005_p005.c │ │ │ │ ├── f_n005_p006.c │ │ │ │ ├── f_n005_p007.c │ │ │ │ ├── f_n006_p000.c │ │ │ │ ├── f_n006_p001.c │ │ │ │ ├── f_n006_p002.c │ │ │ │ ├── f_n006_p003.c │ │ │ │ ├── f_n006_p004.c │ │ │ │ ├── f_n006_p005.c │ │ │ │ ├── f_n006_p006.c │ │ │ │ ├── f_n006_p007.c │ │ │ │ ├── f_n007_n001.c │ │ │ │ ├── f_n007_n002.c │ │ │ │ ├── f_n007_n003.c │ │ │ │ ├── f_n007_p000.c │ │ │ │ ├── f_n007_p001.c │ │ │ │ ├── f_n007_p002.c │ │ │ │ ├── f_n007_p003.c │ │ │ │ ├── f_n007_p004.c │ │ │ │ ├── f_n007_p005.c │ │ │ │ ├── f_n007_p006.c │ │ │ │ ├── f_n008_n001.c │ │ │ │ ├── f_n008_n002.c │ │ │ │ ├── f_n008_p000.c │ │ │ │ ├── f_n008_p001.c │ │ │ │ ├── f_n008_p002.c │ │ │ │ ├── f_n008_p003.c │ │ │ │ ├── f_n008_p004.c │ │ │ │ ├── f_n008_p005.c │ │ │ │ ├── f_n008_p006.c │ │ │ │ ├── f_n009_n001.c │ │ │ │ ├── f_n009_n002.c │ │ │ │ ├── f_n009_n003.c │ │ │ │ ├── f_n009_p001.c │ │ │ │ ├── f_n009_p002.c │ │ │ │ ├── f_n009_p003.c │ │ │ │ ├── f_n010_n002.c │ │ │ │ ├── f_n010_n003.c │ │ │ │ ├── f_n010_p001.c │ │ │ │ ├── f_n010_p002.c │ │ │ │ ├── f_n010_p003.c │ │ │ │ ├── f_p000_p003.c │ │ │ │ ├── f_p000_p004.c │ │ │ │ ├── f_p000_p005.c │ │ │ │ ├── f_p000_p006.c │ │ │ │ ├── f_p000_p007.c │ │ │ │ ├── f_p001_p004.c │ │ │ │ ├── f_p001_p005.c │ │ │ │ ├── m_n001_n001.c │ │ │ │ ├── m_n001_n004.c │ │ │ │ ├── m_n001_n007.c │ │ │ │ ├── m_n001_n008.c │ │ │ │ ├── m_n001_n009.c │ │ │ │ ├── m_n001_n011.c │ │ │ │ ├── m_n001_n012.c │ │ │ │ ├── m_n001_n013.c │ │ │ │ ├── m_n001_p005.c │ │ │ │ ├── m_n002_n002.c │ │ │ │ ├── m_n002_n003.c │ │ │ │ ├── m_n002_n005.c │ │ │ │ ├── m_n002_n006.c │ │ │ │ ├── m_n002_n008.c │ │ │ │ ├── m_n002_n010.c │ │ │ │ ├── m_n002_n011.c │ │ │ │ ├── m_n002_n013.c │ │ │ │ ├── m_n003_n004.c │ │ │ │ ├── m_n003_n008.c │ │ │ │ ├── m_n003_n009.c │ │ │ │ ├── m_n003_n011.c │ │ │ │ ├── m_n003_n012.c │ │ │ │ ├── m_n004_n005.c │ │ │ │ ├── m_n004_n007.c │ │ │ │ ├── m_n004_n011.c │ │ │ │ ├── m_n004_n013.c │ │ │ │ ├── m_n005_n004.c │ │ │ │ ├── m_n005_n005.c │ │ │ │ ├── m_n005_n006.c │ │ │ │ ├── m_n005_n007.c │ │ │ │ ├── m_n005_n008.c │ │ │ │ ├── m_n005_n010.c │ │ │ │ ├── m_n005_n011.c │ │ │ │ ├── m_n005_n012.c │ │ │ │ ├── m_n005_n013.c │ │ │ │ ├── m_n006_n003.c │ │ │ │ ├── m_n006_n004.c │ │ │ │ ├── m_n006_n006.c │ │ │ │ ├── m_n006_n008.c │ │ │ │ ├── m_n006_n009.c │ │ │ │ ├── m_n006_n011.c │ │ │ │ ├── m_n006_n012.c │ │ │ │ ├── m_n007_n004.c │ │ │ │ ├── m_n007_n005.c │ │ │ │ ├── m_n007_n007.c │ │ │ │ ├── m_n007_n008.c │ │ │ │ ├── m_n007_n009.c │ │ │ │ ├── m_n007_n010.c │ │ │ │ ├── m_n007_n013.c │ │ │ │ ├── m_n008_n005.c │ │ │ │ ├── m_n008_n006.c │ │ │ │ ├── m_n008_n007.c │ │ │ │ ├── m_n008_n008.c │ │ │ │ ├── m_n008_n009.c │ │ │ │ ├── m_n008_n010.c │ │ │ │ ├── m_n008_n011.c │ │ │ │ ├── m_n008_n013.c │ │ │ │ ├── m_n009_n007.c │ │ │ │ ├── m_n009_n010.c │ │ │ │ ├── m_n009_n011.c │ │ │ │ ├── m_n009_n012.c │ │ │ │ ├── m_n009_n013.c │ │ │ │ ├── m_n010_n008.c │ │ │ │ ├── m_n010_n009.c │ │ │ │ ├── m_n010_n010.c │ │ │ │ ├── m_n010_n012.c │ │ │ │ ├── m_n010_n013.c │ │ │ │ ├── m_n011_n011.c │ │ │ │ ├── m_n011_n012.c │ │ │ │ ├── m_n011_n013.c │ │ │ │ ├── m_p000_n001.c │ │ │ │ ├── m_p000_n002.c │ │ │ │ ├── m_p000_n004.c │ │ │ │ ├── m_p000_n005.c │ │ │ │ ├── m_p000_n006.c │ │ │ │ ├── m_p000_n007.c │ │ │ │ ├── m_p000_n008.c │ │ │ │ ├── m_p000_n010.c │ │ │ │ ├── m_p000_n011.c │ │ │ │ ├── m_p000_p000.c │ │ │ │ ├── m_p000_p003.c │ │ │ │ ├── m_p000_p004.c │ │ │ │ ├── m_p001_n002.c │ │ │ │ ├── m_p001_n005.c │ │ │ │ ├── m_p001_n007.c │ │ │ │ ├── m_p001_n008.c │ │ │ │ ├── m_p001_n009.c │ │ │ │ ├── m_p001_n010.c │ │ │ │ ├── m_p001_p001.c │ │ │ │ ├── m_p001_p002.c │ │ │ │ ├── m_p001_p003.c │ │ │ │ ├── m_p002_n002.c │ │ │ │ ├── m_p002_n003.c │ │ │ │ ├── m_p002_n004.c │ │ │ │ ├── m_p002_n006.c │ │ │ │ ├── m_p002_n008.c │ │ │ │ ├── m_p002_n009.c │ │ │ │ ├── m_p002_p000.c │ │ │ │ ├── m_p002_p002.c │ │ │ │ ├── m_p003_n001.c │ │ │ │ ├── m_p003_n005.c │ │ │ │ ├── m_p003_n006.c │ │ │ │ ├── m_p003_n007.c │ │ │ │ ├── m_p003_n009.c │ │ │ │ ├── m_p003_p000.c │ │ │ │ ├── m_p003_p003.c │ │ │ │ ├── m_p004_n001.c │ │ │ │ ├── m_p004_n004.c │ │ │ │ ├── m_p004_n005.c │ │ │ │ ├── m_p004_n007.c │ │ │ │ ├── m_p004_n008.c │ │ │ │ ├── m_p004_n009.c │ │ │ │ ├── m_p004_n010.c │ │ │ │ ├── m_p004_p002.c │ │ │ │ ├── m_p004_p004.c │ │ │ │ ├── m_p005_n001.c │ │ │ │ ├── m_p005_n002.c │ │ │ │ ├── m_p005_n003.c │ │ │ │ ├── m_p005_n005.c │ │ │ │ ├── m_p005_n006.c │ │ │ │ ├── m_p005_n011.c │ │ │ │ ├── m_p005_p000.c │ │ │ │ ├── m_p005_p001.c │ │ │ │ ├── m_p006_n001.c │ │ │ │ ├── m_p006_n002.c │ │ │ │ ├── m_p006_n003.c │ │ │ │ ├── m_p006_n004.c │ │ │ │ ├── m_p006_n006.c │ │ │ │ ├── m_p006_n007.c │ │ │ │ ├── m_p006_n010.c │ │ │ │ ├── m_p006_n011.c │ │ │ │ ├── m_p006_p000.c │ │ │ │ ├── m_p006_p001.c │ │ │ │ ├── m_p006_p002.c │ │ │ │ ├── m_p007_n002.c │ │ │ │ ├── m_p007_n003.c │ │ │ │ ├── m_p007_n004.c │ │ │ │ ├── m_p007_n007.c │ │ │ │ ├── m_p007_n008.c │ │ │ │ ├── m_p007_n009.c │ │ │ │ ├── m_p007_n010.c │ │ │ │ ├── m_p007_n011.c │ │ │ │ ├── m_p007_p000.c │ │ │ │ ├── m_p007_p002.c │ │ │ │ ├── m_p007_p003.c │ │ │ │ ├── m_p008_n001.c │ │ │ │ ├── m_p008_n002.c │ │ │ │ ├── m_p008_n003.c │ │ │ │ ├── m_p008_n004.c │ │ │ │ ├── m_p008_n007.c │ │ │ │ ├── m_p008_n008.c │ │ │ │ ├── m_p008_p000.c │ │ │ │ ├── m_p008_p001.c │ │ │ │ ├── m_p008_p002.c │ │ │ │ ├── m_p008_p003.c │ │ │ │ ├── m_p009_n001.c │ │ │ │ ├── m_p009_n002.c │ │ │ │ ├── m_p009_n004.c │ │ │ │ ├── m_p009_n005.c │ │ │ │ ├── m_p009_n006.c │ │ │ │ ├── m_p009_n007.c │ │ │ │ ├── m_p009_n009.c │ │ │ │ ├── m_p009_p000.c │ │ │ │ ├── m_p009_p002.c │ │ │ │ ├── m_p010_n001.c │ │ │ │ ├── m_p010_n003.c │ │ │ │ ├── m_p010_n004.c │ │ │ │ ├── m_p010_n005.c │ │ │ │ ├── m_p010_p000.c │ │ │ │ ├── m_p010_p001.c │ │ │ │ ├── m_p011_n001.c │ │ │ │ ├── m_p011_n002.c │ │ │ │ ├── m_p011_n003.c │ │ │ │ └── m_p011_n004.c │ │ ├── tomb │ │ │ ├── rooms │ │ │ │ └── h1.c │ │ │ └── short.h │ │ ├── tower │ │ │ ├── Troom.c │ │ │ ├── mon │ │ │ │ ├── angel.c │ │ │ │ ├── arest.c │ │ │ │ ├── baba.c │ │ │ │ ├── bat.c │ │ │ │ ├── child1.c │ │ │ │ ├── child2.c │ │ │ │ ├── child3.c │ │ │ │ ├── dragon.c │ │ │ │ ├── ginsu.c │ │ │ │ ├── golem.c │ │ │ │ ├── grimmy.c │ │ │ │ ├── knight.c │ │ │ │ ├── krykoth.c │ │ │ │ ├── morlock.c │ │ │ │ ├── nico.c │ │ │ │ ├── reaver1.c │ │ │ │ ├── reaver2.c │ │ │ │ ├── reaver3.c │ │ │ │ ├── reaver4.c │ │ │ │ ├── reaver5.c │ │ │ │ ├── reaver6.c │ │ │ │ ├── reaver7.c │ │ │ │ ├── reaverB.c │ │ │ │ ├── render.c │ │ │ │ ├── scythe_shadow.c │ │ │ │ ├── shadow.c │ │ │ │ ├── shadows.c │ │ │ │ ├── stalker.c │ │ │ │ ├── vampyre.c │ │ │ │ ├── vecna.c │ │ │ │ └── wraith.c │ │ │ ├── obj │ │ │ │ ├── amulet.c │ │ │ │ ├── avenger.c │ │ │ │ ├── axe.c │ │ │ │ ├── bag.c │ │ │ │ ├── blood.c │ │ │ │ ├── bracelet.c │ │ │ │ ├── castershoes.c │ │ │ │ ├── chaos.c │ │ │ │ ├── coif.c │ │ │ │ ├── dagger_sarfice.c │ │ │ │ ├── dart1.c │ │ │ │ ├── dart2.c │ │ │ │ ├── dart3.c │ │ │ │ ├── dsobj.c │ │ │ │ ├── eye.c │ │ │ │ ├── figurin1.c │ │ │ │ ├── figurin2.c │ │ │ │ ├── flute.c │ │ │ │ ├── fullnote.c │ │ │ │ ├── gem1.c │ │ │ │ ├── gem2.c │ │ │ │ ├── gem3.c │ │ │ │ ├── gem4.c │ │ │ │ ├── gem5.c │ │ │ │ ├── god.c │ │ │ │ ├── greater_scythe.c │ │ │ │ ├── hand.c │ │ │ │ ├── handLOG │ │ │ │ ├── justice.c │ │ │ │ ├── mistkey.c │ │ │ │ ├── note1.c │ │ │ │ ├── note2.c │ │ │ │ ├── note3.c │ │ │ │ ├── note4.c │ │ │ │ ├── plate.c │ │ │ │ ├── psicirclet.c │ │ │ │ ├── rending.c │ │ │ │ ├── ring.c │ │ │ │ ├── robe.c │ │ │ │ ├── rod.c │ │ │ │ ├── ruby.c │ │ │ │ ├── scrap1.c │ │ │ │ ├── scrap2.c │ │ │ │ ├── scrap3.c │ │ │ │ ├── scrap4.c │ │ │ │ ├── scythe.c │ │ │ │ ├── sdagger.c │ │ │ │ ├── shadowbracers.c │ │ │ │ ├── shadowclaws.c │ │ │ │ ├── shclaws.c │ │ │ │ ├── shclaws2.c │ │ │ │ ├── shield.c │ │ │ │ ├── sorrow.c │ │ │ │ ├── speedboots.c │ │ │ │ ├── stag_leather.c │ │ │ │ ├── stone.c │ │ │ │ ├── storm.c │ │ │ │ ├── stormvest.c │ │ │ │ ├── tablet.c │ │ │ │ ├── tooth.c │ │ │ │ ├── tranquil.c │ │ │ │ ├── uncoif.c │ │ │ │ ├── unholy.c │ │ │ │ ├── unplate.c │ │ │ │ ├── unshield.c │ │ │ │ └── woodlandarmor.c │ │ │ ├── rooms │ │ │ │ ├── a1.c │ │ │ │ ├── a10.c │ │ │ │ ├── a11.c │ │ │ │ ├── a12.c │ │ │ │ ├── a13.c │ │ │ │ ├── a2.c │ │ │ │ ├── a3.c │ │ │ │ ├── a4.c │ │ │ │ ├── a5.c │ │ │ │ ├── a6.c │ │ │ │ ├── a7.c │ │ │ │ ├── a8.c │ │ │ │ ├── a9.c │ │ │ │ ├── b1.c │ │ │ │ ├── b10.c │ │ │ │ ├── b11.c │ │ │ │ ├── b12.c │ │ │ │ ├── b13.c │ │ │ │ ├── b14.c │ │ │ │ ├── b2.c │ │ │ │ ├── b3.c │ │ │ │ ├── b4.c │ │ │ │ ├── b5.c │ │ │ │ ├── b6.c │ │ │ │ ├── b7.c │ │ │ │ ├── b8.c │ │ │ │ ├── b9.c │ │ │ │ ├── c1.c │ │ │ │ ├── c10.c │ │ │ │ ├── c11.c │ │ │ │ ├── c2.c │ │ │ │ ├── c3.c │ │ │ │ ├── c4.c │ │ │ │ ├── c5.c │ │ │ │ ├── c6.c │ │ │ │ ├── c7.c │ │ │ │ ├── c8.c │ │ │ │ ├── c9.c │ │ │ │ ├── d1.c │ │ │ │ ├── d10.c │ │ │ │ ├── d11.c │ │ │ │ ├── d12.c │ │ │ │ ├── d2.c │ │ │ │ ├── d3.c │ │ │ │ ├── d4.c │ │ │ │ ├── d5.c │ │ │ │ ├── d6.c │ │ │ │ ├── d7.c │ │ │ │ ├── d8.c │ │ │ │ ├── d9.c │ │ │ │ ├── drop1.c │ │ │ │ ├── drop2.c │ │ │ │ ├── drop3.c │ │ │ │ ├── drop4.c │ │ │ │ ├── e1.c │ │ │ │ ├── e10.c │ │ │ │ ├── e11.c │ │ │ │ ├── e12.c │ │ │ │ ├── e13.c │ │ │ │ ├── e14.c │ │ │ │ ├── e2.c │ │ │ │ ├── e3.c │ │ │ │ ├── e4.c │ │ │ │ ├── e5.c │ │ │ │ ├── e6.c │ │ │ │ ├── e7.c │ │ │ │ ├── e8.c │ │ │ │ ├── e9.c │ │ │ │ ├── fog1.c │ │ │ │ ├── gate.c │ │ │ │ ├── s1.c │ │ │ │ ├── s10.c │ │ │ │ ├── s11.c │ │ │ │ ├── s12.c │ │ │ │ ├── s13.c │ │ │ │ ├── s14.c │ │ │ │ ├── s15.c │ │ │ │ ├── s16.c │ │ │ │ ├── s17.c │ │ │ │ ├── s18.c │ │ │ │ ├── s19.c │ │ │ │ ├── s2.c │ │ │ │ ├── s20.c │ │ │ │ ├── s21.c │ │ │ │ ├── s3.c │ │ │ │ ├── s4.c │ │ │ │ ├── s5.c │ │ │ │ ├── s6.c │ │ │ │ ├── s7.c │ │ │ │ ├── s8.c │ │ │ │ ├── s9.c │ │ │ │ └── stair1.c │ │ │ └── short.h │ │ └── witchlair │ │ │ ├── base │ │ │ ├── clearing_inherit.c │ │ │ ├── grove_inh2.c │ │ │ ├── grove_inherit.c │ │ │ └── root_inherit.c │ │ │ ├── mon │ │ │ ├── disbeast.c │ │ │ ├── goblin1.c │ │ │ ├── goblin2.c │ │ │ ├── goblin3.c │ │ │ ├── shaman.c │ │ │ ├── viik.c │ │ │ └── witch.c │ │ │ ├── obj │ │ │ ├── bonestaff.c │ │ │ ├── journal.c │ │ │ ├── key.c │ │ │ ├── keyshard.c │ │ │ ├── neckbiter.c │ │ │ ├── note.c │ │ │ ├── ratskull.c │ │ │ └── shaunneck.c │ │ │ ├── rooms │ │ │ ├── archway.c │ │ │ ├── clearing1.c │ │ │ ├── clearing2.c │ │ │ ├── clearing3.c │ │ │ ├── clearing4.c │ │ │ ├── clearing5.c │ │ │ ├── clearing6.c │ │ │ ├── clearing7.c │ │ │ ├── clearing8.c │ │ │ ├── clearing9.c │ │ │ ├── grove1.c │ │ │ ├── grove10.c │ │ │ ├── grove2.c │ │ │ ├── grove3.c │ │ │ ├── grove4.c │ │ │ ├── grove5.c │ │ │ ├── grove6.c │ │ │ ├── grove7.c │ │ │ ├── grove8.c │ │ │ ├── grove9.c │ │ │ ├── hut.c │ │ │ ├── hutentry.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── roots.c │ │ │ ├── roots2.c │ │ │ ├── roots3.c │ │ │ ├── roots4.c │ │ │ ├── roots5.c │ │ │ ├── roots6.c │ │ │ ├── roots7.c │ │ │ ├── roots8.c │ │ │ ├── shamanlair.c │ │ │ ├── viikcave.c │ │ │ └── viikcave_luj.c │ │ │ └── witchlair.h │ ├── monsters.h │ ├── nurval │ │ ├── inherit │ │ │ ├── necropolis.c │ │ │ └── tombstreet.c │ │ ├── mazemaker.c │ │ ├── mon │ │ │ ├── baker.c │ │ │ ├── banshee.c │ │ │ ├── bonewyvern.c │ │ │ ├── hehet.c │ │ │ ├── inkeep.c │ │ │ ├── kapriz.c │ │ │ ├── necroknight.c │ │ │ └── shiza.c │ │ ├── obj │ │ │ └── entrysign.c │ │ ├── room │ │ │ ├── bakery.c │ │ │ ├── bank.c │ │ │ ├── fountain.c │ │ │ ├── fountain2.c │ │ │ ├── healer.c │ │ │ ├── inn.c │ │ │ ├── mage_lab.c │ │ │ ├── necro1.c │ │ │ ├── necro10.c │ │ │ ├── necro11.c │ │ │ ├── necro12.c │ │ │ ├── necro13.c │ │ │ ├── necro14.c │ │ │ ├── necro15.c │ │ │ ├── necro16.c │ │ │ ├── necro17.c │ │ │ ├── necro18.c │ │ │ ├── necro19.c │ │ │ ├── necro2.c │ │ │ ├── necro20.c │ │ │ ├── necro21.c │ │ │ ├── necro22.c │ │ │ ├── necro23.c │ │ │ ├── necro24.c │ │ │ ├── necro25.c │ │ │ ├── necro26.c │ │ │ ├── necro27.c │ │ │ ├── necro28.c │ │ │ ├── necro29.c │ │ │ ├── necro3.c │ │ │ ├── necro30.c │ │ │ ├── necro31.c │ │ │ ├── necro32.c │ │ │ ├── necro33.c │ │ │ ├── necro34.c │ │ │ ├── necro35.c │ │ │ ├── necro36.c │ │ │ ├── necro4.c │ │ │ ├── necro5.c │ │ │ ├── necro6.c │ │ │ ├── necro7.c │ │ │ ├── necro8.c │ │ │ ├── necro9.c │ │ │ ├── observatory.c │ │ │ ├── shrine.c │ │ │ ├── smithy.c │ │ │ ├── spellwarden.c │ │ │ ├── tomb1.c │ │ │ ├── tomb2.c │ │ │ ├── tomb3.c │ │ │ ├── tomb4.c │ │ │ ├── tomb5.c │ │ │ ├── tomb6.c │ │ │ ├── tomb7.c │ │ │ ├── tomb8.c │ │ │ ├── trader.c │ │ │ ├── village.c │ │ │ └── village2.c │ │ ├── rooms │ │ ├── storage │ │ │ └── trader_storage.c │ │ └── tomb.h │ ├── ogres │ │ ├── mobs │ │ │ ├── ahstuz.c │ │ │ ├── balor_demon.c │ │ │ ├── escapee.c │ │ │ ├── maurezhi_demon.c │ │ │ ├── ogre1.c │ │ │ ├── ogre2.c │ │ │ ├── ogre3.c │ │ │ ├── ogre4.c │ │ │ ├── rutterkin_demon.c │ │ │ └── zovvut_demon.c │ │ ├── obj │ │ │ ├── blacksword.c │ │ │ ├── bloodrobe.c │ │ │ ├── bone.c │ │ │ ├── corpse.c │ │ │ ├── corpse2.c │ │ │ ├── demonfork.c │ │ │ ├── doubletflames.c │ │ │ ├── dragoon_greaves.c │ │ │ ├── flame_whip.c │ │ │ ├── flesh_dagger.c │ │ │ ├── malar_studded.c │ │ │ ├── stormshatter.c │ │ │ ├── sune_studded.c │ │ │ ├── talos_greaves.c │ │ │ └── tyr_greaves.c │ │ ├── ogres.h │ │ ├── rooms │ │ │ ├── 0_2.c │ │ │ ├── 1_1.c │ │ │ ├── 1_10.c │ │ │ ├── 1_11.c │ │ │ ├── 1_12.c │ │ │ ├── 1_13.c │ │ │ ├── 1_14.c │ │ │ ├── 1_15.c │ │ │ ├── 1_2.c │ │ │ ├── 1_3.c │ │ │ ├── 1_4.c │ │ │ ├── 1_5.c │ │ │ ├── 1_6.c │ │ │ ├── 1_7.c │ │ │ ├── 1_8.c │ │ │ ├── 1_9.c │ │ │ ├── 2_1.c │ │ │ ├── 2_10.c │ │ │ ├── 2_11.c │ │ │ ├── 2_12.c │ │ │ ├── 2_13.c │ │ │ ├── 2_14.c │ │ │ ├── 2_15.c │ │ │ ├── 2_16.c │ │ │ ├── 2_17.c │ │ │ ├── 2_18.c │ │ │ ├── 2_19.c │ │ │ ├── 2_2.c │ │ │ ├── 2_20.c │ │ │ ├── 2_21.c │ │ │ ├── 2_22.c │ │ │ ├── 2_23.c │ │ │ ├── 2_24.c │ │ │ ├── 2_25.c │ │ │ ├── 2_26.c │ │ │ ├── 2_27.c │ │ │ ├── 2_28.c │ │ │ ├── 2_29.c │ │ │ ├── 2_3.c │ │ │ ├── 2_30.c │ │ │ ├── 2_31.c │ │ │ ├── 2_32.c │ │ │ ├── 2_33.c │ │ │ ├── 2_34.c │ │ │ ├── 2_35.c │ │ │ ├── 2_36.c │ │ │ ├── 2_37.c │ │ │ ├── 2_38.c │ │ │ ├── 2_39.c │ │ │ ├── 2_4.c │ │ │ ├── 2_5.c │ │ │ ├── 2_6.c │ │ │ ├── 2_7.c │ │ │ ├── 2_8.c │ │ │ ├── 2_9.c │ │ │ ├── 3_1.c │ │ │ ├── 3_10.c │ │ │ ├── 3_2.c │ │ │ ├── 3_3.c │ │ │ ├── 3_4.c │ │ │ ├── 3_5.c │ │ │ ├── 3_6.c │ │ │ ├── 3_7.c │ │ │ ├── 3_8.c │ │ │ ├── 3_9.c │ │ │ ├── 3_a.c │ │ │ ├── 3_b.c │ │ │ ├── 3_c.c │ │ │ ├── 3_d.c │ │ │ ├── ogremaze0.c │ │ │ ├── ogremaze1.c │ │ │ ├── ogremaze10.c │ │ │ ├── ogremaze11.c │ │ │ ├── ogremaze12.c │ │ │ ├── ogremaze13.c │ │ │ ├── ogremaze14.c │ │ │ ├── ogremaze15.c │ │ │ ├── ogremaze16.c │ │ │ ├── ogremaze17.c │ │ │ ├── ogremaze18.c │ │ │ ├── ogremaze19.c │ │ │ ├── ogremaze2.c │ │ │ ├── ogremaze20.c │ │ │ ├── ogremaze21.c │ │ │ ├── ogremaze22.c │ │ │ ├── ogremaze23.c │ │ │ ├── ogremaze24.c │ │ │ ├── ogremaze25.c │ │ │ ├── ogremaze26.c │ │ │ ├── ogremaze27.c │ │ │ ├── ogremaze28.c │ │ │ ├── ogremaze29.c │ │ │ ├── ogremaze3.c │ │ │ ├── ogremaze30.c │ │ │ ├── ogremaze31.c │ │ │ ├── ogremaze32.c │ │ │ ├── ogremaze33.c │ │ │ ├── ogremaze34.c │ │ │ ├── ogremaze35.c │ │ │ ├── ogremaze36.c │ │ │ ├── ogremaze37.c │ │ │ ├── ogremaze38.c │ │ │ ├── ogremaze39.c │ │ │ ├── ogremaze4.c │ │ │ ├── ogremaze40.c │ │ │ ├── ogremaze41.c │ │ │ ├── ogremaze42.c │ │ │ ├── ogremaze43.c │ │ │ ├── ogremaze44.c │ │ │ ├── ogremaze45.c │ │ │ ├── ogremaze46.c │ │ │ ├── ogremaze47.c │ │ │ ├── ogremaze48.c │ │ │ ├── ogremaze49.c │ │ │ ├── ogremaze5.c │ │ │ ├── ogremaze50.c │ │ │ ├── ogremaze51.c │ │ │ ├── ogremaze52.c │ │ │ ├── ogremaze53.c │ │ │ ├── ogremaze54.c │ │ │ ├── ogremaze55.c │ │ │ ├── ogremaze6.c │ │ │ ├── ogremaze7.c │ │ │ ├── ogremaze8.c │ │ │ ├── ogremaze9.c │ │ │ └── power.c │ │ └── storage │ │ │ ├── 1st.c │ │ │ ├── 2nd.c │ │ │ └── 3rd.c │ ├── phederia │ │ ├── mon │ │ │ ├── ape.c │ │ │ ├── cow.c │ │ │ ├── crusader.c │ │ │ ├── horse.c │ │ │ ├── knight.c │ │ │ ├── magus.c │ │ │ ├── phederia.c │ │ │ ├── pig.c │ │ │ ├── pskeleton.c │ │ │ ├── purple.c │ │ │ ├── robin.c │ │ │ ├── shaman.c │ │ │ └── stomach.c │ │ ├── obj │ │ │ ├── bardiche.c │ │ │ ├── barmor.c │ │ │ ├── bplate.c │ │ │ ├── fountain.c │ │ │ ├── halberd.c │ │ │ ├── lochebar.c │ │ │ ├── mace.c │ │ │ ├── plochebar.c │ │ │ ├── robe.c │ │ │ └── whip.c │ │ ├── phedefs.h │ │ └── rooms │ │ │ ├── c25.c │ │ │ ├── dead.c │ │ │ ├── h.c │ │ │ ├── h1.c │ │ │ ├── h10.c │ │ │ ├── h11.c │ │ │ ├── h12.c │ │ │ ├── h13.c │ │ │ ├── h14.c │ │ │ ├── h15.c │ │ │ ├── h16.c │ │ │ ├── h17.c │ │ │ ├── h18.c │ │ │ ├── h19.c │ │ │ ├── h2.c │ │ │ ├── h20.c │ │ │ ├── h21.c │ │ │ ├── h22.c │ │ │ ├── h23.c │ │ │ ├── h24.c │ │ │ ├── h25.c │ │ │ ├── h26.c │ │ │ ├── h27.c │ │ │ ├── h28.c │ │ │ ├── h29.c │ │ │ ├── h3.c │ │ │ ├── h30.c │ │ │ ├── h31.c │ │ │ ├── h32.c │ │ │ ├── h33.c │ │ │ ├── h34.c │ │ │ ├── h35.c │ │ │ ├── h36.c │ │ │ ├── h37.c │ │ │ ├── h38.c │ │ │ ├── h39.c │ │ │ ├── h4.c │ │ │ ├── h40.c │ │ │ ├── h41.c │ │ │ ├── h42.c │ │ │ ├── h43.c │ │ │ ├── h44.c │ │ │ ├── h45.c │ │ │ ├── h46.c │ │ │ ├── h47.c │ │ │ ├── h48.c │ │ │ ├── h49.c │ │ │ ├── h5.c │ │ │ ├── h50.c │ │ │ ├── h51.c │ │ │ ├── h52.c │ │ │ ├── h53.c │ │ │ ├── h54.c │ │ │ ├── h55.c │ │ │ ├── h56.c │ │ │ ├── h57.c │ │ │ ├── h58.c │ │ │ ├── h59.c │ │ │ ├── h6.c │ │ │ ├── h60.c │ │ │ ├── h61.c │ │ │ ├── h62.c │ │ │ ├── h63.c │ │ │ ├── h64.c │ │ │ ├── h65.c │ │ │ ├── h66.c │ │ │ ├── h67.c │ │ │ ├── h68.c │ │ │ ├── h69.c │ │ │ ├── h7.c │ │ │ ├── h70.c │ │ │ ├── h71.c │ │ │ ├── h72.c │ │ │ ├── h73.c │ │ │ ├── h74.c │ │ │ ├── h75.c │ │ │ ├── h76.c │ │ │ ├── h77.c │ │ │ ├── h78.c │ │ │ ├── h79.c │ │ │ ├── h8.c │ │ │ ├── h80.c │ │ │ ├── h80.c.c │ │ │ ├── h9.c │ │ │ ├── keep │ │ │ ├── bar.c │ │ │ ├── bat.c │ │ │ ├── k10.c │ │ │ ├── k100.c │ │ │ ├── k101.c │ │ │ ├── k102.c │ │ │ ├── k103.c │ │ │ ├── k104.c │ │ │ ├── k105.c │ │ │ ├── k106.c │ │ │ ├── k107.c │ │ │ ├── k108.c │ │ │ ├── k109.c │ │ │ ├── k11.c │ │ │ ├── k110.c │ │ │ ├── k111.c │ │ │ ├── k112.c │ │ │ ├── k113.c │ │ │ ├── k114.c │ │ │ ├── k115.c │ │ │ ├── k116.c │ │ │ ├── k12.c │ │ │ ├── k13.c │ │ │ ├── k14.c │ │ │ ├── k15.c │ │ │ ├── k16.c │ │ │ ├── k17.c │ │ │ ├── k18.c │ │ │ ├── k19.c │ │ │ ├── k2.c │ │ │ ├── k20.c │ │ │ ├── k21.c │ │ │ ├── k22.c │ │ │ ├── k23.c │ │ │ ├── k24.c │ │ │ ├── k25.c │ │ │ ├── k26.c │ │ │ ├── k27.c │ │ │ ├── k28.c │ │ │ ├── k29.c │ │ │ ├── k3.c │ │ │ ├── k30.c │ │ │ ├── k31.c │ │ │ ├── k32.c │ │ │ ├── k33.c │ │ │ ├── k34.c │ │ │ ├── k35.c │ │ │ ├── k36.c │ │ │ ├── k37.c │ │ │ ├── k38.c │ │ │ ├── k39.c │ │ │ ├── k4.c │ │ │ ├── k40.c │ │ │ ├── k40a.c │ │ │ ├── k41.c │ │ │ ├── k42.c │ │ │ ├── k43.c │ │ │ ├── k44.c │ │ │ ├── k45.c │ │ │ ├── k46.c │ │ │ ├── k47.c │ │ │ ├── k48.c │ │ │ ├── k49.c │ │ │ ├── k5.c │ │ │ ├── k50.c │ │ │ ├── k51.c │ │ │ ├── k52.c │ │ │ ├── k53.c │ │ │ ├── k54.c │ │ │ ├── k55.c │ │ │ ├── k56.c │ │ │ ├── k57.c │ │ │ ├── k58.c │ │ │ ├── k59.c │ │ │ ├── k6.c │ │ │ ├── k60.c │ │ │ ├── k61.c │ │ │ ├── k62.c │ │ │ ├── k63.c │ │ │ ├── k64.c │ │ │ ├── k65.c │ │ │ ├── k66.c │ │ │ ├── k67.c │ │ │ ├── k68.c │ │ │ ├── k69.c │ │ │ ├── k7.c │ │ │ ├── k70.c │ │ │ ├── k71.c │ │ │ ├── k72.c │ │ │ ├── k73.c │ │ │ ├── k74.c │ │ │ ├── k75.c │ │ │ ├── k76.c │ │ │ ├── k77.c │ │ │ ├── k78.c │ │ │ ├── k79.c │ │ │ ├── k8.c │ │ │ ├── k80.c │ │ │ ├── k81.c │ │ │ ├── k82.c │ │ │ ├── k83.c │ │ │ ├── k84.c │ │ │ ├── k85.c │ │ │ ├── k86.c │ │ │ ├── k87.c │ │ │ ├── k88.c │ │ │ ├── k89.c │ │ │ ├── k9.c │ │ │ ├── k90.c │ │ │ ├── k91.c │ │ │ ├── k92.c │ │ │ ├── k93.c │ │ │ ├── k94.c │ │ │ ├── k95.c │ │ │ ├── k96.c │ │ │ ├── k97.c │ │ │ ├── k98.c │ │ │ ├── k99.c │ │ │ └── room.c │ │ │ ├── room.c │ │ │ ├── v1.c │ │ │ ├── v10.c │ │ │ ├── v11.c │ │ │ ├── v12.c │ │ │ ├── v13.c │ │ │ ├── v14.c │ │ │ ├── v15.c │ │ │ ├── v16.c │ │ │ ├── v17.c │ │ │ ├── v18.c │ │ │ ├── v19.c │ │ │ ├── v2.c │ │ │ ├── v20.c │ │ │ ├── v21.c │ │ │ ├── v22.c │ │ │ ├── v23.c │ │ │ ├── v24.c │ │ │ ├── v25.c │ │ │ ├── v26.c │ │ │ ├── v27.c │ │ │ ├── v27a.c │ │ │ ├── v28.c │ │ │ ├── v29.c │ │ │ ├── v3.c │ │ │ ├── v30.c │ │ │ ├── v31.c │ │ │ ├── v32.c │ │ │ ├── v33.c │ │ │ ├── v34.c │ │ │ ├── v35.c │ │ │ ├── v36.c │ │ │ ├── v37.c │ │ │ ├── v38.c │ │ │ ├── v39.c │ │ │ ├── v4.c │ │ │ ├── v40.c │ │ │ ├── v41.c │ │ │ ├── v42.c │ │ │ ├── v43.c │ │ │ ├── v44.c │ │ │ ├── v44b.c │ │ │ ├── v45.c │ │ │ ├── v46.c │ │ │ ├── v47.c │ │ │ ├── v48.c │ │ │ ├── v49.c │ │ │ ├── v5.c │ │ │ ├── v50.c │ │ │ ├── v51.c │ │ │ ├── v52.c │ │ │ ├── v53.c │ │ │ ├── v54.c │ │ │ ├── v54a.c │ │ │ ├── v54b.c │ │ │ ├── v55.c │ │ │ ├── v55a.c │ │ │ ├── v55b.c │ │ │ ├── v56.c │ │ │ ├── v56a.c │ │ │ ├── v56b.c │ │ │ ├── v57.c │ │ │ ├── v57a.c │ │ │ ├── v57b.c │ │ │ ├── v58.c │ │ │ ├── v58a.c │ │ │ ├── v58b.c │ │ │ ├── v59.c │ │ │ ├── v59a.c │ │ │ ├── v59b.c │ │ │ ├── v6.c │ │ │ ├── v60.c │ │ │ ├── v60a.c │ │ │ ├── v60b.c │ │ │ ├── v61.c │ │ │ ├── v61a.c │ │ │ ├── v61b.c │ │ │ ├── v62.c │ │ │ ├── v62a.c │ │ │ ├── v62b.c │ │ │ ├── v63.c │ │ │ ├── v7.c │ │ │ ├── v8.c │ │ │ └── v9.c │ ├── pkboard.c │ ├── planroom.c │ ├── portals.c │ ├── psi │ │ └── obj │ │ │ ├── psicirclet.c │ │ │ └── psirobes.c │ ├── road │ │ ├── bridge.c │ │ ├── bridge2.c │ │ ├── elfglade │ │ │ ├── elfglade1.c │ │ │ ├── elfglade2.c │ │ │ ├── elfglade3.c │ │ │ ├── elfglade4.c │ │ │ └── shrine.c │ │ ├── hut.c │ │ ├── mon │ │ │ ├── btroll.c │ │ │ ├── dummy.c │ │ │ ├── elranger.c │ │ │ ├── elranglead.c │ │ │ ├── hornet.c │ │ │ ├── marmaset.c │ │ │ ├── private.c │ │ │ ├── private1.c │ │ │ ├── private2.c │ │ │ ├── private2b.c │ │ │ ├── sergeant.c │ │ │ ├── thorby.bk2 │ │ │ ├── thorby.c │ │ │ ├── wanguard1.c │ │ │ └── wonder.c │ │ ├── monsters_d.c │ │ ├── obj │ │ │ ├── Lboots.c │ │ │ ├── Maxe+1.c │ │ │ ├── Mbroad+1.c │ │ │ ├── Mchain+1.c │ │ │ ├── Mcoif.c │ │ │ ├── Mhammer+1.c │ │ │ ├── Mlong+1.c │ │ │ ├── Mshield+1.c │ │ │ ├── Wcloak.c │ │ │ ├── broad.c │ │ │ ├── chain.c │ │ │ ├── coif.c │ │ │ ├── elfsword.c │ │ │ ├── longsword.c │ │ │ ├── mshield.c │ │ │ ├── necklace.c │ │ │ ├── newsign.c │ │ │ ├── ruby.c │ │ │ ├── sign.c │ │ │ ├── studded+1.c │ │ │ ├── studded+2.c │ │ │ └── studded+3.c │ │ ├── p1.c │ │ ├── p2.c │ │ ├── p3.c │ │ ├── p4.c │ │ ├── p5.c │ │ ├── p6.c │ │ ├── p7.c │ │ ├── p8.c │ │ ├── road1.c │ │ ├── road10.c │ │ ├── road100.c │ │ ├── road101.c │ │ ├── road102.c │ │ ├── road103.c │ │ ├── road104.c │ │ ├── road105.c │ │ ├── road106.c │ │ ├── road107.c │ │ ├── road108.c │ │ ├── road109.c │ │ ├── road11.c │ │ ├── road110.c │ │ ├── road13.c │ │ ├── road14.c │ │ ├── road15.c │ │ ├── road16.c │ │ ├── road17.c │ │ ├── road18.c │ │ ├── road19.c │ │ ├── road2.c │ │ ├── road20.c │ │ ├── road21.c │ │ ├── road22.c │ │ ├── road23.c │ │ ├── road24.c │ │ ├── road25.c │ │ ├── road26.c │ │ ├── road27.c │ │ ├── road28.c │ │ ├── road29.c │ │ ├── road2b.c │ │ ├── road3.c │ │ ├── road30.c │ │ ├── road31.c │ │ ├── road32.c │ │ ├── road33.c │ │ ├── road34.c │ │ ├── road35.c │ │ ├── road36.c │ │ ├── road37.c │ │ ├── road38.c │ │ ├── road39.c │ │ ├── road4.c │ │ ├── road40.c │ │ ├── road41.c │ │ ├── road42.c │ │ ├── road43.c │ │ ├── road44.c │ │ ├── road45.c │ │ ├── road46.c │ │ ├── road47.c │ │ ├── road48.c │ │ ├── road49.c │ │ ├── road5.c │ │ ├── road50.c │ │ ├── road6.c │ │ ├── road7.c │ │ ├── road8.c │ │ ├── road81.c │ │ ├── road82.c │ │ ├── road83.c │ │ ├── road84.c │ │ ├── road85.c │ │ ├── road86.c │ │ ├── road87.c │ │ ├── road88.c │ │ ├── road89.c │ │ ├── road9.c │ │ ├── road90.c │ │ ├── road91.c │ │ ├── road92.c │ │ ├── road93.c │ │ ├── road94.c │ │ ├── road95.c │ │ ├── road96.c │ │ ├── road97.c │ │ ├── road98.c │ │ ├── road99.c │ │ ├── short.h │ │ ├── stella │ │ │ ├── sroad1.c │ │ │ ├── sroad2.c │ │ │ ├── sroad3.c │ │ │ ├── sroad4.c │ │ │ └── sroad5.c │ │ ├── tempusportal.c │ │ ├── tollbooth.c │ │ ├── tollbooth2.c │ │ ├── tree │ │ │ ├── branch1.c │ │ │ ├── branch2.c │ │ │ ├── branch3.c │ │ │ ├── branch4.c │ │ │ ├── tree1.c │ │ │ └── tree2.c │ │ └── tsrroom.c │ ├── sp_armor.h │ ├── sp_faiths.h │ ├── sp_mundane.h │ ├── sp_other.h │ ├── sp_weapons.h │ ├── spawn_room.c │ ├── stdsboard.c │ ├── suff_ob.c │ ├── temp │ │ ├── lair.c │ │ ├── tun1.c │ │ ├── tun2.c │ │ ├── tun3.c │ │ ├── tun4.c │ │ └── tun5.c │ ├── test │ │ └── e1704.c │ ├── tollroad.c │ ├── tonovi │ │ ├── 1path1.c │ │ ├── 1path2.c │ │ ├── 1path3.c │ │ ├── 1path4.c │ │ ├── 1path5.c │ │ ├── 1path6.c │ │ ├── 1path7.c │ │ ├── 2path1.c │ │ ├── 2path2.c │ │ ├── 2path3.c │ │ ├── 2path4.c │ │ ├── 2path5.c │ │ ├── antipath1.c │ │ ├── antipath2.c │ │ ├── cell.was │ │ ├── crossrd.c │ │ ├── daemon.c │ │ ├── daemon.was │ │ ├── guardcapt.c │ │ ├── guards │ │ │ ├── dir_map.h │ │ │ ├── guard.c │ │ │ ├── guard_d.c │ │ │ ├── guards.lst │ │ │ ├── loeb.c │ │ │ └── watch.c │ │ ├── mon │ │ │ ├── barkeep.c │ │ │ ├── candle_merchant.c │ │ │ ├── citizen.c │ │ │ ├── clothing_merchant.c │ │ │ ├── deleanek.c │ │ │ ├── guard1.c │ │ │ ├── guard1.was │ │ │ ├── guard1_city.c │ │ │ ├── guard2.c │ │ │ ├── guard2.was │ │ │ ├── guard2_city.c │ │ │ ├── guard_inherit.c │ │ │ ├── guardcapt.c │ │ │ ├── hroath.c │ │ │ ├── interactive.c │ │ │ ├── jail_guard.c │ │ │ ├── jarkan.c │ │ │ ├── jeweler_merchant.c │ │ │ ├── leknor.c │ │ │ ├── melkior.c │ │ │ ├── perfume_merchant.c │ │ │ ├── thobe.c │ │ │ ├── tobacco_merchant.c │ │ │ ├── tonovi_merchant.c │ │ │ ├── waiter.c │ │ │ ├── wander1.c │ │ │ ├── wander2.c │ │ │ └── wander3.c │ │ ├── obj │ │ │ ├── drum.c │ │ │ ├── fife.c │ │ │ ├── jail_key.c │ │ │ ├── lute.c │ │ │ ├── tonovi_laws │ │ │ ├── tonovi_light.c │ │ │ └── tonovi_sign.c │ │ ├── road1.c │ │ ├── road2.c │ │ ├── short.h │ │ ├── slave │ │ │ ├── controlob.c │ │ │ ├── salesman.c │ │ │ ├── slave1.c │ │ │ ├── slave2.c │ │ │ ├── slave3.c │ │ │ └── slaveinh.c │ │ ├── temp │ │ │ ├── NOTE │ │ │ ├── lurueroom1.c │ │ │ ├── lurueroom2.c │ │ │ ├── lurueroom3.c │ │ │ ├── lurueroom4.c │ │ │ ├── lurueroom5.c │ │ │ ├── upper1.c │ │ │ ├── upper2.c │ │ │ └── upper3.c │ │ ├── tower1.c │ │ ├── tower2.c │ │ └── town │ │ │ ├── NWgate.c │ │ │ ├── armor.c │ │ │ ├── bank.c │ │ │ ├── bazaar1.c │ │ │ ├── bazaar2.c │ │ │ ├── bazaar3.c │ │ │ ├── bazaar4.c │ │ │ ├── bazaar5.c │ │ │ ├── bazaar6.c │ │ │ ├── bazaar7.c │ │ │ ├── bazaar8.c │ │ │ ├── bazaar9.c │ │ │ ├── brcks-a1.c │ │ │ ├── brcks-a2.c │ │ │ ├── brcks-a3.c │ │ │ ├── brcks-b1.c │ │ │ ├── brcks-b2.c │ │ │ ├── brcks-b3.c │ │ │ ├── brcks-c1.c │ │ │ ├── brcks-c2.c │ │ │ ├── brcks-c3.c │ │ │ ├── brcks-c4.c │ │ │ ├── brcks-c5.c │ │ │ ├── brcks-c6.c │ │ │ ├── brcks-c7.c │ │ │ ├── brcks-c8.c │ │ │ ├── cell.c │ │ │ ├── cguilds │ │ │ ├── bard1.c │ │ │ ├── bardenter.c │ │ │ ├── bardstorage.c │ │ │ ├── fflewdur.c │ │ │ ├── mages │ │ │ │ ├── tconf.c │ │ │ │ ├── tfloor1.c │ │ │ │ ├── tfloor2.c │ │ │ │ ├── tfloor3.c │ │ │ │ ├── tfloor4.c │ │ │ │ ├── tfoyer.c │ │ │ │ ├── tgate.c │ │ │ │ ├── tlab.c │ │ │ │ ├── tlib.c │ │ │ │ └── tstuff.c │ │ │ ├── psions │ │ │ │ ├── alcove1.c │ │ │ │ ├── alcove2.c │ │ │ │ ├── comps.c │ │ │ │ ├── fountain.c │ │ │ │ ├── foyer.c │ │ │ │ ├── library.c │ │ │ │ ├── shrine.c │ │ │ │ └── workroom.c │ │ │ └── store.c │ │ │ ├── general_store.c │ │ │ ├── healer.c │ │ │ ├── hotel │ │ │ ├── defs.h │ │ │ ├── inherit │ │ │ │ ├── hallway.c │ │ │ │ ├── hotel_room.c │ │ │ │ └── stairs.c │ │ │ ├── mon │ │ │ │ ├── kean.c │ │ │ │ ├── roomservice1.c │ │ │ │ ├── roomservice2.c │ │ │ │ ├── roomservice3.c │ │ │ │ ├── roomservice4.c │ │ │ │ └── samantha.c │ │ │ ├── obj │ │ │ │ ├── charcuterie.c │ │ │ │ ├── cigarette.c │ │ │ │ ├── collar.c │ │ │ │ ├── serving_cart.c │ │ │ │ └── thief_tools.c │ │ │ ├── room │ │ │ │ ├── bathroom.c │ │ │ │ ├── drawing_room.c │ │ │ │ ├── foyer.c │ │ │ │ ├── hall.c │ │ │ │ ├── hallway1.c │ │ │ │ ├── hallway2.c │ │ │ │ ├── hotel_room1.c │ │ │ │ ├── hotel_room2.c │ │ │ │ ├── hotel_room3.c │ │ │ │ ├── hotel_room4.c │ │ │ │ ├── lounge.c │ │ │ │ ├── master_bedroom.c │ │ │ │ ├── restaurant.c │ │ │ │ ├── sauna.c │ │ │ │ ├── stairs1.c │ │ │ │ ├── stairs2.c │ │ │ │ └── stairs3.c │ │ │ └── storage │ │ │ │ └── samantha_storage.c │ │ │ ├── jail1.c │ │ │ ├── jail1.circe1-9-05 │ │ │ ├── loeb.c │ │ │ ├── maingate.c │ │ │ ├── officer1.c │ │ │ ├── officer2.c │ │ │ ├── officer3.c │ │ │ ├── officer4.c │ │ │ ├── officer5.c │ │ │ ├── officer6.c │ │ │ ├── officer7.c │ │ │ ├── old_hotel │ │ │ ├── hotel1.c │ │ │ ├── hotel2.c │ │ │ ├── hotel3.c │ │ │ ├── hotel4.c │ │ │ ├── hotel5.c │ │ │ ├── hotelbar.c │ │ │ ├── hotelfood.c │ │ │ ├── hotelpiano.c │ │ │ ├── hroom1.c │ │ │ ├── hroom2.c │ │ │ ├── hroom3.c │ │ │ ├── hroom4.c │ │ │ ├── hroom5.c │ │ │ └── hroom6.c │ │ │ ├── portal.c │ │ │ ├── short.h │ │ │ ├── storage │ │ │ ├── a_storage.c │ │ │ ├── bazaar.c │ │ │ ├── candles.c │ │ │ ├── citymain.c │ │ │ ├── clothing.c │ │ │ ├── fragrance.c │ │ │ ├── general_storage.c │ │ │ ├── jewelry.c │ │ │ ├── main.c │ │ │ ├── main.was │ │ │ ├── tobacco.c │ │ │ └── wstorage.c │ │ │ ├── street1.c │ │ │ ├── street10.c │ │ │ ├── street11.c │ │ │ ├── street12.c │ │ │ ├── street13.c │ │ │ ├── street14.c │ │ │ ├── street15.c │ │ │ ├── street16.c │ │ │ ├── street17.c │ │ │ ├── street18.c │ │ │ ├── street19.c │ │ │ ├── street2.c │ │ │ ├── street20.c │ │ │ ├── street21.c │ │ │ ├── street22.c │ │ │ ├── street3.c │ │ │ ├── street4.c │ │ │ ├── street5.c │ │ │ ├── street6.c │ │ │ ├── street7.c │ │ │ ├── street8.c │ │ │ ├── street9.c │ │ │ ├── temple1.c │ │ │ ├── tether.c │ │ │ ├── tower1.c │ │ │ ├── tower10.c │ │ │ ├── tower10b.c │ │ │ ├── tower11.c │ │ │ ├── tower11b.c │ │ │ ├── tower1b.c │ │ │ ├── tower2.c │ │ │ ├── tower2b.c │ │ │ ├── tower3.c │ │ │ ├── tower3b.c │ │ │ ├── tower4.c │ │ │ ├── tower4b.c │ │ │ ├── tower5.c │ │ │ ├── tower5b.c │ │ │ ├── tower6.c │ │ │ ├── tower6b.c │ │ │ ├── tower7.c │ │ │ ├── tower7b.c │ │ │ ├── tower8.c │ │ │ ├── tower8b.c │ │ │ ├── tower9.c │ │ │ ├── tower9b.c │ │ │ ├── treasury.c │ │ │ ├── wall1.c │ │ │ ├── wall10.c │ │ │ ├── wall11.c │ │ │ ├── wall12.c │ │ │ ├── wall13.c │ │ │ ├── wall14.c │ │ │ ├── wall15.c │ │ │ ├── wall16.c │ │ │ ├── wall17.c │ │ │ ├── wall2.c │ │ │ ├── wall3.c │ │ │ ├── wall4.c │ │ │ ├── wall5.c │ │ │ ├── wall6.c │ │ │ ├── wall7.c │ │ │ ├── wall8.c │ │ │ ├── wall9.c │ │ │ └── weapon.c │ ├── virtual │ │ ├── sea │ │ │ ├── 10,24.sea.c │ │ │ ├── 10,3.sea.c │ │ │ ├── 20,19.sea.c │ │ │ ├── 5,1.sea.c │ │ │ ├── sea.desc │ │ │ ├── sea.exits │ │ │ └── sea.terrain │ │ ├── sea_daemon.c │ │ └── sea_server.c │ └── wiz_store2.c ├── danger │ ├── caverns │ │ ├── beholder.c │ │ ├── gauth.c │ │ └── gbeholder.c │ ├── danger.h │ ├── forest │ │ ├── forest │ │ │ ├── mon │ │ │ │ ├── Beast │ │ │ │ │ ├── beastbacklegleft.c │ │ │ │ │ ├── beastbacklegright.c │ │ │ │ │ ├── beastfront.c │ │ │ │ │ ├── beastfrontleft.c │ │ │ │ │ ├── beastfrontlegleft.c │ │ │ │ │ ├── beastfrontlegright.c │ │ │ │ │ ├── beastfrontright.c │ │ │ │ │ ├── beastmouth.c │ │ │ │ │ ├── beaststomach.c │ │ │ │ │ ├── beastthroat.c │ │ │ │ │ ├── beasttop1.c │ │ │ │ │ ├── beasttop10.c │ │ │ │ │ ├── beasttop2.c │ │ │ │ │ ├── beasttop3.c │ │ │ │ │ ├── beasttop4.c │ │ │ │ │ ├── beasttop5.c │ │ │ │ │ ├── beasttop6.c │ │ │ │ │ ├── beasttop7.c │ │ │ │ │ ├── beasttop8.c │ │ │ │ │ ├── beasttop9.c │ │ │ │ │ ├── underbeastleft.c │ │ │ │ │ ├── underbeastmid.c │ │ │ │ │ └── underbeastright.c │ │ │ │ ├── beastling.c │ │ │ │ ├── dire.c │ │ │ │ ├── fiendish.c │ │ │ │ ├── parasite.c │ │ │ │ └── treant.c │ │ │ ├── rooms │ │ │ │ ├── forest_0,0.c │ │ │ │ ├── forest_0,1.c │ │ │ │ ├── forest_0,10.c │ │ │ │ ├── forest_0,11.c │ │ │ │ ├── forest_0,12.c │ │ │ │ ├── forest_0,13.c │ │ │ │ ├── forest_0,14.c │ │ │ │ ├── forest_0,15.c │ │ │ │ ├── forest_0,16.c │ │ │ │ ├── forest_0,17.c │ │ │ │ ├── forest_0,2.c │ │ │ │ ├── forest_0,3.c │ │ │ │ ├── forest_0,4.c │ │ │ │ ├── forest_0,5.c │ │ │ │ ├── forest_0,6.c │ │ │ │ ├── forest_0,7.c │ │ │ │ ├── forest_0,8.c │ │ │ │ ├── forest_0,9.c │ │ │ │ ├── forest_1,0.c │ │ │ │ ├── forest_1,1.c │ │ │ │ ├── forest_1,10.c │ │ │ │ ├── forest_1,11.c │ │ │ │ ├── forest_1,12.c │ │ │ │ ├── forest_1,13.c │ │ │ │ ├── forest_1,14.c │ │ │ │ ├── forest_1,15.c │ │ │ │ ├── forest_1,16.c │ │ │ │ ├── forest_1,17.c │ │ │ │ ├── forest_1,2.c │ │ │ │ ├── forest_1,3.c │ │ │ │ ├── forest_1,4.c │ │ │ │ ├── forest_1,5.c │ │ │ │ ├── forest_1,6.c │ │ │ │ ├── forest_1,7.c │ │ │ │ ├── forest_1,8.c │ │ │ │ ├── forest_1,9.c │ │ │ │ ├── forest_10,0.c │ │ │ │ ├── forest_10,1.c │ │ │ │ ├── forest_10,10.c │ │ │ │ ├── forest_10,11.c │ │ │ │ ├── forest_10,12.c │ │ │ │ ├── forest_10,13.c │ │ │ │ ├── forest_10,14.c │ │ │ │ ├── forest_10,15.c │ │ │ │ ├── forest_10,16.c │ │ │ │ ├── forest_10,17.c │ │ │ │ ├── forest_10,2.c │ │ │ │ ├── forest_10,3.c │ │ │ │ ├── forest_10,4.c │ │ │ │ ├── forest_10,5.c │ │ │ │ ├── forest_10,6.c │ │ │ │ ├── forest_10,7.c │ │ │ │ ├── forest_10,8.c │ │ │ │ ├── forest_10,9.c │ │ │ │ ├── forest_11,0.c │ │ │ │ ├── forest_11,1.c │ │ │ │ ├── forest_11,10.c │ │ │ │ ├── forest_11,11.c │ │ │ │ ├── forest_11,12.c │ │ │ │ ├── forest_11,13.c │ │ │ │ ├── forest_11,14.c │ │ │ │ ├── forest_11,15.c │ │ │ │ ├── forest_11,16.c │ │ │ │ ├── forest_11,17.c │ │ │ │ ├── forest_11,2.c │ │ │ │ ├── forest_11,3.c │ │ │ │ ├── forest_11,4.c │ │ │ │ ├── forest_11,5.c │ │ │ │ ├── forest_11,6.c │ │ │ │ ├── forest_11,7.c │ │ │ │ ├── forest_11,8.c │ │ │ │ ├── forest_11,9.c │ │ │ │ ├── forest_12,0.c │ │ │ │ ├── forest_12,1.c │ │ │ │ ├── forest_12,10.c │ │ │ │ ├── forest_12,11.c │ │ │ │ ├── forest_12,12.c │ │ │ │ ├── forest_12,13.c │ │ │ │ ├── forest_12,14.c │ │ │ │ ├── forest_12,15.c │ │ │ │ ├── forest_12,16.c │ │ │ │ ├── forest_12,17.c │ │ │ │ ├── forest_12,2.c │ │ │ │ ├── forest_12,3.c │ │ │ │ ├── forest_12,4.c │ │ │ │ ├── forest_12,5.c │ │ │ │ ├── forest_12,6.c │ │ │ │ ├── forest_12,7.c │ │ │ │ ├── forest_12,8.c │ │ │ │ ├── forest_12,9.c │ │ │ │ ├── forest_13,0.c │ │ │ │ ├── forest_13,1.c │ │ │ │ ├── forest_13,10.c │ │ │ │ ├── forest_13,11.c │ │ │ │ ├── forest_13,12.c │ │ │ │ ├── forest_13,13.c │ │ │ │ ├── forest_13,14.c │ │ │ │ ├── forest_13,15.c │ │ │ │ ├── forest_13,16.c │ │ │ │ ├── forest_13,17.c │ │ │ │ ├── forest_13,2.c │ │ │ │ ├── forest_13,3.c │ │ │ │ ├── forest_13,4.c │ │ │ │ ├── forest_13,5.c │ │ │ │ ├── forest_13,6.c │ │ │ │ ├── forest_13,7.c │ │ │ │ ├── forest_13,8.c │ │ │ │ ├── forest_13,9.c │ │ │ │ ├── forest_14,0.c │ │ │ │ ├── forest_14,1.c │ │ │ │ ├── forest_14,10.c │ │ │ │ ├── forest_14,11.c │ │ │ │ ├── forest_14,12.c │ │ │ │ ├── forest_14,13.c │ │ │ │ ├── forest_14,14.c │ │ │ │ ├── forest_14,15.c │ │ │ │ ├── forest_14,16.c │ │ │ │ ├── forest_14,17.c │ │ │ │ ├── forest_14,2.c │ │ │ │ ├── forest_14,3.c │ │ │ │ ├── forest_14,4.c │ │ │ │ ├── forest_14,5.c │ │ │ │ ├── forest_14,6.c │ │ │ │ ├── forest_14,7.c │ │ │ │ ├── forest_14,8.c │ │ │ │ ├── forest_14,9.c │ │ │ │ ├── forest_15,0.c │ │ │ │ ├── forest_15,1.c │ │ │ │ ├── forest_15,10.c │ │ │ │ ├── forest_15,11.c │ │ │ │ ├── forest_15,12.c │ │ │ │ ├── forest_15,13.c │ │ │ │ ├── forest_15,14.c │ │ │ │ ├── forest_15,15.c │ │ │ │ ├── forest_15,16.c │ │ │ │ ├── forest_15,17.c │ │ │ │ ├── forest_15,2.c │ │ │ │ ├── forest_15,3.c │ │ │ │ ├── forest_15,4.c │ │ │ │ ├── forest_15,5.c │ │ │ │ ├── forest_15,6.c │ │ │ │ ├── forest_15,7.c │ │ │ │ ├── forest_15,8.c │ │ │ │ ├── forest_15,9.c │ │ │ │ ├── forest_16,0.c │ │ │ │ ├── forest_16,1.c │ │ │ │ ├── forest_16,10.c │ │ │ │ ├── forest_16,11.c │ │ │ │ ├── forest_16,12.c │ │ │ │ ├── forest_16,13.c │ │ │ │ ├── forest_16,14.c │ │ │ │ ├── forest_16,15.c │ │ │ │ ├── forest_16,16.c │ │ │ │ ├── forest_16,17.c │ │ │ │ ├── forest_16,2.c │ │ │ │ ├── forest_16,3.c │ │ │ │ ├── forest_16,4.c │ │ │ │ ├── forest_16,5.c │ │ │ │ ├── forest_16,6.c │ │ │ │ ├── forest_16,7.c │ │ │ │ ├── forest_16,8.c │ │ │ │ ├── forest_16,9.c │ │ │ │ ├── forest_17,0.c │ │ │ │ ├── forest_17,1.c │ │ │ │ ├── forest_17,10.c │ │ │ │ ├── forest_17,11.c │ │ │ │ ├── forest_17,12.c │ │ │ │ ├── forest_17,13.c │ │ │ │ ├── forest_17,14.c │ │ │ │ ├── forest_17,15.c │ │ │ │ ├── forest_17,16.c │ │ │ │ ├── forest_17,17.c │ │ │ │ ├── forest_17,2.c │ │ │ │ ├── forest_17,3.c │ │ │ │ ├── forest_17,4.c │ │ │ │ ├── forest_17,5.c │ │ │ │ ├── forest_17,6.c │ │ │ │ ├── forest_17,7.c │ │ │ │ ├── forest_17,8.c │ │ │ │ ├── forest_17,9.c │ │ │ │ ├── forest_18,0.c │ │ │ │ ├── forest_18,1.c │ │ │ │ ├── forest_18,10.c │ │ │ │ ├── forest_18,11.c │ │ │ │ ├── forest_18,12.c │ │ │ │ ├── forest_18,13.c │ │ │ │ ├── forest_18,14.c │ │ │ │ ├── forest_18,15.c │ │ │ │ ├── forest_18,16.c │ │ │ │ ├── forest_18,17.c │ │ │ │ ├── forest_18,2.c │ │ │ │ ├── forest_18,3.c │ │ │ │ ├── forest_18,4.c │ │ │ │ ├── forest_18,5.c │ │ │ │ ├── forest_18,6.c │ │ │ │ ├── forest_18,7.c │ │ │ │ ├── forest_18,8.c │ │ │ │ ├── forest_18,9.c │ │ │ │ ├── forest_19,0.c │ │ │ │ ├── forest_19,1.c │ │ │ │ ├── forest_19,10.c │ │ │ │ ├── forest_19,11.c │ │ │ │ ├── forest_19,12.c │ │ │ │ ├── forest_19,13.c │ │ │ │ ├── forest_19,14.c │ │ │ │ ├── forest_19,15.c │ │ │ │ ├── forest_19,16.c │ │ │ │ ├── forest_19,17.c │ │ │ │ ├── forest_19,2.c │ │ │ │ ├── forest_19,3.c │ │ │ │ ├── forest_19,4.c │ │ │ │ ├── forest_19,5.c │ │ │ │ ├── forest_19,6.c │ │ │ │ ├── forest_19,7.c │ │ │ │ ├── forest_19,8.c │ │ │ │ ├── forest_19,9.c │ │ │ │ ├── forest_2,0.c │ │ │ │ ├── forest_2,1.c │ │ │ │ ├── forest_2,10.c │ │ │ │ ├── forest_2,11.c │ │ │ │ ├── forest_2,12.c │ │ │ │ ├── forest_2,13.c │ │ │ │ ├── forest_2,14.c │ │ │ │ ├── forest_2,15.c │ │ │ │ ├── forest_2,16.c │ │ │ │ ├── forest_2,17.c │ │ │ │ ├── forest_2,2.c │ │ │ │ ├── forest_2,3.c │ │ │ │ ├── forest_2,4.c │ │ │ │ ├── forest_2,5.c │ │ │ │ ├── forest_2,6.c │ │ │ │ ├── forest_2,7.c │ │ │ │ ├── forest_2,8.c │ │ │ │ ├── forest_2,9.c │ │ │ │ ├── forest_20,0.c │ │ │ │ ├── forest_20,1.c │ │ │ │ ├── forest_20,10.c │ │ │ │ ├── forest_20,11.c │ │ │ │ ├── forest_20,12.c │ │ │ │ ├── forest_20,13.c │ │ │ │ ├── forest_20,14.c │ │ │ │ ├── forest_20,15.c │ │ │ │ ├── forest_20,16.c │ │ │ │ ├── forest_20,17.c │ │ │ │ ├── forest_20,2.c │ │ │ │ ├── forest_20,3.c │ │ │ │ ├── forest_20,4.c │ │ │ │ ├── forest_20,5.c │ │ │ │ ├── forest_20,6.c │ │ │ │ ├── forest_20,7.c │ │ │ │ ├── forest_20,8.c │ │ │ │ ├── forest_20,9.c │ │ │ │ ├── forest_21,0.c │ │ │ │ ├── forest_21,1.c │ │ │ │ ├── forest_21,10.c │ │ │ │ ├── forest_21,11.c │ │ │ │ ├── forest_21,12.c │ │ │ │ ├── forest_21,13.c │ │ │ │ ├── forest_21,14.c │ │ │ │ ├── forest_21,15.c │ │ │ │ ├── forest_21,16.c │ │ │ │ ├── forest_21,17.c │ │ │ │ ├── forest_21,2.c │ │ │ │ ├── forest_21,3.c │ │ │ │ ├── forest_21,4.c │ │ │ │ ├── forest_21,5.c │ │ │ │ ├── forest_21,6.c │ │ │ │ ├── forest_21,7.c │ │ │ │ ├── forest_21,8.c │ │ │ │ ├── forest_21,9.c │ │ │ │ ├── forest_22,0.c │ │ │ │ ├── forest_22,1.c │ │ │ │ ├── forest_22,10.c │ │ │ │ ├── forest_22,11.c │ │ │ │ ├── forest_22,12.c │ │ │ │ ├── forest_22,13.c │ │ │ │ ├── forest_22,14.c │ │ │ │ ├── forest_22,15.c │ │ │ │ ├── forest_22,16.c │ │ │ │ ├── forest_22,17.c │ │ │ │ ├── forest_22,2.c │ │ │ │ ├── forest_22,3.c │ │ │ │ ├── forest_22,4.c │ │ │ │ ├── forest_22,5.c │ │ │ │ ├── forest_22,6.c │ │ │ │ ├── forest_22,7.c │ │ │ │ ├── forest_22,8.c │ │ │ │ ├── forest_22,9.c │ │ │ │ ├── forest_23,0.c │ │ │ │ ├── forest_23,1.c │ │ │ │ ├── forest_23,10.c │ │ │ │ ├── forest_23,11.c │ │ │ │ ├── forest_23,12.c │ │ │ │ ├── forest_23,13.c │ │ │ │ ├── forest_23,14.c │ │ │ │ ├── forest_23,15.c │ │ │ │ ├── forest_23,16.c │ │ │ │ ├── forest_23,17.c │ │ │ │ ├── forest_23,2.c │ │ │ │ ├── forest_23,3.c │ │ │ │ ├── forest_23,4.c │ │ │ │ ├── forest_23,5.c │ │ │ │ ├── forest_23,6.c │ │ │ │ ├── forest_23,7.c │ │ │ │ ├── forest_23,8.c │ │ │ │ ├── forest_23,9.c │ │ │ │ ├── forest_24,0.c │ │ │ │ ├── forest_24,1.c │ │ │ │ ├── forest_24,10.c │ │ │ │ ├── forest_24,11.c │ │ │ │ ├── forest_24,12.c │ │ │ │ ├── forest_24,13.c │ │ │ │ ├── forest_24,14.c │ │ │ │ ├── forest_24,15.c │ │ │ │ ├── forest_24,16.c │ │ │ │ ├── forest_24,17.c │ │ │ │ ├── forest_24,2.c │ │ │ │ ├── forest_24,3.c │ │ │ │ ├── forest_24,4.c │ │ │ │ ├── forest_24,5.c │ │ │ │ ├── forest_24,6.c │ │ │ │ ├── forest_24,7.c │ │ │ │ ├── forest_24,8.c │ │ │ │ ├── forest_24,9.c │ │ │ │ ├── forest_25,0.c │ │ │ │ ├── forest_25,1.c │ │ │ │ ├── forest_25,10.c │ │ │ │ ├── forest_25,11.c │ │ │ │ ├── forest_25,12.c │ │ │ │ ├── forest_25,13.c │ │ │ │ ├── forest_25,14.c │ │ │ │ ├── forest_25,15.c │ │ │ │ ├── forest_25,16.c │ │ │ │ ├── forest_25,17.c │ │ │ │ ├── forest_25,2.c │ │ │ │ ├── forest_25,3.c │ │ │ │ ├── forest_25,4.c │ │ │ │ ├── forest_25,5.c │ │ │ │ ├── forest_25,6.c │ │ │ │ ├── forest_25,7.c │ │ │ │ ├── forest_25,8.c │ │ │ │ ├── forest_25,9.c │ │ │ │ ├── forest_26,0.c │ │ │ │ ├── forest_26,1.c │ │ │ │ ├── forest_26,10.c │ │ │ │ ├── forest_26,11.c │ │ │ │ ├── forest_26,12.c │ │ │ │ ├── forest_26,13.c │ │ │ │ ├── forest_26,14.c │ │ │ │ ├── forest_26,15.c │ │ │ │ ├── forest_26,16.c │ │ │ │ ├── forest_26,17.c │ │ │ │ ├── forest_26,2.c │ │ │ │ ├── forest_26,3.c │ │ │ │ ├── forest_26,4.c │ │ │ │ ├── forest_26,5.c │ │ │ │ ├── forest_26,6.c │ │ │ │ ├── forest_26,7.c │ │ │ │ ├── forest_26,8.c │ │ │ │ ├── forest_26,9.c │ │ │ │ ├── forest_27,0.c │ │ │ │ ├── forest_27,1.c │ │ │ │ ├── forest_27,10.c │ │ │ │ ├── forest_27,11.c │ │ │ │ ├── forest_27,12.c │ │ │ │ ├── forest_27,13.c │ │ │ │ ├── forest_27,14.c │ │ │ │ ├── forest_27,15.c │ │ │ │ ├── forest_27,16.c │ │ │ │ ├── forest_27,17.c │ │ │ │ ├── forest_27,2.c │ │ │ │ ├── forest_27,3.c │ │ │ │ ├── forest_27,4.c │ │ │ │ ├── forest_27,5.c │ │ │ │ ├── forest_27,6.c │ │ │ │ ├── forest_27,7.c │ │ │ │ ├── forest_27,8.c │ │ │ │ ├── forest_27,9.c │ │ │ │ ├── forest_28,0.c │ │ │ │ ├── forest_28,1.c │ │ │ │ ├── forest_28,10.c │ │ │ │ ├── forest_28,11.c │ │ │ │ ├── forest_28,12.c │ │ │ │ ├── forest_28,13.c │ │ │ │ ├── forest_28,14.c │ │ │ │ ├── forest_28,15.c │ │ │ │ ├── forest_28,16.c │ │ │ │ ├── forest_28,17.c │ │ │ │ ├── forest_28,2.c │ │ │ │ ├── forest_28,3.c │ │ │ │ ├── forest_28,4.c │ │ │ │ ├── forest_28,5.c │ │ │ │ ├── forest_28,6.c │ │ │ │ ├── forest_28,7.c │ │ │ │ ├── forest_28,8.c │ │ │ │ ├── forest_28,9.c │ │ │ │ ├── forest_29,0.c │ │ │ │ ├── forest_29,1.c │ │ │ │ ├── forest_29,10.c │ │ │ │ ├── forest_29,11.c │ │ │ │ ├── forest_29,12.c │ │ │ │ ├── forest_29,13.c │ │ │ │ ├── forest_29,14.c │ │ │ │ ├── forest_29,15.c │ │ │ │ ├── forest_29,16.c │ │ │ │ ├── forest_29,17.c │ │ │ │ ├── forest_29,2.c │ │ │ │ ├── forest_29,3.c │ │ │ │ ├── forest_29,4.c │ │ │ │ ├── forest_29,5.c │ │ │ │ ├── forest_29,6.c │ │ │ │ ├── forest_29,7.c │ │ │ │ ├── forest_29,8.c │ │ │ │ ├── forest_29,9.c │ │ │ │ ├── forest_3,0.c │ │ │ │ ├── forest_3,1.c │ │ │ │ ├── forest_3,10.c │ │ │ │ ├── forest_3,11.c │ │ │ │ ├── forest_3,12.c │ │ │ │ ├── forest_3,13.c │ │ │ │ ├── forest_3,14.c │ │ │ │ ├── forest_3,15.c │ │ │ │ ├── forest_3,16.c │ │ │ │ ├── forest_3,17.c │ │ │ │ ├── forest_3,2.c │ │ │ │ ├── forest_3,3.c │ │ │ │ ├── forest_3,4.c │ │ │ │ ├── forest_3,5.c │ │ │ │ ├── forest_3,6.c │ │ │ │ ├── forest_3,7.c │ │ │ │ ├── forest_3,8.c │ │ │ │ ├── forest_3,9.c │ │ │ │ ├── forest_30,0.c │ │ │ │ ├── forest_30,1.c │ │ │ │ ├── forest_30,10.c │ │ │ │ ├── forest_30,11.c │ │ │ │ ├── forest_30,12.c │ │ │ │ ├── forest_30,13.c │ │ │ │ ├── forest_30,14.c │ │ │ │ ├── forest_30,15.c │ │ │ │ ├── forest_30,16.c │ │ │ │ ├── forest_30,17.c │ │ │ │ ├── forest_30,2.c │ │ │ │ ├── forest_30,3.c │ │ │ │ ├── forest_30,4.c │ │ │ │ ├── forest_30,5.c │ │ │ │ ├── forest_30,6.c │ │ │ │ ├── forest_30,7.c │ │ │ │ ├── forest_30,8.c │ │ │ │ ├── forest_30,9.c │ │ │ │ ├── forest_31,0.c │ │ │ │ ├── forest_31,1.c │ │ │ │ ├── forest_31,10.c │ │ │ │ ├── forest_31,11.c │ │ │ │ ├── forest_31,12.c │ │ │ │ ├── forest_31,13.c │ │ │ │ ├── forest_31,14.c │ │ │ │ ├── forest_31,15.c │ │ │ │ ├── forest_31,16.c │ │ │ │ ├── forest_31,17.c │ │ │ │ ├── forest_31,2.c │ │ │ │ ├── forest_31,3.c │ │ │ │ ├── forest_31,4.c │ │ │ │ ├── forest_31,5.c │ │ │ │ ├── forest_31,6.c │ │ │ │ ├── forest_31,7.c │ │ │ │ ├── forest_31,8.c │ │ │ │ ├── forest_31,9.c │ │ │ │ ├── forest_32,0.c │ │ │ │ ├── forest_32,1.c │ │ │ │ ├── forest_32,10.c │ │ │ │ ├── forest_32,11.c │ │ │ │ ├── forest_32,12.c │ │ │ │ ├── forest_32,13.c │ │ │ │ ├── forest_32,14.c │ │ │ │ ├── forest_32,15.c │ │ │ │ ├── forest_32,16.c │ │ │ │ ├── forest_32,17.c │ │ │ │ ├── forest_32,2.c │ │ │ │ ├── forest_32,3.c │ │ │ │ ├── forest_32,4.c │ │ │ │ ├── forest_32,5.c │ │ │ │ ├── forest_32,6.c │ │ │ │ ├── forest_32,7.c │ │ │ │ ├── forest_32,8.c │ │ │ │ ├── forest_32,9.c │ │ │ │ ├── forest_33,0.c │ │ │ │ ├── forest_33,1.c │ │ │ │ ├── forest_33,10.c │ │ │ │ ├── forest_33,11.c │ │ │ │ ├── forest_33,12.c │ │ │ │ ├── forest_33,13.c │ │ │ │ ├── forest_33,14.c │ │ │ │ ├── forest_33,15.c │ │ │ │ ├── forest_33,16.c │ │ │ │ ├── forest_33,17.c │ │ │ │ ├── forest_33,2.c │ │ │ │ ├── forest_33,3.c │ │ │ │ ├── forest_33,4.c │ │ │ │ ├── forest_33,5.c │ │ │ │ ├── forest_33,6.c │ │ │ │ ├── forest_33,7.c │ │ │ │ ├── forest_33,8.c │ │ │ │ ├── forest_33,9.c │ │ │ │ ├── forest_34,0.c │ │ │ │ ├── forest_34,1.c │ │ │ │ ├── forest_34,10.c │ │ │ │ ├── forest_34,11.c │ │ │ │ ├── forest_34,12.c │ │ │ │ ├── forest_34,13.c │ │ │ │ ├── forest_34,14.c │ │ │ │ ├── forest_34,15.c │ │ │ │ ├── forest_34,16.c │ │ │ │ ├── forest_34,17.c │ │ │ │ ├── forest_34,2.c │ │ │ │ ├── forest_34,3.c │ │ │ │ ├── forest_34,4.c │ │ │ │ ├── forest_34,5.c │ │ │ │ ├── forest_34,6.c │ │ │ │ ├── forest_34,7.c │ │ │ │ ├── forest_34,8.c │ │ │ │ ├── forest_34,9.c │ │ │ │ ├── forest_35,0.c │ │ │ │ ├── forest_35,1.c │ │ │ │ ├── forest_35,10.c │ │ │ │ ├── forest_35,11.c │ │ │ │ ├── forest_35,12.c │ │ │ │ ├── forest_35,13.c │ │ │ │ ├── forest_35,14.c │ │ │ │ ├── forest_35,15.c │ │ │ │ ├── forest_35,16.c │ │ │ │ ├── forest_35,17.c │ │ │ │ ├── forest_35,2.c │ │ │ │ ├── forest_35,3.c │ │ │ │ ├── forest_35,4.c │ │ │ │ ├── forest_35,5.c │ │ │ │ ├── forest_35,6.c │ │ │ │ ├── forest_35,7.c │ │ │ │ ├── forest_35,8.c │ │ │ │ ├── forest_35,9.c │ │ │ │ ├── forest_36,0.c │ │ │ │ ├── forest_36,1.c │ │ │ │ ├── forest_36,10.c │ │ │ │ ├── forest_36,11.c │ │ │ │ ├── forest_36,12.c │ │ │ │ ├── forest_36,13.c │ │ │ │ ├── forest_36,14.c │ │ │ │ ├── forest_36,15.c │ │ │ │ ├── forest_36,16.c │ │ │ │ ├── forest_36,17.c │ │ │ │ ├── forest_36,2.c │ │ │ │ ├── forest_36,3.c │ │ │ │ ├── forest_36,4.c │ │ │ │ ├── forest_36,5.c │ │ │ │ ├── forest_36,6.c │ │ │ │ ├── forest_36,7.c │ │ │ │ ├── forest_36,8.c │ │ │ │ ├── forest_36,9.c │ │ │ │ ├── forest_37,0.c │ │ │ │ ├── forest_37,1.c │ │ │ │ ├── forest_37,10.c │ │ │ │ ├── forest_37,11.c │ │ │ │ ├── forest_37,12.c │ │ │ │ ├── forest_37,13.c │ │ │ │ ├── forest_37,14.c │ │ │ │ ├── forest_37,15.c │ │ │ │ ├── forest_37,16.c │ │ │ │ ├── forest_37,17.c │ │ │ │ ├── forest_37,2.c │ │ │ │ ├── forest_37,3.c │ │ │ │ ├── forest_37,4.c │ │ │ │ ├── forest_37,5.c │ │ │ │ ├── forest_37,6.c │ │ │ │ ├── forest_37,7.c │ │ │ │ ├── forest_37,8.c │ │ │ │ ├── forest_37,9.c │ │ │ │ ├── forest_38,0.c │ │ │ │ ├── forest_38,1.c │ │ │ │ ├── forest_38,10.c │ │ │ │ ├── forest_38,11.c │ │ │ │ ├── forest_38,12.c │ │ │ │ ├── forest_38,13.c │ │ │ │ ├── forest_38,14.c │ │ │ │ ├── forest_38,15.c │ │ │ │ ├── forest_38,16.c │ │ │ │ ├── forest_38,17.c │ │ │ │ ├── forest_38,2.c │ │ │ │ ├── forest_38,3.c │ │ │ │ ├── forest_38,4.c │ │ │ │ ├── forest_38,5.c │ │ │ │ ├── forest_38,6.c │ │ │ │ ├── forest_38,7.c │ │ │ │ ├── forest_38,8.c │ │ │ │ ├── forest_38,9.c │ │ │ │ ├── forest_39,0.c │ │ │ │ ├── forest_39,1.c │ │ │ │ ├── forest_39,10.c │ │ │ │ ├── forest_39,11.c │ │ │ │ ├── forest_39,12.c │ │ │ │ ├── forest_39,13.c │ │ │ │ ├── forest_39,14.c │ │ │ │ ├── forest_39,15.c │ │ │ │ ├── forest_39,16.c │ │ │ │ ├── forest_39,17.c │ │ │ │ ├── forest_39,2.c │ │ │ │ ├── forest_39,3.c │ │ │ │ ├── forest_39,4.c │ │ │ │ ├── forest_39,5.c │ │ │ │ ├── forest_39,6.c │ │ │ │ ├── forest_39,7.c │ │ │ │ ├── forest_39,8.c │ │ │ │ ├── forest_39,9.c │ │ │ │ ├── forest_4,0.c │ │ │ │ ├── forest_4,1.c │ │ │ │ ├── forest_4,10.c │ │ │ │ ├── forest_4,11.c │ │ │ │ ├── forest_4,12.c │ │ │ │ ├── forest_4,13.c │ │ │ │ ├── forest_4,14.c │ │ │ │ ├── forest_4,15.c │ │ │ │ ├── forest_4,16.c │ │ │ │ ├── forest_4,17.c │ │ │ │ ├── forest_4,2.c │ │ │ │ ├── forest_4,3.c │ │ │ │ ├── forest_4,4.c │ │ │ │ ├── forest_4,5.c │ │ │ │ ├── forest_4,6.c │ │ │ │ ├── forest_4,7.c │ │ │ │ ├── forest_4,8.c │ │ │ │ ├── forest_4,9.c │ │ │ │ ├── forest_40,0.c │ │ │ │ ├── forest_40,1.c │ │ │ │ ├── forest_40,10.c │ │ │ │ ├── forest_40,11.c │ │ │ │ ├── forest_40,12.c │ │ │ │ ├── forest_40,13.c │ │ │ │ ├── forest_40,14.c │ │ │ │ ├── forest_40,15.c │ │ │ │ ├── forest_40,16.c │ │ │ │ ├── forest_40,17.c │ │ │ │ ├── forest_40,2.c │ │ │ │ ├── forest_40,3.c │ │ │ │ ├── forest_40,4.c │ │ │ │ ├── forest_40,5.c │ │ │ │ ├── forest_40,6.c │ │ │ │ ├── forest_40,7.c │ │ │ │ ├── forest_40,8.c │ │ │ │ ├── forest_40,9.c │ │ │ │ ├── forest_41,0.c │ │ │ │ ├── forest_41,1.c │ │ │ │ ├── forest_41,10.c │ │ │ │ ├── forest_41,11.c │ │ │ │ ├── forest_41,12.c │ │ │ │ ├── forest_41,13.c │ │ │ │ ├── forest_41,14.c │ │ │ │ ├── forest_41,15.c │ │ │ │ ├── forest_41,16.c │ │ │ │ ├── forest_41,17.c │ │ │ │ ├── forest_41,2.c │ │ │ │ ├── forest_41,3.c │ │ │ │ ├── forest_41,4.c │ │ │ │ ├── forest_41,5.c │ │ │ │ ├── forest_41,6.c │ │ │ │ ├── forest_41,7.c │ │ │ │ ├── forest_41,8.c │ │ │ │ ├── forest_41,9.c │ │ │ │ ├── forest_42,0.c │ │ │ │ ├── forest_42,1.c │ │ │ │ ├── forest_42,10.c │ │ │ │ ├── forest_42,11.c │ │ │ │ ├── forest_42,12.c │ │ │ │ ├── forest_42,13.c │ │ │ │ ├── forest_42,14.c │ │ │ │ ├── forest_42,15.c │ │ │ │ ├── forest_42,16.c │ │ │ │ ├── forest_42,17.c │ │ │ │ ├── forest_42,2.c │ │ │ │ ├── forest_42,3.c │ │ │ │ ├── forest_42,4.c │ │ │ │ ├── forest_42,5.c │ │ │ │ ├── forest_42,6.c │ │ │ │ ├── forest_42,7.c │ │ │ │ ├── forest_42,8.c │ │ │ │ ├── forest_42,9.c │ │ │ │ ├── forest_43,0.c │ │ │ │ ├── forest_43,1.c │ │ │ │ ├── forest_43,10.c │ │ │ │ ├── forest_43,11.c │ │ │ │ ├── forest_43,12.c │ │ │ │ ├── forest_43,13.c │ │ │ │ ├── forest_43,14.c │ │ │ │ ├── forest_43,15.c │ │ │ │ ├── forest_43,16.c │ │ │ │ ├── forest_43,17.c │ │ │ │ ├── forest_43,2.c │ │ │ │ ├── forest_43,3.c │ │ │ │ ├── forest_43,4.c │ │ │ │ ├── forest_43,5.c │ │ │ │ ├── forest_43,6.c │ │ │ │ ├── forest_43,7.c │ │ │ │ ├── forest_43,8.c │ │ │ │ ├── forest_43,9.c │ │ │ │ ├── forest_44,0.c │ │ │ │ ├── forest_44,1.c │ │ │ │ ├── forest_44,10.c │ │ │ │ ├── forest_44,11.c │ │ │ │ ├── forest_44,12.c │ │ │ │ ├── forest_44,13.c │ │ │ │ ├── forest_44,14.c │ │ │ │ ├── forest_44,15.c │ │ │ │ ├── forest_44,16.c │ │ │ │ ├── forest_44,17.c │ │ │ │ ├── forest_44,2.c │ │ │ │ ├── forest_44,3.c │ │ │ │ ├── forest_44,4.c │ │ │ │ ├── forest_44,5.c │ │ │ │ ├── forest_44,6.c │ │ │ │ ├── forest_44,7.c │ │ │ │ ├── forest_44,8.c │ │ │ │ ├── forest_44,9.c │ │ │ │ ├── forest_45,0.c │ │ │ │ ├── forest_45,1.c │ │ │ │ ├── forest_45,10.c │ │ │ │ ├── forest_45,11.c │ │ │ │ ├── forest_45,12.c │ │ │ │ ├── forest_45,13.c │ │ │ │ ├── forest_45,14.c │ │ │ │ ├── forest_45,15.c │ │ │ │ ├── forest_45,16.c │ │ │ │ ├── forest_45,17.c │ │ │ │ ├── forest_45,2.c │ │ │ │ ├── forest_45,3.c │ │ │ │ ├── forest_45,4.c │ │ │ │ ├── forest_45,5.c │ │ │ │ ├── forest_45,6.c │ │ │ │ ├── forest_45,7.c │ │ │ │ ├── forest_45,8.c │ │ │ │ ├── forest_45,9.c │ │ │ │ ├── forest_46,0.c │ │ │ │ ├── forest_46,1.c │ │ │ │ ├── forest_46,10.c │ │ │ │ ├── forest_46,11.c │ │ │ │ ├── forest_46,12.c │ │ │ │ ├── forest_46,13.c │ │ │ │ ├── forest_46,14.c │ │ │ │ ├── forest_46,15.c │ │ │ │ ├── forest_46,16.c │ │ │ │ ├── forest_46,17.c │ │ │ │ ├── forest_46,2.c │ │ │ │ ├── forest_46,3.c │ │ │ │ ├── forest_46,4.c │ │ │ │ ├── forest_46,5.c │ │ │ │ ├── forest_46,6.c │ │ │ │ ├── forest_46,7.c │ │ │ │ ├── forest_46,8.c │ │ │ │ ├── forest_46,9.c │ │ │ │ ├── forest_47,0.c │ │ │ │ ├── forest_47,1.c │ │ │ │ ├── forest_47,10.c │ │ │ │ ├── forest_47,11.c │ │ │ │ ├── forest_47,12.c │ │ │ │ ├── forest_47,13.c │ │ │ │ ├── forest_47,14.c │ │ │ │ ├── forest_47,15.c │ │ │ │ ├── forest_47,16.c │ │ │ │ ├── forest_47,17.c │ │ │ │ ├── forest_47,2.c │ │ │ │ ├── forest_47,3.c │ │ │ │ ├── forest_47,4.c │ │ │ │ ├── forest_47,5.c │ │ │ │ ├── forest_47,6.c │ │ │ │ ├── forest_47,7.c │ │ │ │ ├── forest_47,8.c │ │ │ │ ├── forest_47,9.c │ │ │ │ ├── forest_48,0.c │ │ │ │ ├── forest_48,1.c │ │ │ │ ├── forest_48,10.c │ │ │ │ ├── forest_48,11.c │ │ │ │ ├── forest_48,12.c │ │ │ │ ├── forest_48,13.c │ │ │ │ ├── forest_48,14.c │ │ │ │ ├── forest_48,15.c │ │ │ │ ├── forest_48,16.c │ │ │ │ ├── forest_48,17.c │ │ │ │ ├── forest_48,2.c │ │ │ │ ├── forest_48,3.c │ │ │ │ ├── forest_48,4.c │ │ │ │ ├── forest_48,5.c │ │ │ │ ├── forest_48,6.c │ │ │ │ ├── forest_48,7.c │ │ │ │ ├── forest_48,8.c │ │ │ │ ├── forest_48,9.c │ │ │ │ ├── forest_49,0.c │ │ │ │ ├── forest_49,1.c │ │ │ │ ├── forest_49,10.c │ │ │ │ ├── forest_49,11.c │ │ │ │ ├── forest_49,12.c │ │ │ │ ├── forest_49,13.c │ │ │ │ ├── forest_49,14.c │ │ │ │ ├── forest_49,15.c │ │ │ │ ├── forest_49,16.c │ │ │ │ ├── forest_49,17.c │ │ │ │ ├── forest_49,2.c │ │ │ │ ├── forest_49,3.c │ │ │ │ ├── forest_49,4.c │ │ │ │ ├── forest_49,5.c │ │ │ │ ├── forest_49,6.c │ │ │ │ ├── forest_49,7.c │ │ │ │ ├── forest_49,8.c │ │ │ │ ├── forest_49,9.c │ │ │ │ ├── forest_5,0.c │ │ │ │ ├── forest_5,1.c │ │ │ │ ├── forest_5,10.c │ │ │ │ ├── forest_5,11.c │ │ │ │ ├── forest_5,12.c │ │ │ │ ├── forest_5,13.c │ │ │ │ ├── forest_5,14.c │ │ │ │ ├── forest_5,15.c │ │ │ │ ├── forest_5,16.c │ │ │ │ ├── forest_5,17.c │ │ │ │ ├── forest_5,2.c │ │ │ │ ├── forest_5,3.c │ │ │ │ ├── forest_5,4.c │ │ │ │ ├── forest_5,5.c │ │ │ │ ├── forest_5,6.c │ │ │ │ ├── forest_5,7.c │ │ │ │ ├── forest_5,8.c │ │ │ │ ├── forest_5,9.c │ │ │ │ ├── forest_6,0.c │ │ │ │ ├── forest_6,1.c │ │ │ │ ├── forest_6,10.c │ │ │ │ ├── forest_6,11.c │ │ │ │ ├── forest_6,12.c │ │ │ │ ├── forest_6,13.c │ │ │ │ ├── forest_6,14.c │ │ │ │ ├── forest_6,15.c │ │ │ │ ├── forest_6,16.c │ │ │ │ ├── forest_6,17.c │ │ │ │ ├── forest_6,2.c │ │ │ │ ├── forest_6,3.c │ │ │ │ ├── forest_6,4.c │ │ │ │ ├── forest_6,5.c │ │ │ │ ├── forest_6,6.c │ │ │ │ ├── forest_6,7.c │ │ │ │ ├── forest_6,8.c │ │ │ │ ├── forest_6,9.c │ │ │ │ ├── forest_7,0.c │ │ │ │ ├── forest_7,1.c │ │ │ │ ├── forest_7,10.c │ │ │ │ ├── forest_7,11.c │ │ │ │ ├── forest_7,12.c │ │ │ │ ├── forest_7,13.c │ │ │ │ ├── forest_7,14.c │ │ │ │ ├── forest_7,15.c │ │ │ │ ├── forest_7,16.c │ │ │ │ ├── forest_7,17.c │ │ │ │ ├── forest_7,2.c │ │ │ │ ├── forest_7,3.c │ │ │ │ ├── forest_7,4.c │ │ │ │ ├── forest_7,5.c │ │ │ │ ├── forest_7,6.c │ │ │ │ ├── forest_7,7.c │ │ │ │ ├── forest_7,8.c │ │ │ │ ├── forest_7,9.c │ │ │ │ ├── forest_8,0.c │ │ │ │ ├── forest_8,1.c │ │ │ │ ├── forest_8,10.c │ │ │ │ ├── forest_8,11.c │ │ │ │ ├── forest_8,12.c │ │ │ │ ├── forest_8,13.c │ │ │ │ ├── forest_8,14.c │ │ │ │ ├── forest_8,15.c │ │ │ │ ├── forest_8,16.c │ │ │ │ ├── forest_8,17.c │ │ │ │ ├── forest_8,2.c │ │ │ │ ├── forest_8,3.c │ │ │ │ ├── forest_8,4.c │ │ │ │ ├── forest_8,5.c │ │ │ │ ├── forest_8,6.c │ │ │ │ ├── forest_8,7.c │ │ │ │ ├── forest_8,8.c │ │ │ │ ├── forest_8,9.c │ │ │ │ ├── forest_9,0.c │ │ │ │ ├── forest_9,1.c │ │ │ │ ├── forest_9,10.c │ │ │ │ ├── forest_9,11.c │ │ │ │ ├── forest_9,12.c │ │ │ │ ├── forest_9,13.c │ │ │ │ ├── forest_9,14.c │ │ │ │ ├── forest_9,15.c │ │ │ │ ├── forest_9,16.c │ │ │ │ ├── forest_9,17.c │ │ │ │ ├── forest_9,2.c │ │ │ │ ├── forest_9,3.c │ │ │ │ ├── forest_9,4.c │ │ │ │ ├── forest_9,5.c │ │ │ │ ├── forest_9,6.c │ │ │ │ ├── forest_9,7.c │ │ │ │ ├── forest_9,8.c │ │ │ │ └── forest_9,9.c │ │ │ ├── rooms2 │ │ │ │ ├── forest_0,18.c │ │ │ │ ├── forest_0,19.c │ │ │ │ ├── forest_0,21.c │ │ │ │ ├── forest_0,22.c │ │ │ │ ├── forest_0,23.c │ │ │ │ ├── forest_1,18.c │ │ │ │ ├── forest_1,19.c │ │ │ │ ├── forest_1,20.c │ │ │ │ ├── forest_1,21.c │ │ │ │ ├── forest_1,22.c │ │ │ │ ├── forest_1,23.c │ │ │ │ ├── forest_10,18.c │ │ │ │ ├── forest_10,19.c │ │ │ │ ├── forest_10,20.c │ │ │ │ ├── forest_10,21.c │ │ │ │ ├── forest_10,22.c │ │ │ │ ├── forest_10,23.c │ │ │ │ ├── forest_11,18.c │ │ │ │ ├── forest_11,19.c │ │ │ │ ├── forest_11,20.c │ │ │ │ ├── forest_11,21.c │ │ │ │ ├── forest_11,22.c │ │ │ │ ├── forest_11,23.c │ │ │ │ ├── forest_12,18.c │ │ │ │ ├── forest_12,19.c │ │ │ │ ├── forest_12,20.c │ │ │ │ ├── forest_12,21.c │ │ │ │ ├── forest_12,22.c │ │ │ │ ├── forest_12,23.c │ │ │ │ ├── forest_13,18.c │ │ │ │ ├── forest_13,19.c │ │ │ │ ├── forest_13,20.c │ │ │ │ ├── forest_13,21.c │ │ │ │ ├── forest_13,22.c │ │ │ │ ├── forest_13,23.c │ │ │ │ ├── forest_14,18.c │ │ │ │ ├── forest_14,19.c │ │ │ │ ├── forest_14,20.c │ │ │ │ ├── forest_14,21.c │ │ │ │ ├── forest_14,22.c │ │ │ │ ├── forest_14,23.c │ │ │ │ ├── forest_15,18.c │ │ │ │ ├── forest_15,19.c │ │ │ │ ├── forest_15,20.c │ │ │ │ ├── forest_15,21.c │ │ │ │ ├── forest_15,22.c │ │ │ │ ├── forest_15,23.c │ │ │ │ ├── forest_16,18.c │ │ │ │ ├── forest_16,19.c │ │ │ │ ├── forest_16,20.c │ │ │ │ ├── forest_16,21.c │ │ │ │ ├── forest_16,22.c │ │ │ │ ├── forest_16,23.c │ │ │ │ ├── forest_17,18.c │ │ │ │ ├── forest_17,19.c │ │ │ │ ├── forest_17,20.c │ │ │ │ ├── forest_17,21.c │ │ │ │ ├── forest_17,22.c │ │ │ │ ├── forest_17,23.c │ │ │ │ ├── forest_18,18.c │ │ │ │ ├── forest_18,19.c │ │ │ │ ├── forest_18,20.c │ │ │ │ ├── forest_18,21.c │ │ │ │ ├── forest_18,22.c │ │ │ │ ├── forest_18,23.c │ │ │ │ ├── forest_19,18.c │ │ │ │ ├── forest_19,19.c │ │ │ │ ├── forest_19,20.c │ │ │ │ ├── forest_19,21.c │ │ │ │ ├── forest_19,22.c │ │ │ │ ├── forest_19,23.c │ │ │ │ ├── forest_2,18.c │ │ │ │ ├── forest_2,19.c │ │ │ │ ├── forest_2,20.c │ │ │ │ ├── forest_2,21.c │ │ │ │ ├── forest_2,22.c │ │ │ │ ├── forest_2,23.c │ │ │ │ ├── forest_20,18.c │ │ │ │ ├── forest_20,19.c │ │ │ │ ├── forest_20,20.c │ │ │ │ ├── forest_20,21.c │ │ │ │ ├── forest_20,22.c │ │ │ │ ├── forest_20,23.c │ │ │ │ ├── forest_21,18.c │ │ │ │ ├── forest_21,19.c │ │ │ │ ├── forest_21,20.c │ │ │ │ ├── forest_21,21.c │ │ │ │ ├── forest_21,22.c │ │ │ │ ├── forest_21,23.c │ │ │ │ ├── forest_22,18.c │ │ │ │ ├── forest_22,19.c │ │ │ │ ├── forest_22,20.c │ │ │ │ ├── forest_22,21.c │ │ │ │ ├── forest_22,22.c │ │ │ │ ├── forest_22,23.c │ │ │ │ ├── forest_23,18.c │ │ │ │ ├── forest_23,19.c │ │ │ │ ├── forest_23,20.c │ │ │ │ ├── forest_23,21.c │ │ │ │ ├── forest_23,22.c │ │ │ │ ├── forest_23,23.c │ │ │ │ ├── forest_24,18.c │ │ │ │ ├── forest_24,19.c │ │ │ │ ├── forest_24,20.c │ │ │ │ ├── forest_24,21.c │ │ │ │ ├── forest_24,22.c │ │ │ │ ├── forest_24,27.c │ │ │ │ ├── forest_25,18.c │ │ │ │ ├── forest_25,19.c │ │ │ │ ├── forest_25,20.c │ │ │ │ ├── forest_25,21.c │ │ │ │ ├── forest_25,22.c │ │ │ │ ├── forest_25,26.c │ │ │ │ ├── forest_25,27.c │ │ │ │ ├── forest_26,18.c │ │ │ │ ├── forest_26,19.c │ │ │ │ ├── forest_26,20.c │ │ │ │ ├── forest_26,21.c │ │ │ │ ├── forest_26,22.c │ │ │ │ ├── forest_26,23.c │ │ │ │ ├── forest_27,18.c │ │ │ │ ├── forest_27,19.c │ │ │ │ ├── forest_27,20.c │ │ │ │ ├── forest_27,21.c │ │ │ │ ├── forest_27,22.c │ │ │ │ ├── forest_27,23.c │ │ │ │ ├── forest_28,18.c │ │ │ │ ├── forest_28,19.c │ │ │ │ ├── forest_28,20.c │ │ │ │ ├── forest_28,21.c │ │ │ │ ├── forest_28,22.c │ │ │ │ ├── forest_28,23.c │ │ │ │ ├── forest_29,18.c │ │ │ │ ├── forest_29,19.c │ │ │ │ ├── forest_29,20.c │ │ │ │ ├── forest_29,21.c │ │ │ │ ├── forest_29,22.c │ │ │ │ ├── forest_29,23.c │ │ │ │ ├── forest_3,18.c │ │ │ │ ├── forest_3,19.c │ │ │ │ ├── forest_3,20.c │ │ │ │ ├── forest_3,21.c │ │ │ │ ├── forest_3,22.c │ │ │ │ ├── forest_3,23.c │ │ │ │ ├── forest_30,18.c │ │ │ │ ├── forest_30,19.c │ │ │ │ ├── forest_30,20.c │ │ │ │ ├── forest_30,21.c │ │ │ │ ├── forest_30,23.c │ │ │ │ ├── forest_31,18.c │ │ │ │ ├── forest_31,19.c │ │ │ │ ├── forest_31,20.c │ │ │ │ ├── forest_31,21.c │ │ │ │ ├── forest_31,22.c │ │ │ │ ├── forest_31,23.c │ │ │ │ ├── forest_32,18.c │ │ │ │ ├── forest_32,19.c │ │ │ │ ├── forest_32,20.c │ │ │ │ ├── forest_32,21.c │ │ │ │ ├── forest_32,22.c │ │ │ │ ├── forest_32,23.c │ │ │ │ ├── forest_33,18.c │ │ │ │ ├── forest_33,19.c │ │ │ │ ├── forest_33,20.c │ │ │ │ ├── forest_33,21.c │ │ │ │ ├── forest_33,22.c │ │ │ │ ├── forest_33,23.c │ │ │ │ ├── forest_34,18.c │ │ │ │ ├── forest_34,19.c │ │ │ │ ├── forest_34,20.c │ │ │ │ ├── forest_34,21.c │ │ │ │ ├── forest_34,22.c │ │ │ │ ├── forest_34,23.c │ │ │ │ ├── forest_35,18.c │ │ │ │ ├── forest_35,19.c │ │ │ │ ├── forest_35,20.c │ │ │ │ ├── forest_35,21.c │ │ │ │ ├── forest_35,22.c │ │ │ │ ├── forest_35,23.c │ │ │ │ ├── forest_36,18.c │ │ │ │ ├── forest_36,19.c │ │ │ │ ├── forest_36,20.c │ │ │ │ ├── forest_36,21.c │ │ │ │ ├── forest_36,22.c │ │ │ │ ├── forest_36,23.c │ │ │ │ ├── forest_37,18.c │ │ │ │ ├── forest_37,19.c │ │ │ │ ├── forest_37,20.c │ │ │ │ ├── forest_37,21.c │ │ │ │ ├── forest_37,22.c │ │ │ │ ├── forest_37,23.c │ │ │ │ ├── forest_38,18.c │ │ │ │ ├── forest_38,19.c │ │ │ │ ├── forest_38,20.c │ │ │ │ ├── forest_38,21.c │ │ │ │ ├── forest_38,22.c │ │ │ │ ├── forest_38,23.c │ │ │ │ ├── forest_38,24.c │ │ │ │ ├── forest_38,25.c │ │ │ │ ├── forest_39,18.c │ │ │ │ ├── forest_39,19.c │ │ │ │ ├── forest_39,20.c │ │ │ │ ├── forest_39,21.c │ │ │ │ ├── forest_39,24.c │ │ │ │ ├── forest_39,25.c │ │ │ │ ├── forest_4,18.c │ │ │ │ ├── forest_4,19.c │ │ │ │ ├── forest_4,20.c │ │ │ │ ├── forest_4,21.c │ │ │ │ ├── forest_4,24.c │ │ │ │ ├── forest_4,25.c │ │ │ │ ├── forest_40,18.c │ │ │ │ ├── forest_40,19.c │ │ │ │ ├── forest_40,20.c │ │ │ │ ├── forest_40,21.c │ │ │ │ ├── forest_40,24.c │ │ │ │ ├── forest_40,25.c │ │ │ │ ├── forest_41,18.c │ │ │ │ ├── forest_41,19.c │ │ │ │ ├── forest_41,20.c │ │ │ │ ├── forest_41,21.c │ │ │ │ ├── forest_42,18.c │ │ │ │ ├── forest_42,19.c │ │ │ │ ├── forest_42,20.c │ │ │ │ ├── forest_42,21.c │ │ │ │ ├── forest_42,24.c │ │ │ │ ├── forest_43,18.c │ │ │ │ ├── forest_43,19.c │ │ │ │ ├── forest_43,20.c │ │ │ │ ├── forest_43,21.c │ │ │ │ ├── forest_43,23.c │ │ │ │ ├── forest_43,24.c │ │ │ │ ├── forest_44,18.c │ │ │ │ ├── forest_44,19.c │ │ │ │ ├── forest_44,20.c │ │ │ │ ├── forest_44,21.c │ │ │ │ ├── forest_44,23.c │ │ │ │ ├── forest_44,24.c │ │ │ │ ├── forest_45,18.c │ │ │ │ ├── forest_45,19.c │ │ │ │ ├── forest_45,20.c │ │ │ │ ├── forest_45,21.c │ │ │ │ ├── forest_45,23.c │ │ │ │ ├── forest_45,24.c │ │ │ │ ├── forest_46,18.c │ │ │ │ ├── forest_46,19.c │ │ │ │ ├── forest_46,20.c │ │ │ │ ├── forest_46,21.c │ │ │ │ ├── forest_46,23.c │ │ │ │ ├── forest_46,24.c │ │ │ │ ├── forest_47,18.c │ │ │ │ ├── forest_47,19.c │ │ │ │ ├── forest_47,20.c │ │ │ │ ├── forest_47,21.c │ │ │ │ ├── forest_47,23.c │ │ │ │ ├── forest_47,24.c │ │ │ │ ├── forest_48,18.c │ │ │ │ ├── forest_48,19.c │ │ │ │ ├── forest_48,20.c │ │ │ │ ├── forest_48,21.c │ │ │ │ ├── forest_48,23.c │ │ │ │ ├── forest_48,24.c │ │ │ │ ├── forest_49,18.c │ │ │ │ ├── forest_49,19.c │ │ │ │ ├── forest_49,20.c │ │ │ │ ├── forest_49,21.c │ │ │ │ ├── forest_49,23.c │ │ │ │ ├── forest_5,18.c │ │ │ │ ├── forest_5,19.c │ │ │ │ ├── forest_5,20.c │ │ │ │ ├── forest_5,21.c │ │ │ │ ├── forest_5,23.c │ │ │ │ ├── forest_5,24.c │ │ │ │ ├── forest_6,18.c │ │ │ │ ├── forest_6,19.c │ │ │ │ ├── forest_6,20.c │ │ │ │ ├── forest_6,21.c │ │ │ │ ├── forest_6,23.c │ │ │ │ ├── forest_6,24.c │ │ │ │ ├── forest_7,18.c │ │ │ │ ├── forest_7,19.c │ │ │ │ ├── forest_7,20.c │ │ │ │ ├── forest_7,21.c │ │ │ │ ├── forest_7,23.c │ │ │ │ ├── forest_7,24.c │ │ │ │ ├── forest_8,18.c │ │ │ │ ├── forest_8,19.c │ │ │ │ ├── forest_8,20.c │ │ │ │ ├── forest_8,21.c │ │ │ │ ├── forest_8,23.c │ │ │ │ ├── forest_8,24.c │ │ │ │ ├── forest_9,18.c │ │ │ │ ├── forest_9,19.c │ │ │ │ ├── forest_9,20.c │ │ │ │ ├── forest_9,21.c │ │ │ │ ├── forest_9,23.c │ │ │ │ └── forest_9,24.c │ │ │ └── rooms3 │ │ │ │ ├── forest_11,28.c │ │ │ │ ├── forest_12,28.c │ │ │ │ ├── forest_17,28.c │ │ │ │ ├── forest_18,28.c │ │ │ │ ├── forest_22,28.c │ │ │ │ ├── forest_23,28.c │ │ │ │ ├── forest_28,28.c │ │ │ │ ├── forest_29,28.c │ │ │ │ ├── forest_33,28.c │ │ │ │ ├── forest_34,28.c │ │ │ │ ├── forest_39,28.c │ │ │ │ ├── forest_4,28.c │ │ │ │ ├── forest_44,28.c │ │ │ │ ├── forest_45,28.c │ │ │ │ ├── forest_5,28.c │ │ │ │ └── forest_6,28.c │ │ ├── temple │ │ │ ├── mon │ │ │ │ ├── gelemental.c │ │ │ │ ├── ninja.c │ │ │ │ ├── ninja2.c │ │ │ │ ├── rninja.c │ │ │ │ └── rninja2.c │ │ │ ├── ninja.h │ │ │ └── obj │ │ │ │ └── dagger.c │ │ ├── tower │ │ │ └── mon │ │ │ │ ├── axe.c │ │ │ │ ├── dagger.c │ │ │ │ ├── guardian.c │ │ │ │ ├── s&s.c │ │ │ │ └── staff.c │ │ └── village │ │ │ └── mon │ │ │ ├── howler.c │ │ │ ├── hunter.c │ │ │ └── maktar.c │ ├── inherit │ │ ├── bforest.c │ │ ├── forest.h │ │ ├── forest_one.c │ │ └── masterinherit.c │ ├── obj │ │ ├── castershoes.c │ │ ├── ewound.c │ │ ├── fortifyrobes.c │ │ ├── fullcontact.c │ │ ├── guildtabard.c │ │ ├── impeccable.c │ │ ├── o_banded.c │ │ ├── psirobes.c │ │ ├── psiscirclet.c │ │ ├── rangerboots.c │ │ └── wounder.c │ └── vesprus │ │ ├── obj │ │ ├── banana.c │ │ ├── bananapeel.c │ │ ├── berries.c │ │ ├── cbox.c │ │ ├── cherry.c │ │ ├── cluster.c │ │ ├── dockcrate.c │ │ ├── grape.c │ │ ├── ice.c │ │ ├── nugget.c │ │ ├── pbanana.c │ │ ├── rapple.c │ │ ├── rawfish.c │ │ ├── rfish.c │ │ ├── wflask.c │ │ └── whiskey.c │ │ ├── rooms │ │ └── dr1.c │ │ └── vesprus.h ├── darkwood │ ├── OVERVIEW │ ├── camps │ │ ├── elfisland1.h │ │ ├── mon │ │ │ ├── alleteirana.c │ │ │ ├── amra.c │ │ │ ├── aravilar.c │ │ │ ├── austus.c │ │ │ ├── bandit.c │ │ │ ├── banditt.c │ │ │ ├── caldur.c │ │ │ ├── elguard.c │ │ │ ├── gore.c │ │ │ ├── laucian.c │ │ │ ├── raider.c │ │ │ ├── silverspring.c │ │ │ └── wonder.c │ │ ├── obj │ │ │ ├── Mchain+1.c │ │ │ ├── blacksword.c │ │ │ ├── c_elven_jewelry.c │ │ │ ├── carrows.c │ │ │ ├── claw.c │ │ │ ├── cloakclaspcloud.c │ │ │ ├── cloakclaspleaf.c │ │ │ ├── crystalball.c │ │ │ ├── darkcloak.c │ │ │ ├── double_bladed_sword.c │ │ │ ├── earcuff.c │ │ │ ├── elbow.c │ │ │ ├── elfcirclet.c │ │ │ ├── elven_jewelry.c │ │ │ ├── leafanklets.c │ │ │ ├── lightcloak.c │ │ │ ├── roseanklet.c │ │ │ ├── roselaurel.c │ │ │ ├── starburstclasp.c │ │ │ ├── statue.c │ │ │ ├── studded+1.c │ │ │ └── waterlilycirclet.c │ │ └── rooms │ │ │ ├── orcamp │ │ │ ├── cpath01.c │ │ │ ├── cpath02.c │ │ │ ├── cpath03.c │ │ │ ├── cpath04.c │ │ │ ├── cpath05.c │ │ │ ├── cpath06.c │ │ │ ├── cpath07.c │ │ │ ├── cpath08.c │ │ │ ├── cpath09.c │ │ │ ├── cpath10.c │ │ │ ├── cpath11.c │ │ │ ├── cpath12.c │ │ │ ├── cpath13.c │ │ │ ├── cpath14.c │ │ │ ├── cpath15.c │ │ │ ├── cpath16.c │ │ │ ├── cpath17.c │ │ │ ├── cpath18.c │ │ │ ├── cpath19.c │ │ │ ├── cpath20.c │ │ │ ├── croad01.c │ │ │ ├── croad02.c │ │ │ ├── croad03.c │ │ │ ├── croad04.c │ │ │ ├── croad05.c │ │ │ ├── croad06.c │ │ │ ├── inherit │ │ │ │ ├── cpath.c │ │ │ │ ├── croad.c │ │ │ │ └── tent.c │ │ │ ├── maintent.c │ │ │ ├── tent01.c │ │ │ ├── tent02.c │ │ │ ├── tent03.c │ │ │ └── tent04.c │ │ │ ├── path │ │ │ ├── inherit │ │ │ │ └── path.c │ │ │ ├── path01.c │ │ │ ├── path02.c │ │ │ ├── path03.c │ │ │ ├── path04.c │ │ │ ├── path05.c │ │ │ ├── path06.c │ │ │ ├── path07.c │ │ │ ├── path08.c │ │ │ ├── path09.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ └── path16.c │ │ │ ├── special │ │ │ ├── gs_storage.c │ │ │ └── jewl_storage.c │ │ │ └── town │ │ │ ├── cafe.c │ │ │ ├── center.c │ │ │ ├── ghouse.c │ │ │ ├── healer.c │ │ │ ├── inherit │ │ │ └── troads.c │ │ │ ├── market.c │ │ │ ├── park.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── road01.c │ │ │ ├── road02.c │ │ │ ├── road03.c │ │ │ ├── road04.c │ │ │ ├── road05.c │ │ │ ├── road06.c │ │ │ ├── road07.c │ │ │ ├── road08.c │ │ │ ├── road09.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road18.c │ │ │ ├── road19.c │ │ │ ├── wild1.c │ │ │ ├── wild2.c │ │ │ └── wild3.c │ ├── castle │ │ ├── obj │ │ │ └── amscroll.c │ │ ├── tower1c.c │ │ ├── tower1n.c │ │ └── tower1s.c │ ├── darcy │ │ ├── cav0.c │ │ ├── cav1.c │ │ ├── cav2.c │ │ ├── cav3.c │ │ ├── cav4.c │ │ ├── cav5.c │ │ ├── cav6.c │ │ ├── cav7.c │ │ ├── cgate.c │ │ ├── crypt.c │ │ ├── darcy.h │ │ ├── outside.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── pit.c │ │ ├── secret0.c │ │ ├── secret1.c │ │ └── secret2.c │ ├── dforest │ │ ├── df1.c │ │ ├── df10.c │ │ ├── df11.c │ │ ├── df2.c │ │ ├── df3.c │ │ ├── df4.c │ │ ├── df5.c │ │ ├── df6.c │ │ ├── df7.c │ │ ├── df8.c │ │ ├── df9.c │ │ ├── mon │ │ │ └── fork.c │ │ └── wpns │ │ │ └── tines.c │ ├── equip │ │ ├── dance_blade_unfinished.c │ │ ├── dancer.c │ │ ├── desecrator.c │ │ └── desecrator.obs │ ├── forest │ │ ├── caves │ │ │ ├── cave1.c │ │ │ ├── cave2.c │ │ │ ├── cave3.c │ │ │ ├── cave4.c │ │ │ ├── cave5.c │ │ │ └── tunnels │ │ │ │ ├── tun1.c │ │ │ │ ├── tun10.c │ │ │ │ ├── tun11.c │ │ │ │ ├── tun12.c │ │ │ │ ├── tun13.c │ │ │ │ ├── tun14.c │ │ │ │ ├── tun15.c │ │ │ │ ├── tun16.c │ │ │ │ ├── tun17.c │ │ │ │ ├── tun18.c │ │ │ │ ├── tun19.c │ │ │ │ ├── tun2.c │ │ │ │ ├── tun20.c │ │ │ │ ├── tun21.c │ │ │ │ ├── tun22.c │ │ │ │ ├── tun23.c │ │ │ │ ├── tun24.c │ │ │ │ ├── tun25.c │ │ │ │ ├── tun26.c │ │ │ │ ├── tun27.c │ │ │ │ ├── tun28.c │ │ │ │ ├── tun29.c │ │ │ │ ├── tun3.c │ │ │ │ ├── tun30.c │ │ │ │ ├── tun31.c │ │ │ │ ├── tun32.c │ │ │ │ ├── tun33.c │ │ │ │ ├── tun34.c │ │ │ │ ├── tun35.c │ │ │ │ ├── tun4.c │ │ │ │ ├── tun5.c │ │ │ │ ├── tun6.c │ │ │ │ ├── tun7.c │ │ │ │ ├── tun8.c │ │ │ │ └── tun9.c │ │ ├── df1.c │ │ ├── df10.c │ │ ├── df11.c │ │ ├── df12.c │ │ ├── df13.c │ │ ├── df14.c │ │ ├── df15.c │ │ ├── df16.c │ │ ├── df17.c │ │ ├── df18.c │ │ ├── df19.c │ │ ├── df2.c │ │ ├── df20.c │ │ ├── df21.c │ │ ├── df22.c │ │ ├── df23.c │ │ ├── df24.c │ │ ├── df25.c │ │ ├── df26.c │ │ ├── df27.c │ │ ├── df28.c │ │ ├── df29.c │ │ ├── df3.c │ │ ├── df30.c │ │ ├── df31.c │ │ ├── df32.c │ │ ├── df33.c │ │ ├── df34.c │ │ ├── df35.c │ │ ├── df36.c │ │ ├── df37.c │ │ ├── df38.c │ │ ├── df39.c │ │ ├── df4.c │ │ ├── df40.c │ │ ├── df41.c │ │ ├── df42.c │ │ ├── df43.c │ │ ├── df44.c │ │ ├── df45.c │ │ ├── df46.c │ │ ├── df47.c │ │ ├── df48.c │ │ ├── df49.c │ │ ├── df5.c │ │ ├── df50.c │ │ ├── df51.c │ │ ├── df52.c │ │ ├── df53.c │ │ ├── df54.c │ │ ├── df55.c │ │ ├── df56.c │ │ ├── df57.c │ │ ├── df6.c │ │ ├── df7.c │ │ ├── df8.c │ │ ├── df9.c │ │ ├── if1.c │ │ ├── if10.c │ │ ├── if11.c │ │ ├── if12.c │ │ ├── if13.c │ │ ├── if14.c │ │ ├── if15.c │ │ ├── if16.c │ │ ├── if17.c │ │ ├── if18.c │ │ ├── if19.c │ │ ├── if2.c │ │ ├── if20.c │ │ ├── if21.c │ │ ├── if22.c │ │ ├── if23.c │ │ ├── if24.c │ │ ├── if3.c │ │ ├── if4.c │ │ ├── if5.c │ │ ├── if6.c │ │ ├── if7.c │ │ ├── if8.c │ │ ├── if9.c │ │ ├── ruins │ │ │ └── ruins1.c │ │ └── village │ │ │ ├── firepit.c │ │ │ ├── home1.c │ │ │ ├── home2.c │ │ │ ├── home3.c │ │ │ ├── home4.c │ │ │ ├── home5.c │ │ │ ├── home6.c │ │ │ ├── home7.c │ │ │ ├── priv1.c │ │ │ ├── priv2.c │ │ │ ├── priv3.c │ │ │ ├── priv4.c │ │ │ ├── priv5.c │ │ │ ├── priv6.c │ │ │ ├── priv7.c │ │ │ ├── room1.c │ │ │ ├── room2.c │ │ │ ├── room3.c │ │ │ ├── room4.c │ │ │ ├── room5.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── square.c │ │ │ ├── store.c │ │ │ ├── str1.c │ │ │ ├── str10.c │ │ │ ├── str2.c │ │ │ ├── str3.c │ │ │ ├── str4.c │ │ │ ├── str5.c │ │ │ ├── str6.c │ │ │ ├── str7.c │ │ │ ├── str8.c │ │ │ ├── str9.c │ │ │ ├── telhome.c │ │ │ ├── telparlor.c │ │ │ ├── telroom1.c │ │ │ ├── telroom2.c │ │ │ ├── telroom3.c │ │ │ ├── telroom4.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ ├── trail3.c │ │ │ ├── warehouse1.c │ │ │ ├── warehouse2.c │ │ │ ├── well1.c │ │ │ └── well2.c │ ├── haunted │ │ ├── haunted.h │ │ └── inherit │ │ │ └── field_inherit.c │ ├── heartland │ │ └── merian_trade_inherit.c │ ├── mon │ │ ├── aloysius.c │ │ ├── cgnome1.c │ │ ├── cgnome2.c │ │ ├── cmerc.c │ │ ├── darcy.c │ │ ├── emmeth.c │ │ ├── fgnome.c │ │ ├── fgnome1.c │ │ ├── kai.c │ │ ├── legionnaire.c │ │ ├── malgoroth.c │ │ ├── merc.c │ │ ├── mgnome.c │ │ └── mgnome1.c │ ├── obj │ │ ├── apple.c │ │ ├── bread.c │ │ ├── coffee.c │ │ ├── darkwood_sign.c │ │ ├── fish.c │ │ ├── jerky.c │ │ ├── nuts.c │ │ ├── ode_to_torment.c │ │ ├── peach.c │ │ ├── pear.c │ │ ├── plum.c │ │ ├── potgoods.c │ │ ├── signpost.c │ │ └── venison.c │ ├── room │ │ ├── backroom.c │ │ ├── backstage.c │ │ ├── rhapsody.c │ │ ├── road1.c │ │ ├── road10.c │ │ ├── road11.c │ │ ├── road12.c │ │ ├── road13.c │ │ ├── road14.c │ │ ├── road15.c │ │ ├── road16.c │ │ ├── road17.c │ │ ├── road18.c │ │ ├── road19.c │ │ ├── road2.c │ │ ├── road20.c │ │ ├── road21.c │ │ ├── road3.c │ │ ├── road4.c │ │ ├── road5.c │ │ ├── road6.c │ │ ├── road7.c │ │ ├── road8.c │ │ ├── road9.c │ │ ├── roof.c │ │ └── tetherarea.c │ ├── tabor │ │ ├── include │ │ │ ├── arch1.c │ │ │ ├── arch2.c │ │ │ ├── arch3.c │ │ │ ├── arch4.c │ │ │ ├── arch5.c │ │ │ ├── arch6.c │ │ │ ├── armor_storage.c │ │ │ ├── firbolg_storage.c │ │ │ ├── gstorage.c │ │ │ ├── instrument_storage.c │ │ │ ├── jeweler.c │ │ │ ├── potions-storage.c │ │ │ ├── road.c │ │ │ ├── tabor.h │ │ │ ├── tabor_clothing.c │ │ │ ├── tailor-storage.c │ │ │ └── weapon_storage.c │ │ ├── mon │ │ │ ├── Tjailer.c │ │ │ ├── aemilia.c │ │ │ ├── alizaire.c │ │ │ ├── barnaby.c │ │ │ ├── cirtwith.c │ │ │ ├── connor.c │ │ │ ├── cornelia.c │ │ │ ├── cynthia.c │ │ │ ├── dunkirk.c │ │ │ ├── guard.c │ │ │ ├── guard_guide.c │ │ │ ├── guardnew.c │ │ │ ├── hanif.c │ │ │ ├── kelsey.c │ │ │ ├── leon.c │ │ │ ├── librarian.c │ │ │ ├── llewddyn.c │ │ │ ├── madhu.c │ │ │ ├── magistrate.c │ │ │ ├── mayyadah.c │ │ │ ├── naldek.c │ │ │ ├── niall.c │ │ │ ├── peralin.c │ │ │ ├── peralin_storage.c │ │ │ ├── pig_and_whistle.c │ │ │ ├── psi_gemcutter.c │ │ │ ├── raetsel.c │ │ │ ├── rosalyn.c │ │ │ ├── rusilas.c │ │ │ ├── seif.c │ │ │ ├── shahryar.c │ │ │ ├── shihab.c │ │ │ ├── tabor_clerk.c │ │ │ ├── toma.c │ │ │ ├── wiegand.c │ │ │ └── wizbam.c │ │ ├── obj │ │ │ ├── MAP │ │ │ ├── NEW_MAP │ │ │ ├── ban_tabor_sign.c │ │ │ ├── belt.c │ │ │ ├── blushing_laughter.c │ │ │ ├── c_bracelet.c │ │ │ ├── c_choli.c │ │ │ ├── c_clasp.c │ │ │ ├── c_crystal.c │ │ │ ├── c_cufflinks.c │ │ │ ├── c_earrings.c │ │ │ ├── c_ghagra.c │ │ │ ├── c_kameez.c │ │ │ ├── c_leggings.c │ │ │ ├── c_pantaloons.c │ │ │ ├── c_ring.c │ │ │ ├── c_robe.c │ │ │ ├── c_salwar.c │ │ │ ├── c_sari.c │ │ │ ├── c_sash.c │ │ │ ├── c_strand.c │ │ │ ├── c_turban.c │ │ │ ├── c_vest.c │ │ │ ├── d_bracelet.c │ │ │ ├── d_choli.c │ │ │ ├── d_clasp.c │ │ │ ├── d_crystal.c │ │ │ ├── d_cufflinks.c │ │ │ ├── d_earrings.c │ │ │ ├── d_ghagra.c │ │ │ ├── d_kameez.c │ │ │ ├── d_leggings.c │ │ │ ├── d_pantaloons.c │ │ │ ├── d_ring.c │ │ │ ├── d_robe.c │ │ │ ├── d_salwar.c │ │ │ ├── d_sari.c │ │ │ ├── d_sash.c │ │ │ ├── d_strand.c │ │ │ ├── d_turban.c │ │ │ ├── d_vest.c │ │ │ ├── enraptured_gaze.c │ │ │ ├── invitation.c │ │ │ ├── jail_key.c │ │ │ ├── joyful_heart.c │ │ │ ├── map.c │ │ │ ├── potions │ │ │ │ ├── cure_blindness.c │ │ │ │ ├── cure_poison.c │ │ │ │ ├── det_invis.c │ │ │ │ ├── extra_heal.c │ │ │ │ ├── fmpotion.c │ │ │ │ ├── healing.c │ │ │ │ ├── hurt.c │ │ │ │ ├── invisible.c │ │ │ │ ├── mfpotion.c │ │ │ │ ├── paralyze.c │ │ │ │ ├── poison.c │ │ │ │ ├── raging_heal.c │ │ │ │ └── weaken.c │ │ │ ├── spice_of_the_soul.c │ │ │ ├── tabor_chess.c │ │ │ └── tabor_laws │ │ ├── road │ │ │ ├── road.h │ │ │ ├── road1.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road18.c │ │ │ ├── road19.c │ │ │ ├── road2.c │ │ │ ├── road20.c │ │ │ ├── road21.c │ │ │ ├── road22.c │ │ │ ├── road23.c │ │ │ ├── road24.c │ │ │ ├── road25.c │ │ │ ├── road26.c │ │ │ ├── road27.c │ │ │ ├── road28.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ └── road9.c │ │ ├── room │ │ │ ├── archery.c │ │ │ ├── armor.c │ │ │ ├── auppenser1.c │ │ │ ├── auppenser2.c │ │ │ ├── auppenser3.c │ │ │ ├── auppenser4.c │ │ │ ├── bank.c │ │ │ ├── cartroom.c │ │ │ ├── castle1.c │ │ │ ├── castle2.c │ │ │ ├── church.c │ │ │ ├── cnc_backstage.c │ │ │ ├── cncbar.c │ │ │ ├── cnccafe.c │ │ │ ├── cnchall.c │ │ │ ├── cnchall1.c │ │ │ ├── cnchall2.c │ │ │ ├── cnchall3.c │ │ │ ├── cnchall4.c │ │ │ ├── cncinn.c │ │ │ ├── cncstable.c │ │ │ ├── cncstable1.c │ │ │ ├── cncstage.c │ │ │ ├── compstore1.c │ │ │ ├── compstore2.c │ │ │ ├── fencer.c │ │ │ ├── firbolg_smith.c │ │ │ ├── forge.c │ │ │ ├── gallows.c │ │ │ ├── greene1.c │ │ │ ├── greene2.c │ │ │ ├── greene3.c │ │ │ ├── gstore.c │ │ │ ├── guestroom1.c │ │ │ ├── guestroom2.c │ │ │ ├── guestroom3.c │ │ │ ├── guestroom4.c │ │ │ ├── gwy1.c │ │ │ ├── gwy2.c │ │ │ ├── gwy3.c │ │ │ ├── gwy4.c │ │ │ ├── gwy5.c │ │ │ ├── gwy6.c │ │ │ ├── healer.c │ │ │ ├── instruments.c │ │ │ ├── jail.c │ │ │ ├── jail_cell.c │ │ │ ├── lot-jeweler.c │ │ │ ├── lot-library.c │ │ │ ├── lot-tailor.c │ │ │ ├── lot-weapon.c │ │ │ ├── math1.c │ │ │ ├── math10.c │ │ │ ├── math11.c │ │ │ ├── math12.c │ │ │ ├── math2 │ │ │ ├── math2.c │ │ │ ├── math3.c │ │ │ ├── math4.c │ │ │ ├── math5.c │ │ │ ├── math6.c │ │ │ ├── math7.c │ │ │ ├── math8.c │ │ │ ├── math9.c │ │ │ ├── new_tailor.c │ │ │ ├── pig_and_whistle.c │ │ │ ├── potion1.c │ │ │ ├── psicomps.c │ │ │ ├── psicomps2.c │ │ │ ├── psientry.c │ │ │ ├── psifoyer.c │ │ │ ├── psihall.c │ │ │ ├── psilounge.c │ │ │ ├── psimeditate.c │ │ │ ├── psistore.c │ │ │ ├── roof.c │ │ │ ├── scribe.c │ │ │ ├── square.c │ │ │ ├── taborbardcomps.c │ │ │ ├── tconf.c │ │ │ ├── tfloor1.c │ │ │ ├── tfloor2.c │ │ │ ├── tfloor3.c │ │ │ ├── tfloor4.c │ │ │ ├── tfoyer.c │ │ │ ├── tgate.c │ │ │ ├── tlab.c │ │ │ ├── tlib.c │ │ │ ├── trainer.c │ │ │ ├── tstuff.c │ │ │ ├── vala1.c │ │ │ ├── vala2.c │ │ │ ├── vala3.c │ │ │ ├── way1.c │ │ │ ├── way2.c │ │ │ └── way3.c │ │ └── rooms │ ├── underpath │ │ └── inherit │ │ │ └── path.c │ ├── waterhaven │ │ ├── obj │ │ │ └── staff.c │ │ ├── street1.c │ │ ├── street2.c │ │ └── street3.c │ ├── watermargin │ │ ├── doctor.c │ │ ├── pator │ │ │ ├── H2Osword1.c │ │ │ ├── README │ │ │ ├── boathouse.h │ │ │ ├── boathouse1.c │ │ │ ├── boathouse2.c │ │ │ ├── boathouse3.c │ │ │ ├── boathouse4.c │ │ │ ├── boathouse5.c │ │ │ ├── dock.c │ │ │ ├── key1.c │ │ │ └── krugan.c │ │ ├── street1.c │ │ ├── street2.c │ │ └── town_hall.c │ ├── weaps │ │ └── pan.c │ ├── yntala │ │ ├── 1forest1.c │ │ ├── bunderwater.c │ │ ├── changes.txt │ │ ├── dunderwater.c │ │ ├── endhid.c │ │ ├── fle.c │ │ ├── forest1.c │ │ ├── forest2.c │ │ ├── forest3.c │ │ ├── hidin.c │ │ ├── inuw.c │ │ ├── meadow.c │ │ ├── meadowedge.c │ │ ├── mon │ │ │ ├── brownbear.c │ │ │ ├── brownlizard.c │ │ │ ├── bubble.c │ │ │ ├── centaur.c │ │ │ ├── centaurc.c │ │ │ ├── centaurc2.c │ │ │ ├── centaurcl.c │ │ │ ├── centaurg.c │ │ │ ├── direbear.c │ │ │ ├── direwolf.c │ │ │ ├── dknight.c │ │ │ ├── fish1.c │ │ │ ├── fish2.c │ │ │ ├── fish3.c │ │ │ ├── gfigure.c │ │ │ ├── girallon.c │ │ │ ├── greenhag.c │ │ │ ├── greenlizard.c │ │ │ ├── gyuan-ti.c │ │ │ ├── lak.c │ │ │ ├── lak2.c │ │ │ ├── lep.c │ │ │ ├── lep2.c │ │ │ ├── lepking.c │ │ │ ├── purplefish.c │ │ │ ├── rsq.c │ │ │ ├── shalarin.c │ │ │ ├── shalarin2.c │ │ │ ├── shark1.c │ │ │ ├── wasp.c │ │ │ ├── yuan-tih.c │ │ │ └── yuan-tip.c │ │ ├── obj │ │ │ ├── Carmor.c │ │ │ ├── amulet1.c │ │ │ ├── amulet2.c │ │ │ ├── aring.c │ │ │ ├── blackcloak.c │ │ │ ├── book.c │ │ │ ├── brambleb.c │ │ │ ├── bring.c │ │ │ ├── cluster.c │ │ │ ├── crown.c │ │ │ ├── forestcloak.c │ │ │ ├── forestdress.c │ │ │ ├── forestdress1.c │ │ │ ├── gdagger.c │ │ │ ├── grape.c │ │ │ ├── leggings.c │ │ │ ├── luspear.c │ │ │ ├── old_key.c │ │ │ ├── orchid.c │ │ │ ├── parchment1.c │ │ │ ├── pbreastplate.c │ │ │ ├── pbreastplatereg.c │ │ │ ├── shammer.c │ │ │ ├── shortsleevedshirt.c │ │ │ ├── smokedfish.c │ │ │ ├── snakearmband.c │ │ │ ├── uspear.c │ │ │ ├── vinewhip.c │ │ │ ├── wildberries.c │ │ │ └── wildflowers.c │ │ ├── river.c │ │ ├── rooms │ │ │ ├── bak │ │ │ │ ├── sec1.c │ │ │ │ ├── sec2.c │ │ │ │ ├── sec3.c │ │ │ │ ├── sec4.c │ │ │ │ └── sec5.c │ │ │ ├── base.c │ │ │ ├── centermed.c │ │ │ ├── doorroom.c │ │ │ ├── eor.backup │ │ │ ├── eor.c │ │ │ ├── forest11.c │ │ │ ├── forest12.c │ │ │ ├── forest120.c │ │ │ ├── forest121.c │ │ │ ├── forest122.c │ │ │ ├── forest123.c │ │ │ ├── forest124.c │ │ │ ├── forest125.c │ │ │ ├── forest126.c │ │ │ ├── forest127.c │ │ │ ├── forest128.c │ │ │ ├── forest129.c │ │ │ ├── forest13.c │ │ │ ├── forest130.c │ │ │ ├── forest131.c │ │ │ ├── forest132.c │ │ │ ├── forest133.c │ │ │ ├── forest134.c │ │ │ ├── forest135.c │ │ │ ├── forest136.c │ │ │ ├── forest137.c │ │ │ ├── forest138.c │ │ │ ├── forest139.c │ │ │ ├── forest14.c │ │ │ ├── forest140.c │ │ │ ├── forest141.c │ │ │ ├── forest142.c │ │ │ ├── forest143.c │ │ │ ├── forest144.c │ │ │ ├── forest145.c │ │ │ ├── forest146.c │ │ │ ├── forest147.c │ │ │ ├── forest148.c │ │ │ ├── forest149.c │ │ │ ├── forest15.c │ │ │ ├── forest150.c │ │ │ ├── forest151.c │ │ │ ├── forest152.c │ │ │ ├── forest153.c │ │ │ ├── forest154.c │ │ │ ├── forest155.c │ │ │ ├── forest156.c │ │ │ ├── forest157.c │ │ │ ├── forest158.c │ │ │ ├── forest159.c │ │ │ ├── forest16.c │ │ │ ├── forest160.c │ │ │ ├── forest161.c │ │ │ ├── forest162.c │ │ │ ├── forest163.c │ │ │ ├── forest164.c │ │ │ ├── forest165.c │ │ │ ├── forest166.c │ │ │ ├── forest167.c │ │ │ ├── forest168.c │ │ │ ├── forest169.c │ │ │ ├── forest17.c │ │ │ ├── forest170.c │ │ │ ├── forest171.c │ │ │ ├── forest172.c │ │ │ ├── forest173.c │ │ │ ├── forest175.c │ │ │ ├── forest176.c │ │ │ ├── forest177.c │ │ │ ├── forest178.c │ │ │ ├── forest179.c │ │ │ ├── forest18.c │ │ │ ├── forest19.c │ │ │ ├── forest21.c │ │ │ ├── forest22.c │ │ │ ├── forest23.c │ │ │ ├── forest230.c │ │ │ ├── forest231.c │ │ │ ├── forest232.c │ │ │ ├── forest233.c │ │ │ ├── forest234.c │ │ │ ├── forest235.c │ │ │ ├── forest236.c │ │ │ ├── forest237.c │ │ │ ├── forest238.c │ │ │ ├── forest239.c │ │ │ ├── forest24.c │ │ │ ├── forest240.c │ │ │ ├── forest241.c │ │ │ ├── forest242.c │ │ │ ├── forest243.c │ │ │ ├── forest244.c │ │ │ ├── forest245.c │ │ │ ├── forest246.c │ │ │ ├── forest247.c │ │ │ ├── forest248.c │ │ │ ├── forest249.c │ │ │ ├── forest25.c │ │ │ ├── forest250.c │ │ │ ├── forest251.c │ │ │ ├── forest252.c │ │ │ ├── forest253.c │ │ │ ├── forest26.c │ │ │ ├── forest27.c │ │ │ ├── forest28.c │ │ │ ├── forest29.c │ │ │ ├── forest31.c │ │ │ ├── forest32.c │ │ │ ├── forest33.c │ │ │ ├── forestpath.c │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hall4.c │ │ │ ├── hall6.c │ │ │ ├── hall7.c │ │ │ ├── hid1.c │ │ │ ├── hid10.c │ │ │ ├── hid11.c │ │ │ ├── hid12.c │ │ │ ├── hid13.c │ │ │ ├── hid14.c │ │ │ ├── hid15.c │ │ │ ├── hid16.c │ │ │ ├── hid17.c │ │ │ ├── hid18.c │ │ │ ├── hid19.c │ │ │ ├── hid2.c │ │ │ ├── hid20.c │ │ │ ├── hid21.c │ │ │ ├── hid22.c │ │ │ ├── hid23.c │ │ │ ├── hid24.c │ │ │ ├── hid25.c │ │ │ ├── hid26.c │ │ │ ├── hid27.c │ │ │ ├── hid28.c │ │ │ ├── hid29.c │ │ │ ├── hid3.c │ │ │ ├── hid30.c │ │ │ ├── hid31.c │ │ │ ├── hid32.c │ │ │ ├── hid33.c │ │ │ ├── hid34.c │ │ │ ├── hid35.c │ │ │ ├── hid36.c │ │ │ ├── hid37.c │ │ │ ├── hid38.c │ │ │ ├── hid39.c │ │ │ ├── hid4.c │ │ │ ├── hid40.c │ │ │ ├── hid401.c │ │ │ ├── hid41.c │ │ │ ├── hid42.c │ │ │ ├── hid43.c │ │ │ ├── hid44.c │ │ │ ├── hid5.c │ │ │ ├── hid6.c │ │ │ ├── hid7.c │ │ │ ├── hid8.c │ │ │ ├── hid9.c │ │ │ ├── lepland.c │ │ │ ├── leplande.c │ │ │ ├── leplandn.c │ │ │ ├── leplands.c │ │ │ ├── leplandw.c │ │ │ ├── meadow1.c │ │ │ ├── meadow2.c │ │ │ ├── meadow3.c │ │ │ ├── meadow4.c │ │ │ ├── meadowedge1.c │ │ │ ├── meadowedge2.c │ │ │ ├── meadowedge3.c │ │ │ ├── meadowedge4.c │ │ │ ├── meadowedge5.c │ │ │ ├── meadowedge6.c │ │ │ ├── meadowedge7.c │ │ │ ├── meadowedge8.c │ │ │ ├── oasis.c │ │ │ ├── river1.c │ │ │ ├── river2.c │ │ │ ├── river3.c │ │ │ ├── river4.c │ │ │ ├── river5.c │ │ │ ├── river6.c │ │ │ ├── rroom.c │ │ │ ├── scave.c │ │ │ ├── scave2.c │ │ │ ├── scave3.c │ │ │ ├── scave4.c │ │ │ ├── shaft1.c │ │ │ ├── shaft2.c │ │ │ ├── shaft3.c │ │ │ ├── shaft4.c │ │ │ ├── shaft5.c │ │ │ ├── shaft6.c │ │ │ ├── shaft7.c │ │ │ ├── spassage.c │ │ │ ├── spassage2.c │ │ │ ├── spring.c │ │ │ ├── sroom.c │ │ │ ├── study.c │ │ │ ├── thornroom.c │ │ │ ├── top.c │ │ │ ├── tree2.c │ │ │ ├── tree3.c │ │ │ ├── treeroom.c │ │ │ ├── uw1.c │ │ │ ├── uw10.c │ │ │ ├── uw11.c │ │ │ ├── uw12.c │ │ │ ├── uw13.c │ │ │ ├── uw14.c │ │ │ ├── uw15.c │ │ │ ├── uw16.c │ │ │ ├── uw17.c │ │ │ ├── uw18.c │ │ │ ├── uw19.c │ │ │ ├── uw2.c │ │ │ ├── uw20.c │ │ │ ├── uw21.c │ │ │ ├── uw22.c │ │ │ ├── uw23.c │ │ │ ├── uw24.c │ │ │ ├── uw25.c │ │ │ ├── uw3.c │ │ │ ├── uw4.c │ │ │ ├── uw5.c │ │ │ ├── uw6.c │ │ │ ├── uw7.c │ │ │ ├── uw8.c │ │ │ └── uw9.c │ │ ├── underwater.c │ │ └── yntala.h │ └── zin │ │ ├── forest.map │ │ ├── forest1.c │ │ ├── forest10.c │ │ ├── forest11.c │ │ ├── forest12.c │ │ ├── forest13.c │ │ ├── forest14.c │ │ ├── forest15.c │ │ ├── forest16.c │ │ ├── forest17.c │ │ ├── forest18.c │ │ ├── forest19.c │ │ ├── forest2.c │ │ ├── forest20.c │ │ ├── forest21.c │ │ ├── forest22.c │ │ ├── forest23.c │ │ ├── forest24.c │ │ ├── forest25.c │ │ ├── forest26.c │ │ ├── forest27.c │ │ ├── forest28.c │ │ ├── forest29.c │ │ ├── forest3.c │ │ ├── forest30.c │ │ ├── forest4.c │ │ ├── forest4b.c │ │ ├── forest5.c │ │ ├── forest6.c │ │ ├── forest7.c │ │ ├── forest8.c │ │ ├── forest9.c │ │ ├── mon │ │ ├── cub.c │ │ ├── dire.c │ │ ├── dwarf.c │ │ ├── goblin.c │ │ ├── kobold_guard.c │ │ ├── kobold_shaman.c │ │ ├── nymph.c │ │ └── water_troll.c │ │ ├── obj │ │ ├── shaman_robe.c │ │ └── stone.c │ │ ├── quest.doc │ │ ├── temple1.c │ │ ├── temple2.c │ │ ├── wolf_den.c │ │ └── zin.h ├── db │ ├── Zyrian.db │ ├── Zyrian.dbh │ ├── Zyrianrandom.db │ ├── adelaiderandom.db │ ├── akanar.db │ ├── akanar.dbh │ ├── alchemist.db │ ├── alchemist.dbh │ ├── alchemistrandom.db │ ├── alinbarrandom.db │ ├── alonso.db │ ├── alonso.dbh │ ├── alradin.db │ ├── alradin.dbh │ ├── amrarandom.db │ ├── aravilar.db │ ├── aravilar.dbh │ ├── aravilarrandom.db │ ├── armors.db │ ├── armors.dbh │ ├── armorsrandom.db │ ├── arvanador.db │ ├── arvanador.dbh │ ├── arvanadorrandom.db │ ├── austus.db │ ├── austus.dbh │ ├── austusrandom.db │ ├── barkeep.db │ ├── barkeep.dbh │ ├── barkeep1.db │ ├── barkeep1.dbh │ ├── barkeep2random.db │ ├── bokara.db │ ├── bokara.dbh │ ├── bokararandom.db │ ├── bors.db │ ├── bors.dbh │ ├── breilia.db │ ├── breilia.dbh │ ├── breiliarandom.db │ ├── buemor.db │ ├── buemor.dbh │ ├── caelebrandom.db │ ├── calcistor.db │ ├── calcistor.dbh │ ├── caldon.db.sav │ ├── caldon.dbh.sav │ ├── caldur.db │ ├── caldur.dbh │ ├── caldurrandom.db │ ├── cassius.db │ ├── cassius.dbh │ ├── cervantes.db │ ├── cervantes.dbh │ ├── cervantesrandom.db │ ├── cornelia.db │ ├── cornelia.dbh │ ├── corneliarandom.db │ ├── daven.db │ ├── daven.dbh │ ├── davenrandom.db │ ├── dionysus.db │ ├── dionysus.dbh │ ├── dionysusrandom.db │ ├── dratharm.db │ ├── dratharm.dbh │ ├── dratharmrandom.db │ ├── drisman.db │ ├── drisman.dbh │ ├── drismanrandom.db │ ├── dunkirk.db │ ├── dunkirk.dbh │ ├── fairy.db │ ├── fairy.dbh │ ├── fairyrandom.db │ ├── flugar.db │ ├── flugar.dbh │ ├── flugarrandom.db │ ├── gaheris.db │ ├── gaheris.dbh │ ├── glevethrandom.db │ ├── granan.db │ ├── granan.dbh │ ├── gretam.db │ ├── gretam.dbh │ ├── gretamrandom.db │ ├── guyon.db │ ├── guyon.dbh │ ├── hettmanrandom.db │ ├── isabel.db │ ├── isabel.dbh │ ├── isabelrandom.db │ ├── jacobrandom.db │ ├── jeweler.db │ ├── jeweler.dbh │ ├── jewelerrandom.db │ ├── joe.db │ ├── joe.dbh │ ├── joerandom.db │ ├── joerandom.dbh │ ├── joerumor.db │ ├── joerumor.dbh │ ├── kedathia.db │ ├── kedathia.dbh │ ├── killer.db │ ├── killer.dbh │ ├── kolito.db │ ├── kolito.dbh │ ├── magis.db │ ├── magis.dbh │ ├── magisrandom.db │ ├── manuel.db │ ├── manuel.dbh │ ├── masjockrandom.db │ ├── matthew.db │ ├── matthew.dbh │ ├── matthewrandom.db │ ├── miscvendors.db │ ├── miscvendors.dbh │ ├── mordor.db │ ├── mordor.dbh │ ├── mordorrandom.db │ ├── mortius.db │ ├── mortius.dbh │ ├── mortiusrandom.db │ ├── nicculis.db │ ├── nicculis.dbh │ ├── nicculisrandom.db │ ├── nsykahrandom.db │ ├── p_akadi.db │ ├── p_akadi.dbh │ ├── p_akadirandom.db │ ├── p_anhur.db │ ├── p_anhur.dbh │ ├── p_auril.db │ ├── p_auril.dbh │ ├── p_aurilrandom.db │ ├── p_cyric.db │ ├── p_cyric.dbh │ ├── p_cyricrandom.db │ ├── p_eldath.db │ ├── p_eldath.dbh │ ├── p_eldathrandom.db │ ├── p_grumbar.db │ ├── p_grumbar.dbh │ ├── p_grumbarrandom.db │ ├── p_helm.db │ ├── p_helm.dbh │ ├── p_helmrandom.db │ ├── p_istishia.db │ ├── p_istishia.dbh │ ├── p_istishiarandom.db │ ├── p_kelemvor.db │ ├── p_kelemvor.dbh │ ├── p_kelemvorrandom.db │ ├── p_kossuth.db │ ├── p_kossuth.dbh │ ├── p_kossuthrandom.db │ ├── p_lathander.db │ ├── p_lathander.dbh │ ├── p_loviatar.db │ ├── p_loviatar.dbh │ ├── p_loviatarrandom.db │ ├── p_mask.db │ ├── p_mask.dbh │ ├── p_maskrandom.db │ ├── p_mystra.db │ ├── p_mystra.dbh │ ├── p_mystrarandom.db │ ├── p_randomloviatar.db │ ├── p_selune.db │ ├── p_selune.dbh │ ├── p_selunerandom.db │ ├── p_shar.db │ ├── p_shar.dbh │ ├── p_silvanus.db │ ├── p_silvanus.dbh │ ├── p_silvanusrandom.db │ ├── p_tempus.db │ ├── p_tempus.dbh │ ├── p_tempusrandom.db │ ├── p_torm.db │ ├── p_torm.dbh │ ├── p_tormrandom.db │ ├── p_xvim.db │ ├── p_xvim.dbh │ ├── p_xvimrandom.db │ ├── pendaxin.db │ ├── pendaxin.dbh │ ├── pendaxinrandom.db │ ├── penny.db │ ├── penny.dbh │ ├── petire.db │ ├── petire.dbh │ ├── pirate.db │ ├── pirate.dbh │ ├── plague.db │ ├── plague.dbh │ ├── prisonerrandom.db │ ├── raetsel.db │ ├── raetsel.dbh │ ├── raetselrandom.db │ ├── ranger.db │ ├── ranger.dbh │ ├── rosalynrandom.db │ ├── rosinden.db │ ├── rosinden.dbh │ ├── samson.db │ ├── samson.dbh │ ├── selyvia.db │ ├── selyvia.dbh │ ├── selyviarandom.db │ ├── shaman.db │ ├── shaman.dbh │ ├── shepherd.db │ ├── shepherd.dbh │ ├── shry_fairyrandom.db │ ├── soren.db.sav │ ├── soren.dbh.sav │ ├── sorenrandom.db.sav │ ├── tailor.db │ ├── tailor.dbh │ ├── tailorrandom.db │ ├── teller.db │ ├── teller.dbh │ ├── tellerrandom.db │ ├── temple_cleric.db │ ├── temple_cleric.dbh │ ├── testingrumor.db │ ├── testingrumor.dbh │ ├── ticio.db │ ├── ticio.dbh │ ├── ticiorandom.db │ ├── tonovi_merchant.db │ ├── tonovi_merchant.dbh │ ├── tonovi_merchantrandom.db │ ├── valchor.db │ ├── valchor.dbh │ ├── valchorrandom.db │ ├── waitress.db │ ├── waitress.dbh │ ├── weapons.db │ ├── weapons.dbh │ ├── whispers.db │ ├── whispers.dbh │ ├── wiegand.db │ ├── wiegand.dbh │ └── wiegandrandom.db ├── deku │ ├── armours │ │ ├── acheck.log │ │ ├── amulet_of_protection.c │ │ ├── boot.c │ │ ├── boots_of_twilight.c │ │ ├── bracers.c │ │ ├── brobe.c │ │ ├── chain.c │ │ ├── cloak1.c │ │ ├── cloak2.c │ │ ├── cloak_inh.c │ │ ├── diamond_helm.c │ │ ├── dralthoraks_flesh.c │ │ ├── eviscerator_exoskeleton.c │ │ ├── fire_band.c │ │ ├── fire_belt.c │ │ ├── fire_cloak.c │ │ ├── fire_crown.c │ │ ├── fire_gloves.c │ │ ├── fire_robe.c │ │ ├── fire_sandals.c │ │ ├── hide.c │ │ ├── leather.c │ │ ├── leather1.c │ │ ├── plate.c │ │ ├── priest_robe.c │ │ ├── ring.c │ │ ├── ring_p.c │ │ ├── ring_p_base.c │ │ ├── robe.c │ │ ├── robe.gre │ │ ├── robe1.c │ │ └── spellring.c │ ├── carcosa │ │ └── weapons │ │ │ └── mace.c │ ├── catacombs │ │ ├── cat_first_entry.c │ │ ├── cat_first_room_1.c │ │ ├── cat_first_room_2.c │ │ ├── cat_first_room_3.c │ │ ├── cat_first_room_4.c │ │ ├── cat_first_room_5.c │ │ ├── cat_first_room_6.c │ │ ├── cat_first_sr_1.c │ │ ├── cat_first_sr_2.c │ │ ├── cat_first_sr_3.c │ │ ├── cat_hw_first_1.c │ │ ├── cat_hw_first_10.c │ │ ├── cat_hw_first_11.c │ │ ├── cat_hw_first_12.c │ │ ├── cat_hw_first_13.c │ │ ├── cat_hw_first_14.c │ │ ├── cat_hw_first_15.c │ │ ├── cat_hw_first_16.c │ │ ├── cat_hw_first_17.c │ │ ├── cat_hw_first_18.c │ │ ├── cat_hw_first_19.c │ │ ├── cat_hw_first_2.c │ │ ├── cat_hw_first_20.c │ │ ├── cat_hw_first_21.c │ │ ├── cat_hw_first_22.c │ │ ├── cat_hw_first_23.c │ │ ├── cat_hw_first_3.c │ │ ├── cat_hw_first_4.c │ │ ├── cat_hw_first_5.c │ │ ├── cat_hw_first_6.c │ │ ├── cat_hw_first_7.c │ │ ├── cat_hw_first_8.c │ │ ├── cat_hw_first_9.c │ │ ├── cat_hw_sec_1.c │ │ ├── cat_hw_sec_10.c │ │ ├── cat_hw_sec_11.c │ │ ├── cat_hw_sec_12.c │ │ ├── cat_hw_sec_13.c │ │ ├── cat_hw_sec_14.c │ │ ├── cat_hw_sec_15.c │ │ ├── cat_hw_sec_2.c │ │ ├── cat_hw_sec_3.c │ │ ├── cat_hw_sec_4.c │ │ ├── cat_hw_sec_5.c │ │ ├── cat_hw_sec_6.c │ │ ├── cat_hw_sec_7.c │ │ ├── cat_hw_sec_8.c │ │ ├── cat_hw_sec_9.c │ │ ├── cat_room_sec_1.c │ │ ├── cat_sec_entry.c │ │ └── cat_sec_room_1.c │ ├── dark │ │ ├── air.c │ │ ├── captain.c │ │ ├── captain2.c │ │ ├── cleric.c │ │ ├── dcave1.c │ │ ├── doom.c │ │ ├── door.c │ │ ├── dquarter.c │ │ ├── drider.c │ │ ├── droom.c │ │ ├── droom1.c │ │ ├── droom10.c │ │ ├── droom2.c │ │ ├── droom3.c │ │ ├── droom4.c │ │ ├── droom5.c │ │ ├── droom6.c │ │ ├── droom7.c │ │ ├── droom8.c │ │ ├── droom9.c │ │ ├── elf1.c │ │ ├── elf2.c │ │ ├── elf3.c │ │ ├── elf4.c │ │ ├── elf5.c │ │ ├── elf6.c │ │ ├── elf7.c │ │ ├── elf8.c │ │ ├── elf9.c │ │ ├── elite.c │ │ ├── elite2.c │ │ ├── elite3.c │ │ ├── giants.c │ │ ├── group.c │ │ ├── hall1.c │ │ ├── hall2.c │ │ ├── hall3.c │ │ ├── hall4.c │ │ ├── hall5.c │ │ ├── hall6.c │ │ ├── hall7.c │ │ ├── human.c │ │ ├── lair.c │ │ ├── lizard.c │ │ ├── mobat.c │ │ ├── narthex.c │ │ ├── pit0.c │ │ ├── pool.c │ │ ├── pub.c │ │ ├── queen.c │ │ ├── room1.c │ │ ├── room2.c │ │ ├── room3.c │ │ ├── room4.c │ │ ├── room5.c │ │ ├── room6.c │ │ ├── room7.c │ │ ├── room9.c │ │ ├── shar_ruins.c │ │ ├── stair1.c │ │ ├── stair2.c │ │ ├── stair3.c │ │ ├── stair4.c │ │ ├── stair5.c │ │ ├── tomb.c │ │ ├── tunnel0.c │ │ ├── tunnel1.c │ │ ├── tunnel2.c │ │ ├── tunnel3.c │ │ ├── vampire.c │ │ └── vault.c │ ├── forest │ │ ├── dforest10-1.c │ │ ├── dforest10-10.c │ │ ├── dforest10-11.c │ │ ├── dforest10-2.c │ │ ├── dforest10-3.c │ │ ├── dforest10-4.c │ │ ├── dforest10-5.c │ │ ├── dforest10-6.c │ │ ├── dforest10-7.c │ │ ├── dforest10-8.c │ │ ├── dforest10-9.c │ │ ├── dforest11-1.c │ │ ├── dforest11-10.c │ │ ├── dforest11-11.c │ │ ├── dforest11-2.c │ │ ├── dforest11-3.c │ │ ├── dforest11-4.c │ │ ├── dforest11-5.c │ │ ├── dforest11-6.c │ │ ├── dforest11-7.c │ │ ├── dforest11-8.c │ │ ├── dforest11-9.c │ │ ├── dforest11-al1.c │ │ ├── dforest11-al2.c │ │ ├── dforest11-al2a.c │ │ ├── dforest12-1.c │ │ ├── dforest12-10.c │ │ ├── dforest12-11.c │ │ ├── dforest12-2.c │ │ ├── dforest12-3.c │ │ ├── dforest12-4.c │ │ ├── dforest12-5.c │ │ ├── dforest12-6.c │ │ ├── dforest12-7.c │ │ ├── dforest12-8.c │ │ ├── dforest12-9.c │ │ ├── dforest13-1.c │ │ ├── dforest13-10.c │ │ ├── dforest13-11.c │ │ ├── dforest13-2.c │ │ ├── dforest13-3.c │ │ ├── dforest13-4.c │ │ ├── dforest13-5.c │ │ ├── dforest13-6.c │ │ ├── dforest13-7.c │ │ ├── dforest13-8.c │ │ ├── dforest13-9.c │ │ ├── dforest14-1.c │ │ ├── dforest14-10.c │ │ ├── dforest14-11.c │ │ ├── dforest14-2.c │ │ ├── dforest14-3.c │ │ ├── dforest14-4.c │ │ ├── dforest14-5.c │ │ ├── dforest14-6.c │ │ ├── dforest14-7.c │ │ ├── dforest14-8.c │ │ ├── dforest14-9.c │ │ ├── dforest15-1.c │ │ ├── dforest15-10.c │ │ ├── dforest15-11.c │ │ ├── dforest15-2.c │ │ ├── dforest15-3.c │ │ ├── dforest15-4.c │ │ ├── dforest15-5.c │ │ ├── dforest15-6.c │ │ ├── dforest15-7.c │ │ ├── dforest15-8.c │ │ ├── dforest15-9.c │ │ ├── dforest16-1.c │ │ ├── dforest16-10.c │ │ ├── dforest16-11.c │ │ ├── dforest16-2.c │ │ ├── dforest17-1.c │ │ ├── dforest17-10.c │ │ ├── dforest17-11.c │ │ ├── dforest17-2.c │ │ ├── dforest18-1.c │ │ ├── dforest18-10.c │ │ ├── dforest18-11.c │ │ ├── dforest18-2.c │ │ ├── dforest19-1.c │ │ ├── dforest19-10.c │ │ ├── dforest19-11.c │ │ ├── dforest19-2.c │ │ ├── dforest2-1.c │ │ ├── dforest2-10.c │ │ ├── dforest2-11.c │ │ ├── dforest2-2.c │ │ ├── dforest2-3.c │ │ ├── dforest2-4.c │ │ ├── dforest2-5.c │ │ ├── dforest2-6.c │ │ ├── dforest2-7.c │ │ ├── dforest2-8.c │ │ ├── dforest2-9.c │ │ ├── dforest20-1.c │ │ ├── dforest20-10.c │ │ ├── dforest20-11.c │ │ ├── dforest20-2.c │ │ ├── dforest21-1.c │ │ ├── dforest21-10.c │ │ ├── dforest21-11.c │ │ ├── dforest21-2.c │ │ ├── dforest22-1.c │ │ ├── dforest22-10.c │ │ ├── dforest22-11.c │ │ ├── dforest22-2.c │ │ ├── dforest23-1.c │ │ ├── dforest23-10.c │ │ ├── dforest23-11.c │ │ ├── dforest23-2.c │ │ ├── dforest23-3.c │ │ ├── dforest23-4.c │ │ ├── dforest23-5.c │ │ ├── dforest23-6.c │ │ ├── dforest23-7.c │ │ ├── dforest23-8.c │ │ ├── dforest23-9.c │ │ ├── dforest24-1.c │ │ ├── dforest24-10.c │ │ ├── dforest24-11.c │ │ ├── dforest24-2.c │ │ ├── dforest24-3.c │ │ ├── dforest24-4.c │ │ ├── dforest24-5.c │ │ ├── dforest24-6.c │ │ ├── dforest24-7.c │ │ ├── dforest24-8.c │ │ ├── dforest24-9.c │ │ ├── dforest25-1.c │ │ ├── dforest25-10.c │ │ ├── dforest25-11.c │ │ ├── dforest25-2.c │ │ ├── dforest25-3.c │ │ ├── dforest25-4.c │ │ ├── dforest25-5.c │ │ ├── dforest25-6.c │ │ ├── dforest25-7.c │ │ ├── dforest25-8.c │ │ ├── dforest25-9.c │ │ ├── dforest26-1.c │ │ ├── dforest26-10.c │ │ ├── dforest26-11.c │ │ ├── dforest26-2.c │ │ ├── dforest26-3.c │ │ ├── dforest26-4.c │ │ ├── dforest26-5.c │ │ ├── dforest26-6.c │ │ ├── dforest26-7.c │ │ ├── dforest26-8.c │ │ ├── dforest26-9.c │ │ ├── dforest27-1.c │ │ ├── dforest27-10.c │ │ ├── dforest27-11.c │ │ ├── dforest27-2.c │ │ ├── dforest27-3.c │ │ ├── dforest27-4.c │ │ ├── dforest27-5.c │ │ ├── dforest27-6.c │ │ ├── dforest27-7.c │ │ ├── dforest27-8.c │ │ ├── dforest27-9.c │ │ ├── dforest28-1.c │ │ ├── dforest28-10.c │ │ ├── dforest28-11.c │ │ ├── dforest28-2.c │ │ ├── dforest28-3.c │ │ ├── dforest28-4.c │ │ ├── dforest28-5.c │ │ ├── dforest28-6.c │ │ ├── dforest28-7.c │ │ ├── dforest28-8.c │ │ ├── dforest28-9.c │ │ ├── dforest29-1.c │ │ ├── dforest29-10.c │ │ ├── dforest29-11.c │ │ ├── dforest29-2.c │ │ ├── dforest29-3.c │ │ ├── dforest29-4.c │ │ ├── dforest29-5.c │ │ ├── dforest29-6.c │ │ ├── dforest29-7.c │ │ ├── dforest29-8.c │ │ ├── dforest29-9.c │ │ ├── dforest3-1.c │ │ ├── dforest3-10.c │ │ ├── dforest3-11.c │ │ ├── dforest3-2.c │ │ ├── dforest3-3.c │ │ ├── dforest3-4.c │ │ ├── dforest3-5.c │ │ ├── dforest3-6.c │ │ ├── dforest3-7.c │ │ ├── dforest3-8.c │ │ ├── dforest3-9.c │ │ ├── dforest30-1.c │ │ ├── dforest30-10.c │ │ ├── dforest30-11.c │ │ ├── dforest30-2.c │ │ ├── dforest30-3.c │ │ ├── dforest30-4.c │ │ ├── dforest30-5.c │ │ ├── dforest30-6.c │ │ ├── dforest30-7.c │ │ ├── dforest30-8.c │ │ ├── dforest30-9.c │ │ ├── dforest31-1.c │ │ ├── dforest31-10.c │ │ ├── dforest31-11.c │ │ ├── dforest31-2.c │ │ ├── dforest31-3.c │ │ ├── dforest31-8.c │ │ ├── dforest31-9.c │ │ ├── dforest32-1.c │ │ ├── dforest32-10.c │ │ ├── dforest32-11.c │ │ ├── dforest32-12.c │ │ ├── dforest32-13.c │ │ ├── dforest32-14.c │ │ ├── dforest32-15.c │ │ ├── dforest32-16.c │ │ ├── dforest32-2.c │ │ ├── dforest32-3.c │ │ ├── dforest32-4.c │ │ ├── dforest32-5.c │ │ ├── dforest32-6.c │ │ ├── dforest32-7.c │ │ ├── dforest32-8.c │ │ ├── dforest32-9.c │ │ ├── dforest33-1.c │ │ ├── dforest33-10.c │ │ ├── dforest33-11.c │ │ ├── dforest33-12.c │ │ ├── dforest33-13.c │ │ ├── dforest33-14.c │ │ ├── dforest33-15.c │ │ ├── dforest33-16.c │ │ ├── dforest33-2.c │ │ ├── dforest33-3.c │ │ ├── dforest33-4.c │ │ ├── dforest33-5.c │ │ ├── dforest33-6.c │ │ ├── dforest33-7.c │ │ ├── dforest33-8.c │ │ ├── dforest33-9.c │ │ ├── dforest34-1.c │ │ ├── dforest34-10.c │ │ ├── dforest34-11.c │ │ ├── dforest34-12.c │ │ ├── dforest34-13.c │ │ ├── dforest34-14.c │ │ ├── dforest34-15.c │ │ ├── dforest34-16.c │ │ ├── dforest34-2.c │ │ ├── dforest34-3.c │ │ ├── dforest34-4.c │ │ ├── dforest34-5.c │ │ ├── dforest34-6.c │ │ ├── dforest34-7.c │ │ ├── dforest34-8.c │ │ ├── dforest34-9.c │ │ ├── dforest35-1.c │ │ ├── dforest35-10.c │ │ ├── dforest35-11.c │ │ ├── dforest35-12.c │ │ ├── dforest35-13.c │ │ ├── dforest35-14.c │ │ ├── dforest35-15.c │ │ ├── dforest35-16.c │ │ ├── dforest35-2.c │ │ ├── dforest35-3.c │ │ ├── dforest35-4.c │ │ ├── dforest35-5.c │ │ ├── dforest35-6.c │ │ ├── dforest35-7.c │ │ ├── dforest35-8.c │ │ ├── dforest35-9.c │ │ ├── dforest36-1.c │ │ ├── dforest36-10.c │ │ ├── dforest36-11.c │ │ ├── dforest36-12.c │ │ ├── dforest36-13.c │ │ ├── dforest36-14.c │ │ ├── dforest36-15.c │ │ ├── dforest36-16.c │ │ ├── dforest36-2.c │ │ ├── dforest36-3.c │ │ ├── dforest36-4.c │ │ ├── dforest36-5.c │ │ ├── dforest36-6.c │ │ ├── dforest36-7.c │ │ ├── dforest36-8.c │ │ ├── dforest36-9.c │ │ ├── dforest37-1.c │ │ ├── dforest37-10.c │ │ ├── dforest37-11.c │ │ ├── dforest37-12.c │ │ ├── dforest37-13.c │ │ ├── dforest37-14.c │ │ ├── dforest37-15.c │ │ ├── dforest37-16.c │ │ ├── dforest37-17.c │ │ ├── dforest37-18.c │ │ ├── dforest37-19.c │ │ ├── dforest37-2.c │ │ ├── dforest37-20.c │ │ ├── dforest37-21.c │ │ ├── dforest37-22.c │ │ ├── dforest37-3.c │ │ ├── dforest37-4.c │ │ ├── dforest37-5.c │ │ ├── dforest37-6.c │ │ ├── dforest37-7.c │ │ ├── dforest37-8.c │ │ ├── dforest37-9.c │ │ ├── dforest4-1.c │ │ ├── dforest4-10.c │ │ ├── dforest4-11.c │ │ ├── dforest4-2.c │ │ ├── dforest4-3.c │ │ ├── dforest4-4.c │ │ ├── dforest4-5.c │ │ ├── dforest4-6.c │ │ ├── dforest4-7.c │ │ ├── dforest4-8.c │ │ ├── dforest4-9.c │ │ ├── dforest5-1.c │ │ ├── dforest5-10.c │ │ ├── dforest5-11.c │ │ ├── dforest5-2.c │ │ ├── dforest5-3.c │ │ ├── dforest5-4.c │ │ ├── dforest5-5.c │ │ ├── dforest5-6.c │ │ ├── dforest5-7.c │ │ ├── dforest5-8.c │ │ ├── dforest5-9.c │ │ ├── dforest6-1.c │ │ ├── dforest6-10.c │ │ ├── dforest6-11.c │ │ ├── dforest6-2.c │ │ ├── dforest6-3.c │ │ ├── dforest6-4.c │ │ ├── dforest6-5.c │ │ ├── dforest6-6.c │ │ ├── dforest6-7.c │ │ ├── dforest6-8.c │ │ ├── dforest6-9.c │ │ ├── dforest7-1.c │ │ ├── dforest7-2.c │ │ ├── dforest7-3.c │ │ ├── dforest7-4.c │ │ ├── dforest7-5.c │ │ ├── dforest7-6.c │ │ ├── dforest7-7.c │ │ ├── dforest7-8.c │ │ ├── dforest7-9.c │ │ ├── dforest8-1.c │ │ ├── dforest8-2.c │ │ ├── dforest8-3.c │ │ ├── dforest8-4.c │ │ ├── dforest8-5.c │ │ ├── dforest8-6.c │ │ ├── dforest8-7.c │ │ ├── dforest8-8.c │ │ ├── dforest8-9.c │ │ ├── dforest9-1.c │ │ ├── dforest9-2.c │ │ ├── dforest9-3.c │ │ ├── dforest9-4.c │ │ ├── dforest9-5.c │ │ ├── dforest9-6.c │ │ ├── dforest9-7.c │ │ ├── dforest9-8.c │ │ ├── dforest9-9.c │ │ ├── fire_tunnel │ │ │ └── rooms │ │ │ │ ├── firetemple1.c │ │ │ │ ├── firetemple2.c │ │ │ │ ├── firetemple3.c │ │ │ │ ├── firetemple4.c │ │ │ │ ├── firetemple5.c │ │ │ │ ├── firetemple6.c │ │ │ │ ├── firetemple7.c │ │ │ │ ├── firetemple8.c │ │ │ │ ├── firetemple9.c │ │ │ │ ├── firetunnele1.c │ │ │ │ ├── firetunnele10.c │ │ │ │ ├── firetunnele11.c │ │ │ │ ├── firetunnele12.c │ │ │ │ ├── firetunnele13.c │ │ │ │ ├── firetunnele14.c │ │ │ │ ├── firetunnele15.c │ │ │ │ ├── firetunnele16.c │ │ │ │ ├── firetunnele17.c │ │ │ │ ├── firetunnele18.c │ │ │ │ ├── firetunnele19.c │ │ │ │ ├── firetunnele2.c │ │ │ │ ├── firetunnele3.c │ │ │ │ ├── firetunnele4.c │ │ │ │ ├── firetunnele5.c │ │ │ │ ├── firetunnele6.c │ │ │ │ ├── firetunnele7.c │ │ │ │ ├── firetunnele8.c │ │ │ │ ├── firetunnele9.c │ │ │ │ ├── firetunnelen1.c │ │ │ │ ├── firetunnelen2.c │ │ │ │ ├── firetunnelen3.c │ │ │ │ ├── firetunnelen4.c │ │ │ │ ├── firetunnelen5.c │ │ │ │ ├── firetunnelen6.c │ │ │ │ ├── firetunnelen7.c │ │ │ │ ├── firetunneles1.c │ │ │ │ ├── firetunneles2.c │ │ │ │ ├── firetunneles3.c │ │ │ │ ├── firetunneles4.c │ │ │ │ ├── firetunneles5.c │ │ │ │ ├── firetunneles6.c │ │ │ │ ├── firetunneles7.c │ │ │ │ ├── firetunneln1.c │ │ │ │ ├── firetunneln10.c │ │ │ │ ├── firetunneln11.c │ │ │ │ ├── firetunneln12.c │ │ │ │ ├── firetunneln13.c │ │ │ │ ├── firetunneln14.c │ │ │ │ ├── firetunneln15.c │ │ │ │ ├── firetunneln16.c │ │ │ │ ├── firetunneln17.c │ │ │ │ ├── firetunneln18.c │ │ │ │ ├── firetunneln19.c │ │ │ │ ├── firetunneln2.c │ │ │ │ ├── firetunneln20.c │ │ │ │ ├── firetunneln21.c │ │ │ │ ├── firetunneln22.c │ │ │ │ ├── firetunneln3.c │ │ │ │ ├── firetunneln4.c │ │ │ │ ├── firetunneln5.c │ │ │ │ ├── firetunneln6.c │ │ │ │ ├── firetunneln7.c │ │ │ │ ├── firetunneln8.c │ │ │ │ ├── firetunneln9.c │ │ │ │ ├── firetunnelne1.c │ │ │ │ ├── firetunnelne2.c │ │ │ │ ├── firetunnelne3.c │ │ │ │ ├── firetunnelne4.c │ │ │ │ ├── firetunnelne5.c │ │ │ │ ├── firetunnelne6.c │ │ │ │ ├── firetunnelne7.c │ │ │ │ ├── firetunnelnw1.c │ │ │ │ ├── firetunnelnw2.c │ │ │ │ ├── firetunnelnw3.c │ │ │ │ ├── firetunnelnw4.c │ │ │ │ ├── firetunnelnw5.c │ │ │ │ ├── firetunnelnw6.c │ │ │ │ ├── firetunnelnw7.c │ │ │ │ ├── firetunnels1.c │ │ │ │ ├── firetunnels10.c │ │ │ │ ├── firetunnels11.c │ │ │ │ ├── firetunnels12.c │ │ │ │ ├── firetunnels13.c │ │ │ │ ├── firetunnels14.c │ │ │ │ ├── firetunnels15.c │ │ │ │ ├── firetunnels16.c │ │ │ │ ├── firetunnels17.c │ │ │ │ ├── firetunnels18.c │ │ │ │ ├── firetunnels19.c │ │ │ │ ├── firetunnels2.c │ │ │ │ ├── firetunnels20.c │ │ │ │ ├── firetunnels21.c │ │ │ │ ├── firetunnels22.c │ │ │ │ ├── firetunnels3.c │ │ │ │ ├── firetunnels4.c │ │ │ │ ├── firetunnels5.c │ │ │ │ ├── firetunnels6.c │ │ │ │ ├── firetunnels7.c │ │ │ │ ├── firetunnels8.c │ │ │ │ ├── firetunnels9.c │ │ │ │ ├── firetunnelse1.c │ │ │ │ ├── firetunnelse2.c │ │ │ │ ├── firetunnelse3.c │ │ │ │ ├── firetunnelse4.c │ │ │ │ ├── firetunnelse5.c │ │ │ │ ├── firetunnelse6.c │ │ │ │ ├── firetunnelse7.c │ │ │ │ ├── firetunnelsw1.c │ │ │ │ ├── firetunnelsw2.c │ │ │ │ ├── firetunnelsw3.c │ │ │ │ ├── firetunnelsw4.c │ │ │ │ ├── firetunnelsw5.c │ │ │ │ ├── firetunnelsw6.c │ │ │ │ ├── firetunnelsw7.c │ │ │ │ ├── firetunnelw1.c │ │ │ │ ├── firetunnelw10.c │ │ │ │ ├── firetunnelw11.c │ │ │ │ ├── firetunnelw12.c │ │ │ │ ├── firetunnelw13.c │ │ │ │ ├── firetunnelw14.c │ │ │ │ ├── firetunnelw15.c │ │ │ │ ├── firetunnelw16.c │ │ │ │ ├── firetunnelw17.c │ │ │ │ ├── firetunnelw18.c │ │ │ │ ├── firetunnelw19.c │ │ │ │ ├── firetunnelw2.c │ │ │ │ ├── firetunnelw20.c │ │ │ │ ├── firetunnelw21.c │ │ │ │ ├── firetunnelw22.c │ │ │ │ ├── firetunnelw3.c │ │ │ │ ├── firetunnelw4.c │ │ │ │ ├── firetunnelw5.c │ │ │ │ ├── firetunnelw6.c │ │ │ │ ├── firetunnelw7.c │ │ │ │ ├── firetunnelw8.c │ │ │ │ ├── firetunnelw9.c │ │ │ │ ├── firetunnelwn1.c │ │ │ │ ├── firetunnelwn2.c │ │ │ │ ├── firetunnelwn3.c │ │ │ │ ├── firetunnelwn4.c │ │ │ │ ├── firetunnelwn5.c │ │ │ │ ├── firetunnelwn6.c │ │ │ │ ├── firetunnelwn7.c │ │ │ │ ├── firetunnelws1.c │ │ │ │ ├── firetunnelws2.c │ │ │ │ ├── firetunnelws3.c │ │ │ │ ├── firetunnelws4.c │ │ │ │ ├── firetunnelws5.c │ │ │ │ ├── firetunnelws6.c │ │ │ │ ├── firetunnelws7.c │ │ │ │ ├── kinordas_chamber.c │ │ │ │ ├── war_mongrels_tunnel1.c │ │ │ │ ├── war_mongrels_tunnel10.c │ │ │ │ ├── war_mongrels_tunnel2.c │ │ │ │ ├── war_mongrels_tunnel3.c │ │ │ │ ├── war_mongrels_tunnel4.c │ │ │ │ ├── war_mongrels_tunnel5.c │ │ │ │ ├── war_mongrels_tunnel6.c │ │ │ │ ├── war_mongrels_tunnel7.c │ │ │ │ ├── war_mongrels_tunnel8.c │ │ │ │ └── war_mongrels_tunnel9.c │ │ ├── forest1.c │ │ ├── forest2i.c │ │ ├── forest3.c │ │ └── koboldshrine.c │ ├── fortress │ │ ├── alter.c │ │ ├── cell1.c │ │ ├── chapel1.c │ │ ├── chapel2.c │ │ ├── chapel3.c │ │ ├── chapel4.c │ │ ├── chapel5.c │ │ ├── chapel6.c │ │ ├── chapel7.c │ │ ├── crypt.c │ │ ├── dungeon.c │ │ ├── fire_pit.c │ │ ├── foyer.c │ │ ├── gallery.c │ │ ├── grave1-1.c │ │ ├── grave1-2.c │ │ ├── grave1-3.c │ │ ├── grave1-4.c │ │ ├── grave1-5.c │ │ ├── grave1-6.c │ │ ├── grave1.c │ │ ├── grave2-1.c │ │ ├── grave2-2.c │ │ ├── grave2-3.c │ │ ├── grave2-4.c │ │ ├── grave2-5.c │ │ ├── grave2-6.c │ │ ├── grave2.c │ │ ├── grave3-1.c │ │ ├── grave3-2.c │ │ ├── grave3-3.c │ │ ├── grave3-4.c │ │ ├── grave3-5.c │ │ ├── grave3-6.c │ │ ├── grave3.c │ │ ├── grave4-1.c │ │ ├── grave4-2.c │ │ ├── grave4-3.c │ │ ├── grave4-4.c │ │ ├── grave4-5.c │ │ ├── grave4-6.c │ │ ├── grave4.c │ │ ├── grave5-1.c │ │ ├── grave5-2.c │ │ ├── grave5-3.c │ │ ├── grave5-4.c │ │ ├── grave5-5.c │ │ ├── grave5-6.c │ │ ├── grave5.c │ │ ├── grave6-1.c │ │ ├── grave6-2.c │ │ ├── grave6-3.c │ │ ├── grave6-4.c │ │ ├── grave6-5.c │ │ ├── grave6-6.c │ │ ├── grave6.c │ │ ├── grave7-1.c │ │ ├── grave7-2.c │ │ ├── grave7-3.c │ │ ├── grave7-4.c │ │ ├── grave7-5.c │ │ ├── grave7-6.c │ │ ├── grave7.c │ │ ├── grave8-1.c │ │ ├── grave8-2.c │ │ ├── grave8-3.c │ │ ├── grave8-4.c │ │ ├── grave8-5.c │ │ ├── grave8-6.c │ │ ├── grave8.c │ │ ├── hallE1.c │ │ ├── hallN1.c │ │ ├── hallN2.c │ │ ├── hallN3.c │ │ ├── hallN4.c │ │ ├── hallN5.c │ │ ├── hallN6.c │ │ ├── hallN7.c │ │ ├── hallW1.c │ │ ├── hallW2.c │ │ ├── hallW3.c │ │ ├── hallW4.c │ │ ├── hall_anc.c │ │ ├── hall_din.c │ │ ├── hall_great.c │ │ ├── heads.c │ │ ├── kitchen.c │ │ ├── kitchen2.c │ │ ├── lair.c │ │ ├── main_hall.c │ │ ├── main_hall2.c │ │ ├── monster │ │ │ ├── antipaladin.c │ │ │ ├── banshee.c │ │ │ ├── beast.c │ │ │ ├── cloud.c │ │ │ ├── dknight.c │ │ │ ├── dknight1.c │ │ │ ├── faceless_beast.c │ │ │ ├── fire.c │ │ │ ├── frost.c │ │ │ ├── ghoul.c │ │ │ ├── guard.c │ │ │ ├── gy_babu.c │ │ │ ├── gy_juju.c │ │ │ ├── gy_skeleton.c │ │ │ ├── hill.c │ │ │ ├── hound.c │ │ │ ├── k_priest.c │ │ │ ├── k_priest_l.c │ │ │ ├── knight.c │ │ │ ├── mage.c │ │ │ ├── mohrg.c │ │ │ ├── nightmare.c │ │ │ ├── old │ │ │ │ └── dragon.c │ │ │ ├── servant.c │ │ │ ├── stone.c │ │ │ ├── vampire.c │ │ │ └── zombielord.c │ │ ├── obj │ │ │ ├── ancientchapelkey.c │ │ │ ├── blasting_circlet.c │ │ │ ├── crimson_coif.c │ │ │ ├── dark_gloves.c │ │ │ ├── devians_splitter.c │ │ │ ├── ivory_bracers.c │ │ │ ├── jade_mace.c │ │ │ ├── komnoels_mutilator.c │ │ │ ├── komnoels_penetrator.c │ │ │ ├── light_gloves.c │ │ │ ├── majesty_blade.c │ │ │ ├── mummified_hand.c │ │ │ └── stench_necklace.c │ │ ├── rec_room.c │ │ ├── room1.c │ │ ├── room2.c │ │ ├── room3.c │ │ ├── room4.c │ │ ├── room5.c │ │ ├── room6.c │ │ ├── stair1.c │ │ ├── stair2.c │ │ ├── storage.c │ │ ├── study.c │ │ ├── throne.c │ │ ├── tomb1.c │ │ ├── tomb2.c │ │ ├── tomb3.c │ │ ├── torture.c │ │ ├── vault.c │ │ ├── vault2.c │ │ └── wine.c │ ├── hhouse │ │ ├── attic.c │ │ ├── barracks.c │ │ ├── bed1.c │ │ ├── bed2i.c │ │ ├── bed3.c │ │ ├── bed4.c │ │ ├── bed5.c │ │ ├── box_r.c │ │ ├── cellar.c │ │ ├── debug.log │ │ ├── dining.c │ │ ├── drawing.c │ │ ├── entrance.c │ │ ├── hall10.c │ │ ├── hall1i.c │ │ ├── hall2.c │ │ ├── hall3.c │ │ ├── hall4.c │ │ ├── hall5.c │ │ ├── hall6.c │ │ ├── hall7.c │ │ ├── hall8.c │ │ ├── hall9.c │ │ ├── hideout1.c │ │ ├── hideout2.c │ │ ├── hideout3.c │ │ ├── hideout4.c │ │ ├── hideout5.c │ │ ├── hideout6.c │ │ ├── inherits │ │ │ ├── area_stuff.h │ │ │ ├── basement.c │ │ │ ├── basement.h │ │ │ ├── basementroom.c │ │ │ ├── courtyard.c │ │ │ ├── debug.log │ │ │ ├── door_stuff.h │ │ │ ├── ffhallway.c │ │ │ ├── fhallwayhid.c │ │ │ ├── haunting.c │ │ │ ├── hhroom.c │ │ │ ├── inwalls.c │ │ │ ├── roof.c │ │ │ ├── sfhallway.c │ │ │ └── test │ │ │ │ ├── Object.c │ │ │ │ ├── battle.c │ │ │ │ ├── container.c │ │ │ │ ├── controlvault.c │ │ │ │ ├── exits.c │ │ │ │ ├── items.c │ │ │ │ ├── move.c │ │ │ │ ├── room.c │ │ │ │ ├── senses.c │ │ │ │ ├── terrain.c │ │ │ │ ├── trap_data.c │ │ │ │ └── vault.c │ │ ├── kitchen.c │ │ ├── landing.c │ │ ├── leadersroom.c │ │ ├── library.c │ │ ├── living_1i.c │ │ ├── living_2.c │ │ ├── living_3.c │ │ ├── mon │ │ │ ├── alustian.old.unused │ │ │ ├── arag_dyne.c │ │ │ ├── assassin.c │ │ │ ├── aurus_devar_bones.c │ │ │ ├── bad_host.c │ │ │ ├── bandit.c │ │ │ ├── bandit_l.c │ │ │ ├── black_beast.c │ │ │ ├── crazed_guard.c │ │ │ ├── disembodied_sword.c │ │ │ ├── elazo.c │ │ │ ├── giant_skeleton.c │ │ │ ├── good_host.c │ │ │ ├── greater_hulking_shadow.c │ │ │ ├── haunting_ob.c │ │ │ ├── hellhound.c │ │ │ ├── hulking_shadow.c │ │ │ ├── malevolent_ghost.c │ │ │ ├── monstrous_vine.c │ │ │ ├── monstrous_zombie.c │ │ │ ├── narameon.c │ │ │ ├── phantom_weapon.c │ │ │ ├── rune_keeper.c │ │ │ ├── spectral_spider.c │ │ │ ├── tomb_guardian.c │ │ │ ├── tomb_spirit.c │ │ │ └── zhour_husk.c │ │ ├── ob │ │ │ ├── azloths_blessing.c │ │ │ ├── beast_rune.c │ │ │ ├── binding_chain.c │ │ │ ├── black_beast_belly.c │ │ │ ├── blackthornscythe.c │ │ │ ├── blasphemy.c │ │ │ ├── blood_rite.c │ │ │ ├── blood_rite_poison.c │ │ │ ├── boots_of_combat_reflexes.c │ │ │ ├── dagger_part.c │ │ │ ├── dirty_sash.c │ │ │ ├── door_room.c │ │ │ ├── elazosshieldbreaker.c │ │ │ ├── entry_ob.c │ │ │ ├── entry_ob2.c │ │ │ ├── entry_ob3.c │ │ │ ├── ethereal_scimitar.c │ │ │ ├── gas_cloud.c │ │ │ ├── greater_ring_of_elemental_resistance.c │ │ │ ├── heart_of_talos.c │ │ │ ├── lathanders_dawn.c │ │ │ ├── listening_eye.c │ │ │ ├── narameons_gauntlet.c │ │ │ ├── oblivion.c │ │ │ ├── portable_door.c │ │ │ ├── redemption.c │ │ │ ├── shroud_of_the_impaler.c │ │ │ ├── spider_web.c │ │ │ ├── thundering_might.c │ │ │ ├── wavering.c │ │ │ ├── wavering_ob.c │ │ │ ├── web_room.c │ │ │ ├── witheringmask.c │ │ │ └── written_info.c │ │ ├── obj │ │ ├── rooms │ │ │ ├── br1.c │ │ │ ├── br10.c │ │ │ ├── br100.c │ │ │ ├── br11.c │ │ │ ├── br12.c │ │ │ ├── br13.c │ │ │ ├── br14.c │ │ │ ├── br15.c │ │ │ ├── br16.c │ │ │ ├── br17.c │ │ │ ├── br18.c │ │ │ ├── br19.c │ │ │ ├── br2.c │ │ │ ├── br20.c │ │ │ ├── br21.c │ │ │ ├── br22.c │ │ │ ├── br23.c │ │ │ ├── br24.c │ │ │ ├── br25.c │ │ │ ├── br26.c │ │ │ ├── br27.c │ │ │ ├── br28.c │ │ │ ├── br29.c │ │ │ ├── br3.c │ │ │ ├── br30.c │ │ │ ├── br31.c │ │ │ ├── br32.c │ │ │ ├── br33.c │ │ │ ├── br34.c │ │ │ ├── br35.c │ │ │ ├── br36.c │ │ │ ├── br37.c │ │ │ ├── br38.c │ │ │ ├── br39.c │ │ │ ├── br4.c │ │ │ ├── br40.c │ │ │ ├── br41.c │ │ │ ├── br42.c │ │ │ ├── br43.c │ │ │ ├── br44.c │ │ │ ├── br45.c │ │ │ ├── br46.c │ │ │ ├── br47.c │ │ │ ├── br48.c │ │ │ ├── br49.c │ │ │ ├── br5.c │ │ │ ├── br50.c │ │ │ ├── br51.c │ │ │ ├── br52.c │ │ │ ├── br53.c │ │ │ ├── br54.c │ │ │ ├── br55.c │ │ │ ├── br56.c │ │ │ ├── br57.c │ │ │ ├── br58.c │ │ │ ├── br59.c │ │ │ ├── br6.c │ │ │ ├── br60.c │ │ │ ├── br61.c │ │ │ ├── br62.c │ │ │ ├── br63.c │ │ │ ├── br64.c │ │ │ ├── br65.c │ │ │ ├── br66.c │ │ │ ├── br67.c │ │ │ ├── br68.c │ │ │ ├── br69.c │ │ │ ├── br7.c │ │ │ ├── br70.c │ │ │ ├── br71.c │ │ │ ├── br72.c │ │ │ ├── br73.c │ │ │ ├── br74.c │ │ │ ├── br75.c │ │ │ ├── br76.c │ │ │ ├── br77.c │ │ │ ├── br78.c │ │ │ ├── br79.c │ │ │ ├── br8.c │ │ │ ├── br80.c │ │ │ ├── br81.c │ │ │ ├── br82.c │ │ │ ├── br83.c │ │ │ ├── br84.c │ │ │ ├── br85.c │ │ │ ├── br86.c │ │ │ ├── br87.c │ │ │ ├── br88.c │ │ │ ├── br89.c │ │ │ ├── br9.c │ │ │ ├── br90.c │ │ │ ├── br91.c │ │ │ ├── br92.c │ │ │ ├── br93.c │ │ │ ├── br94.c │ │ │ ├── br95.c │ │ │ ├── br96.c │ │ │ ├── br97.c │ │ │ ├── br98.c │ │ │ ├── br99.c │ │ │ ├── brr1.c │ │ │ ├── brr2.c │ │ │ ├── brr3.c │ │ │ ├── cy1.c │ │ │ ├── cy10.c │ │ │ ├── cy11.c │ │ │ ├── cy12.c │ │ │ ├── cy13.c │ │ │ ├── cy14.c │ │ │ ├── cy15.c │ │ │ ├── cy16.c │ │ │ ├── cy17.c │ │ │ ├── cy18.c │ │ │ ├── cy19.c │ │ │ ├── cy2.c │ │ │ ├── cy20.c │ │ │ ├── cy21.c │ │ │ ├── cy22.c │ │ │ ├── cy23.c │ │ │ ├── cy24.c │ │ │ ├── cy25.c │ │ │ ├── cy26.c │ │ │ ├── cy27.c │ │ │ ├── cy28.c │ │ │ ├── cy29.c │ │ │ ├── cy3.c │ │ │ ├── cy30.c │ │ │ ├── cy31.c │ │ │ ├── cy32.c │ │ │ ├── cy33.c │ │ │ ├── cy34.c │ │ │ ├── cy35.c │ │ │ ├── cy36.c │ │ │ ├── cy37.c │ │ │ ├── cy38.c │ │ │ ├── cy39.c │ │ │ ├── cy4.c │ │ │ ├── cy40.c │ │ │ ├── cy5.c │ │ │ ├── cy6.c │ │ │ ├── cy7.c │ │ │ ├── cy8.c │ │ │ ├── cy9.c │ │ │ ├── ff1.c │ │ │ ├── ff10.c │ │ │ ├── ff11.c │ │ │ ├── ff12.c │ │ │ ├── ff13.c │ │ │ ├── ff14.c │ │ │ ├── ff15.c │ │ │ ├── ff16.c │ │ │ ├── ff17.c │ │ │ ├── ff18.c │ │ │ ├── ff19.c │ │ │ ├── ff2.c │ │ │ ├── ff20.c │ │ │ ├── ff21.c │ │ │ ├── ff22.c │ │ │ ├── ff23.c │ │ │ ├── ff24.c │ │ │ ├── ff25.c │ │ │ ├── ff26.c │ │ │ ├── ff27.c │ │ │ ├── ff28.c │ │ │ ├── ff29.c │ │ │ ├── ff3.c │ │ │ ├── ff30.c │ │ │ ├── ff31.c │ │ │ ├── ff32.c │ │ │ ├── ff33.c │ │ │ ├── ff34.c │ │ │ ├── ff35.c │ │ │ ├── ff36.c │ │ │ ├── ff37.c │ │ │ ├── ff38.c │ │ │ ├── ff39.c │ │ │ ├── ff4.c │ │ │ ├── ff40.c │ │ │ ├── ff41.c │ │ │ ├── ff42.c │ │ │ ├── ff5.c │ │ │ ├── ff6.c │ │ │ ├── ff7.c │ │ │ ├── ff8.c │ │ │ ├── ff9.c │ │ │ ├── ffiw1.c │ │ │ ├── ffiw10.c │ │ │ ├── ffiw11.c │ │ │ ├── ffiw12.c │ │ │ ├── ffiw13.c │ │ │ ├── ffiw14.c │ │ │ ├── ffiw15.c │ │ │ ├── ffiw16.c │ │ │ ├── ffiw17.c │ │ │ ├── ffiw18.c │ │ │ ├── ffiw19.c │ │ │ ├── ffiw2.c │ │ │ ├── ffiw20.c │ │ │ ├── ffiw3.c │ │ │ ├── ffiw4.c │ │ │ ├── ffiw5.c │ │ │ ├── ffiw6.c │ │ │ ├── ffiw7.c │ │ │ ├── ffiw8.c │ │ │ ├── ffiw9.c │ │ │ ├── ffr1.c │ │ │ ├── ffr2.c │ │ │ ├── ffr3.c │ │ │ ├── ffr4.c │ │ │ ├── ffr5.c │ │ │ ├── ffr6.c │ │ │ ├── ffr7.c │ │ │ ├── ffr8.c │ │ │ ├── ffr9.c │ │ │ ├── rt1.c │ │ │ ├── rt10.c │ │ │ ├── rt11.c │ │ │ ├── rt12.c │ │ │ ├── rt13.c │ │ │ ├── rt14.c │ │ │ ├── rt15.c │ │ │ ├── rt16.c │ │ │ ├── rt17.c │ │ │ ├── rt18.c │ │ │ ├── rt19.c │ │ │ ├── rt2.c │ │ │ ├── rt20.c │ │ │ ├── rt21.c │ │ │ ├── rt22.c │ │ │ ├── rt23.c │ │ │ ├── rt24.c │ │ │ ├── rt25.c │ │ │ ├── rt26.c │ │ │ ├── rt27.c │ │ │ ├── rt28.c │ │ │ ├── rt29.c │ │ │ ├── rt3.c │ │ │ ├── rt30.c │ │ │ ├── rt4.c │ │ │ ├── rt5.c │ │ │ ├── rt6.c │ │ │ ├── rt7.c │ │ │ ├── rt8.c │ │ │ ├── rt9.c │ │ │ ├── sfh1.c │ │ │ ├── sfh10.c │ │ │ ├── sfh11.c │ │ │ ├── sfh12.c │ │ │ ├── sfh13.c │ │ │ ├── sfh14.c │ │ │ ├── sfh15.c │ │ │ ├── sfh16.c │ │ │ ├── sfh17.c │ │ │ ├── sfh18.c │ │ │ ├── sfh19.c │ │ │ ├── sfh2.c │ │ │ ├── sfh20.c │ │ │ ├── sfh21.c │ │ │ ├── sfh22.c │ │ │ ├── sfh23.c │ │ │ ├── sfh24.c │ │ │ ├── sfh25.c │ │ │ ├── sfh26.c │ │ │ ├── sfh27.c │ │ │ ├── sfh3.c │ │ │ ├── sfh4.c │ │ │ ├── sfh5.c │ │ │ ├── sfh6.c │ │ │ ├── sfh7.c │ │ │ ├── sfh8.c │ │ │ ├── sfh9.c │ │ │ ├── sfiw1.c │ │ │ ├── sfiw2.c │ │ │ ├── sfiw3.c │ │ │ ├── sfiw4.c │ │ │ ├── sfiw5.c │ │ │ ├── sfr1.c │ │ │ ├── sfr2.c │ │ │ ├── sfr3.c │ │ │ ├── sfr4.c │ │ │ ├── sfr5.c │ │ │ ├── sfr6.c │ │ │ ├── sfr7.c │ │ │ └── sfr8.c │ │ ├── scullery.c │ │ ├── stair.c │ │ ├── stairwell.c │ │ └── study.c │ ├── inherits │ │ ├── alustian_mob_inh.c │ │ ├── area_treasure_d.c │ │ ├── blackthorn_mob_inh.c │ │ ├── cat_first_room_i.c │ │ ├── cat_first_sr_i.c │ │ ├── catacombs_hallw_1i.c │ │ ├── catacombs_hallw_2i.c │ │ ├── chamber_inh.c │ │ ├── dark_tunneli.c │ │ ├── deku.h │ │ ├── eblocki.c │ │ ├── elazo_mob_inh.c │ │ ├── etblocki.c │ │ ├── fire_traps_d.c │ │ ├── flametemplei.c │ │ ├── flametunneli.c │ │ ├── forest.h │ │ ├── forest_encounters_d.c │ │ ├── foresttoplainsi.c │ │ ├── foresttraili.c │ │ ├── foresttuni.c │ │ ├── fortress.h │ │ ├── graveyard.h │ │ ├── graveyd_inh.c │ │ ├── graveyd_tun_inh.c │ │ ├── gyroad_inh.c │ │ ├── hallwayi.c │ │ ├── hauntings_inh.c │ │ ├── hideout_inh.c │ │ ├── lakebanki.c │ │ ├── name_gen_d.c │ │ ├── narameons_chamber_inh.c │ │ ├── narameons_mob_inh.c │ │ ├── nblocki.c │ │ ├── ntblocki.c │ │ ├── ogre.c │ │ ├── riverbanki.c │ │ ├── sblocki.c │ │ ├── shoreblocki.c │ │ ├── sroadi.c │ │ ├── stblocki.c │ │ ├── tomb_inh.c │ │ ├── treasure.c │ │ ├── vexia-lair.c │ │ ├── vgraveyd_inh.c │ │ ├── wblocki.c │ │ └── wtblocki.c │ ├── keep │ │ ├── barrackI.c │ │ ├── barrack_upI.c │ │ ├── burial_chamberi.c │ │ ├── cell.c │ │ ├── dungeon.c │ │ ├── forest │ │ │ └── dforest7.c │ │ ├── htowerI.c │ │ ├── jail.c │ │ ├── keep.c │ │ ├── keep.h │ │ ├── keep_encounters_d.c │ │ ├── monster │ │ │ ├── archer.c │ │ │ ├── gareth.c │ │ │ ├── gargoyle.c │ │ │ ├── guard.c │ │ │ ├── ingmar.c │ │ │ ├── keep_captain.c │ │ │ ├── keep_general.c │ │ │ ├── keep_guard.c │ │ │ ├── keep_lieu.c │ │ │ ├── lord.c │ │ │ ├── lordblacktongue.c │ │ │ ├── map_keeper.c │ │ │ ├── massivewerewolf.c │ │ │ ├── prisoner.c │ │ │ ├── shaltul.c │ │ │ ├── siere.c │ │ │ ├── skeletal_assassin.c │ │ │ ├── spectre.c │ │ │ ├── telair.c │ │ │ ├── treasure.c │ │ │ ├── troll_guard.c │ │ │ ├── werewolf.c │ │ │ └── werewolfi.c │ │ ├── obj │ │ │ ├── blacktonguejailkey.c │ │ │ ├── blacktonguemasterkey.c │ │ │ ├── bone_axe.c │ │ │ ├── deep_red_boots.c │ │ │ ├── diamondhalberd.c │ │ │ ├── elazoshammer.c │ │ │ ├── emeraldeye.c │ │ │ ├── frostbitesickle.c │ │ │ ├── gloom_shield.c │ │ │ ├── goldencrown.c │ │ │ ├── graniteclub.c │ │ │ ├── impalerspear.c │ │ │ ├── insigniaring.c │ │ │ ├── journal1.c │ │ │ ├── journal2.c │ │ │ ├── journal3.c │ │ │ ├── journal4.c │ │ │ ├── map.c │ │ │ ├── metalshard.c │ │ │ ├── nalreathswhip.c │ │ │ ├── oakclub.c │ │ │ ├── obsidianrobe.c │ │ │ ├── oddskull.c │ │ │ ├── os_boots.c │ │ │ ├── shaltulkey.c │ │ │ ├── shieldoflight.c │ │ │ ├── sierekey.c │ │ │ ├── silverdress.c │ │ │ ├── stonecrusherhammer.c │ │ │ ├── stonecutter.c │ │ │ ├── telairkey.c │ │ │ └── vaultkey.c │ │ ├── potion │ │ │ └── cure_poison.c │ │ ├── rooms │ │ │ ├── armorer.c │ │ │ ├── barrack1.c │ │ │ ├── barrack2.c │ │ │ ├── barrack_u1.c │ │ │ ├── barrack_u2.c │ │ │ ├── blacktonguelair1.c │ │ │ ├── blacktonguelair10.c │ │ │ ├── blacktonguelair11.c │ │ │ ├── blacktonguelair12.c │ │ │ ├── blacktonguelair2.c │ │ │ ├── blacktonguelair3.c │ │ │ ├── blacktonguelair4.c │ │ │ ├── blacktonguelair5.c │ │ │ ├── blacktonguelair6.c │ │ │ ├── blacktonguelair7.c │ │ │ ├── blacktonguelair8.c │ │ │ ├── blacktonguelair9.c │ │ │ ├── burial_chamber_1.c │ │ │ ├── burial_chamber_2.c │ │ │ ├── burial_chamber_3.c │ │ │ ├── burial_chamber_4.c │ │ │ ├── burial_chamber_5.c │ │ │ ├── cell1.c │ │ │ ├── cell10.c │ │ │ ├── cell11.c │ │ │ ├── cell12.c │ │ │ ├── cell2.c │ │ │ ├── cell3.c │ │ │ ├── cell4.c │ │ │ ├── cell5.c │ │ │ ├── cell6.c │ │ │ ├── cell7.c │ │ │ ├── cell8.c │ │ │ ├── cell9.c │ │ │ ├── draw.c │ │ │ ├── dungeon1.c │ │ │ ├── dungeon10.c │ │ │ ├── dungeon11.c │ │ │ ├── dungeon12.c │ │ │ ├── dungeon13.c │ │ │ ├── dungeon14.c │ │ │ ├── dungeon15.c │ │ │ ├── dungeon16.c │ │ │ ├── dungeon17.c │ │ │ ├── dungeon18.c │ │ │ ├── dungeon19.c │ │ │ ├── dungeon2.c │ │ │ ├── dungeon20.c │ │ │ ├── dungeon21.c │ │ │ ├── dungeon22.c │ │ │ ├── dungeon23.c │ │ │ ├── dungeon24.c │ │ │ ├── dungeon25.c │ │ │ ├── dungeon26.c │ │ │ ├── dungeon27.c │ │ │ ├── dungeon28.c │ │ │ ├── dungeon29.c │ │ │ ├── dungeon3.c │ │ │ ├── dungeon30.c │ │ │ ├── dungeon31.c │ │ │ ├── dungeon32.c │ │ │ ├── dungeon33.c │ │ │ ├── dungeon34.c │ │ │ ├── dungeon35.c │ │ │ ├── dungeon36.c │ │ │ ├── dungeon37.c │ │ │ ├── dungeon38.c │ │ │ ├── dungeon39.c │ │ │ ├── dungeon4.c │ │ │ ├── dungeon40.c │ │ │ ├── dungeon41.c │ │ │ ├── dungeon42.c │ │ │ ├── dungeon43.c │ │ │ ├── dungeon44.c │ │ │ ├── dungeon45.c │ │ │ ├── dungeon46.c │ │ │ ├── dungeon47.c │ │ │ ├── dungeon5.c │ │ │ ├── dungeon6.c │ │ │ ├── dungeon7.c │ │ │ ├── dungeon8.c │ │ │ ├── dungeon9.c │ │ │ ├── jail1.c │ │ │ ├── jail2.c │ │ │ ├── jail3.c │ │ │ ├── jail4.c │ │ │ ├── jail5.c │ │ │ ├── jail6.c │ │ │ ├── jail7.c │ │ │ ├── keep1.c │ │ │ ├── keep2.c │ │ │ ├── keep3.c │ │ │ ├── keepE1.c │ │ │ ├── keepE2.c │ │ │ ├── keepE3.c │ │ │ ├── keepE4.c │ │ │ ├── keepE5.c │ │ │ ├── keepE6.c │ │ │ ├── keepE7.c │ │ │ ├── keepW1.c │ │ │ ├── keepW2.c │ │ │ ├── keepW3.c │ │ │ ├── keepW4.c │ │ │ ├── keepW5.c │ │ │ ├── keepW6.c │ │ │ ├── keepW7.c │ │ │ ├── magic.c │ │ │ ├── magicvault.c │ │ │ ├── pub.c │ │ │ ├── shaltul1.c │ │ │ ├── siere1.c │ │ │ ├── smithy.c │ │ │ ├── spectre1.c │ │ │ ├── telair1.c │ │ │ ├── tower1.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── towerE1.c │ │ │ ├── towerE2.c │ │ │ ├── towerN1.c │ │ │ ├── towerN2.c │ │ │ ├── towerNE1.c │ │ │ ├── towerNE2.c │ │ │ ├── towerNW1.c │ │ │ ├── towerNW2.c │ │ │ ├── towerSE1.c │ │ │ ├── towerSE2.c │ │ │ ├── towerSW1.c │ │ │ ├── towerSW2.c │ │ │ ├── towerW1.c │ │ │ ├── towerW2.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel10.c │ │ │ ├── tunnel11.c │ │ │ ├── tunnel12.c │ │ │ ├── tunnel13.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ ├── tunnel4.c │ │ │ ├── tunnel5.c │ │ │ ├── tunnel6.c │ │ │ ├── tunnel7.c │ │ │ ├── tunnel8.c │ │ │ ├── tunnel9.c │ │ │ ├── tunnel_uw1.c │ │ │ ├── tunnel_uw10.c │ │ │ ├── tunnel_uw11.c │ │ │ ├── tunnel_uw12.c │ │ │ ├── tunnel_uw2.c │ │ │ ├── tunnel_uw3.c │ │ │ ├── tunnel_uw4.c │ │ │ ├── tunnel_uw5.c │ │ │ ├── tunnel_uw6.c │ │ │ ├── tunnel_uw7.c │ │ │ ├── tunnel_uw8.c │ │ │ └── tunnel_uw9.c │ │ ├── searches.c │ │ ├── stairwell.c │ │ ├── towerI1.c │ │ ├── towerI2.c │ │ ├── treasure.c │ │ ├── tunnel.c │ │ ├── tunnel_water.c │ │ └── tunnelui.c │ ├── mausoleum │ │ ├── inherits │ │ │ ├── area notes.txt │ │ │ ├── area_stuff.h │ │ │ ├── book_pages.h │ │ │ ├── drawings.h │ │ │ ├── hall.c │ │ │ ├── hidden.c │ │ │ ├── puzzle_daemon.c │ │ │ └── tomb.c │ │ ├── mon │ │ │ ├── aurus_devar_husk.c │ │ │ └── doppleganger.c │ │ ├── obj │ │ │ ├── amulet_of_insight.c │ │ │ ├── chaos_sphere.c │ │ │ ├── devar_tome.c │ │ │ ├── enchanting_powder.c │ │ │ ├── gauntlets_of_power.c │ │ │ ├── greaves_of_power.c │ │ │ ├── lever.c │ │ │ ├── sarcophagus.c │ │ │ └── sphere_key.c │ │ └── rooms │ │ │ ├── center.c │ │ │ ├── east1.c │ │ │ ├── east2.c │ │ │ ├── east3.c │ │ │ ├── enter.c │ │ │ ├── hidden1.c │ │ │ ├── hidden10.c │ │ │ ├── hidden11.c │ │ │ ├── hidden12.c │ │ │ ├── hidden13.c │ │ │ ├── hidden14.c │ │ │ ├── hidden15.c │ │ │ ├── hidden16.c │ │ │ ├── hidden17.c │ │ │ ├── hidden18.c │ │ │ ├── hidden19.c │ │ │ ├── hidden2.c │ │ │ ├── hidden20.c │ │ │ ├── hidden21.c │ │ │ ├── hidden22.c │ │ │ ├── hidden23.c │ │ │ ├── hidden24.c │ │ │ ├── hidden25.c │ │ │ ├── hidden26.c │ │ │ ├── hidden27.c │ │ │ ├── hidden28.c │ │ │ ├── hidden29.c │ │ │ ├── hidden3.c │ │ │ ├── hidden30.c │ │ │ ├── hidden31.c │ │ │ ├── hidden4.c │ │ │ ├── hidden5.c │ │ │ ├── hidden6.c │ │ │ ├── hidden7.c │ │ │ ├── hidden8.c │ │ │ ├── hidden9.c │ │ │ ├── mausoleum.c │ │ │ ├── north1.c │ │ │ ├── north2.c │ │ │ ├── north3.c │ │ │ ├── south1.c │ │ │ ├── south2.c │ │ │ ├── south3.c │ │ │ ├── tomb1_1.c │ │ │ ├── tomb1_2.c │ │ │ ├── tomb1_3.c │ │ │ ├── tomb1_4.c │ │ │ ├── tomb1_5.c │ │ │ ├── tomb1_6.c │ │ │ ├── tomb1_7.c │ │ │ ├── tomb1_8.c │ │ │ ├── tomb1_9.c │ │ │ ├── tomb2_1.c │ │ │ ├── tomb2_2.c │ │ │ ├── tomb2_3.c │ │ │ ├── tomb2_4.c │ │ │ ├── tomb2_5.c │ │ │ ├── tomb2_6.c │ │ │ ├── tomb2_7.c │ │ │ ├── tomb2_8.c │ │ │ ├── tomb2_9.c │ │ │ ├── tomb3_1.c │ │ │ ├── tomb3_2.c │ │ │ ├── tomb3_3.c │ │ │ ├── tomb3_4.c │ │ │ ├── tomb3_5.c │ │ │ ├── tomb3_6.c │ │ │ ├── tomb3_7.c │ │ │ ├── tomb3_8.c │ │ │ ├── tomb3_9.c │ │ │ ├── tomb4_1.c │ │ │ ├── tomb4_2.c │ │ │ ├── tomb4_3.c │ │ │ ├── tomb4_4.c │ │ │ ├── tomb4_5.c │ │ │ ├── tomb4_6.c │ │ │ ├── tomb4_7.c │ │ │ ├── tomb4_8.c │ │ │ ├── tomb4_9.c │ │ │ ├── west1.c │ │ │ ├── west2.c │ │ │ └── west3.c │ ├── misc │ │ ├── NOTE │ │ ├── adv_note.c │ │ ├── apple.c │ │ ├── black.c │ │ ├── catacombs_torch.c │ │ ├── contract.c │ │ ├── deku_note.c │ │ ├── ember_key.c │ │ ├── eye_of_maldoor.c │ │ ├── glyph_key.c │ │ ├── haste.c │ │ ├── healing.c │ │ ├── hstone.c │ │ ├── keg.c │ │ ├── map.c │ │ ├── peach.c │ │ ├── pet.c │ │ ├── pouch.c │ │ ├── purple.c │ │ ├── red.c │ │ ├── sack.c │ │ ├── star.c │ │ └── stones.c │ ├── monster │ │ ├── air.c │ │ ├── alch.c │ │ ├── alustian_spirit.c │ │ ├── annis.c │ │ ├── antipaladin.c │ │ ├── athach.c │ │ ├── b_teller.c │ │ ├── babu.c │ │ ├── bandit.c │ │ ├── bandit_l.c │ │ ├── bankguard.c │ │ ├── barkeep.c │ │ ├── bat.c │ │ ├── bear.c │ │ ├── bee.c │ │ ├── bheur.c │ │ ├── blackcreature.c │ │ ├── bugbear.c │ │ ├── burford.c │ │ ├── ca_babu.c │ │ ├── ca_ghoul.c │ │ ├── ca_juju.c │ │ ├── ca_skeleton.c │ │ ├── captain.c │ │ ├── centaur.c │ │ ├── cguard.c │ │ ├── cleric.c │ │ ├── cloud.c │ │ ├── cobra.c │ │ ├── dariul_tymor.c │ │ ├── deep.c │ │ ├── drakkan.c │ │ ├── drider.c │ │ ├── drunk.c │ │ ├── elazo_spirit.c │ │ ├── elf.c │ │ ├── elite.c │ │ ├── elite_guard.c │ │ ├── ettin.c │ │ ├── fire-elemgd.c │ │ ├── fire_elemental.c │ │ ├── fire_elemental_king.c │ │ ├── fire_imp.c │ │ ├── forest_hydra.c │ │ ├── galem.c │ │ ├── gghost.c │ │ ├── gguard.c │ │ ├── giant.c │ │ ├── gnoll.c │ │ ├── gnome.c │ │ ├── goblin.c │ │ ├── golem_master.c │ │ ├── guard.c │ │ ├── guard1.c │ │ ├── hellfire_golem.c │ │ ├── hellhound.c │ │ ├── hermit.c │ │ ├── hill.c │ │ ├── hound_keeper.c │ │ ├── human.c │ │ ├── human1.c │ │ ├── imp_king.c │ │ ├── jarrow.c │ │ ├── joran.c │ │ ├── juju.c │ │ ├── kinorda.c │ │ ├── kobold.c │ │ ├── korindell.c │ │ ├── leucrotta.c │ │ ├── lizard.c │ │ ├── lord.c │ │ ├── magglerak.c │ │ ├── mobat.c │ │ ├── mordor.c │ │ ├── naga3.c │ │ ├── nagaf.c │ │ ├── narameon_spirit.c │ │ ├── nefen.c │ │ ├── ogre.c │ │ ├── ogre1.c │ │ ├── ogre2.c │ │ ├── ogre3.c │ │ ├── ogre_cap.c │ │ ├── old │ │ │ ├── 3_hdragon.c │ │ │ ├── antipaladin2.c │ │ │ ├── dknight.c │ │ │ ├── dragon.c │ │ │ ├── dwarf.c │ │ │ ├── gerack.c │ │ │ ├── gnome1.c │ │ │ ├── gnome2.c │ │ │ ├── goblin1.c │ │ │ ├── goblin_cap.c │ │ │ ├── hobgob.c │ │ │ ├── hobgob_k.c │ │ │ ├── jarrow.0 │ │ │ ├── orsabbas.c │ │ │ ├── saern.c │ │ │ ├── shilarn.c │ │ │ ├── testmon.c │ │ │ ├── wait.c │ │ │ ├── wolf.c │ │ │ └── worker.c │ │ ├── orc.c │ │ ├── owlbear.c │ │ ├── priest.c │ │ ├── priest_l.c │ │ ├── queen.c │ │ ├── ranger.c │ │ ├── rat.c │ │ ├── root.c │ │ ├── seath.c │ │ ├── serpent.c │ │ ├── shadow.c │ │ ├── shop_k.c │ │ ├── skel-king.c │ │ ├── skeleton.c │ │ ├── smilodon.c │ │ ├── spider.c │ │ ├── thess.c │ │ ├── thond.c │ │ ├── tomb_guardian.c │ │ ├── tomb_spirit.c │ │ ├── troll.c │ │ ├── vampire.c │ │ ├── vexia.c │ │ ├── wandering_identifier.c │ │ ├── war_mongrel.c │ │ ├── warrior2.c │ │ ├── water.c │ │ └── wcheck.log │ ├── new_closed_area │ │ ├── alley.c │ │ ├── cave1.c │ │ ├── cave10.c │ │ ├── cave11.c │ │ ├── cave12.c │ │ ├── cave2.c │ │ ├── cave3.c │ │ ├── cave4.c │ │ ├── cave5.c │ │ ├── cave6.c │ │ ├── cave7.c │ │ ├── cave8.c │ │ ├── entrance.c │ │ ├── entrance.styx7-12-01 │ │ ├── general.c │ │ ├── gs_storage.c │ │ ├── hotel.c │ │ ├── inn.c │ │ ├── keep │ │ │ ├── a_storage.c │ │ │ ├── armorer.c │ │ │ ├── barrack1.c │ │ │ ├── barrack2.c │ │ │ ├── barrack_u1.c │ │ │ ├── barrack_u2.c │ │ │ ├── draw.c │ │ │ ├── gareth.c │ │ │ ├── keep1.c │ │ │ ├── keep2.c │ │ │ ├── keep3.c │ │ │ ├── keepE1.c │ │ │ ├── keepE2.c │ │ │ ├── keepE3.c │ │ │ ├── keepE4.c │ │ │ ├── keepE5.c │ │ │ ├── keepE6.c │ │ │ ├── keepE7.c │ │ │ ├── keepW1.c │ │ │ ├── keepW2.c │ │ │ ├── keepW3.c │ │ │ ├── keepW4.c │ │ │ ├── keepW5.c │ │ │ ├── keepW6.c │ │ │ ├── keepW7.c │ │ │ ├── magic.c │ │ │ ├── magic_storage.c │ │ │ ├── monster │ │ │ │ ├── archer.c │ │ │ │ ├── drunk1.c │ │ │ │ ├── gareth.c │ │ │ │ ├── indra.c │ │ │ │ ├── ingmar.c │ │ │ │ ├── keep_captain.c │ │ │ │ ├── keep_guard.c │ │ │ │ ├── keep_guard1.c │ │ │ │ ├── keep_lieu.c │ │ │ │ ├── lord.c │ │ │ │ ├── pikel.c │ │ │ │ └── tunturi.c │ │ │ ├── potion │ │ │ │ ├── cure_poison.c │ │ │ │ ├── extra_heal.c │ │ │ │ ├── heal.c │ │ │ │ └── invisible.c │ │ │ ├── pub.c │ │ │ ├── smithy.c │ │ │ ├── tower1.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── towerE1i.c │ │ │ ├── towerE2i.c │ │ │ ├── towerN1.c │ │ │ ├── towerN2.c │ │ │ ├── towerNE1.c │ │ │ ├── towerNE2.c │ │ │ ├── towerNW1.c │ │ │ ├── towerNW2.c │ │ │ ├── towerSE1.c │ │ │ ├── towerSE2.c │ │ │ ├── towerSW1.c │ │ │ ├── towerSW2.c │ │ │ ├── towerW1.c │ │ │ ├── towerW2.c │ │ │ └── w_storage.c │ │ ├── new002.c │ │ ├── new02.c │ │ ├── new1.c │ │ ├── new10.c │ │ ├── new11.c │ │ ├── new12.c │ │ ├── new13.c │ │ ├── new14.c │ │ ├── new15.c │ │ ├── new16.c │ │ ├── new17.c │ │ ├── new18.c │ │ ├── new19.c │ │ ├── new2.c │ │ ├── new21.c │ │ ├── new22.c │ │ ├── new23.c │ │ ├── new24.c │ │ ├── new25.c │ │ ├── new26.c │ │ ├── new27.c │ │ ├── new3.c │ │ ├── new30.c │ │ ├── new31.c │ │ ├── new32.c │ │ ├── new33.c │ │ ├── new4.c │ │ ├── new5.c │ │ ├── new6.c │ │ ├── new7.c │ │ ├── new8.c │ │ ├── new9.c │ │ ├── pub.c │ │ ├── smithy.c │ │ ├── town1.c │ │ ├── town2.c │ │ ├── town3.c │ │ ├── town4.c │ │ └── w_storage.c │ ├── note │ ├── open │ │ ├── castle │ │ │ ├── README │ │ │ ├── boathouse.h │ │ │ ├── castle.h │ │ │ ├── castle1.c │ │ │ ├── castle2.c │ │ │ ├── castle3.c │ │ │ ├── castle4.c │ │ │ ├── castle5.c │ │ │ ├── castle6.c │ │ │ ├── castle7.c │ │ │ ├── castle8.c │ │ │ ├── castleA1.c │ │ │ ├── castleB1.c │ │ │ ├── castleC1.c │ │ │ ├── castleC2.c │ │ │ ├── castleCH1.c │ │ │ ├── castleCH2.c │ │ │ ├── castleD1.c │ │ │ ├── castleD2.c │ │ │ ├── castleD3.c │ │ │ ├── castleE1.c │ │ │ ├── castleE10.c │ │ │ ├── castleE2.c │ │ │ ├── castleE3.c │ │ │ ├── castleE4.c │ │ │ ├── castleE5.c │ │ │ ├── castleE6.c │ │ │ ├── castleE7.c │ │ │ ├── castleE8.c │ │ │ ├── castleE8a.c │ │ │ ├── castleE9.c │ │ │ ├── castleW1.c │ │ │ ├── castleW10.c │ │ │ ├── castleW11.c │ │ │ ├── castleW12.c │ │ │ ├── castleW2.c │ │ │ ├── castleW3.c │ │ │ ├── castleW4.c │ │ │ ├── castleW5.c │ │ │ ├── castleW6.c │ │ │ ├── castleW7.c │ │ │ ├── castleW8.c │ │ │ ├── castleW9.c │ │ │ ├── include │ │ │ │ ├── boat.h │ │ │ │ └── places.c │ │ │ ├── lane1.c │ │ │ ├── lane2.c │ │ │ ├── lane3.c │ │ │ ├── lane4.c │ │ │ ├── moat1.c │ │ │ ├── moat10.c │ │ │ ├── moat11.c │ │ │ ├── moat12.c │ │ │ ├── moat13.c │ │ │ ├── moat2.c │ │ │ ├── moat3.c │ │ │ ├── moat4.c │ │ │ ├── moat5.c │ │ │ ├── moat6.c │ │ │ ├── monster │ │ │ │ ├── C_cat.c │ │ │ │ ├── C_demon.c │ │ │ │ ├── blacksmith.c │ │ │ │ ├── cas_guard1.c │ │ │ │ ├── castle.h │ │ │ │ ├── castleE1.c │ │ │ │ ├── croco.c │ │ │ │ ├── fish.c │ │ │ │ ├── knave.c │ │ │ │ ├── rabbitP.c │ │ │ │ └── stableboy.c │ │ │ └── object │ │ │ │ ├── C_cheese.c │ │ │ │ ├── apron.c │ │ │ │ ├── blackkey.c │ │ │ │ ├── broche.c │ │ │ │ ├── candlestick.c │ │ │ │ ├── castle.h │ │ │ │ ├── hammer.c │ │ │ │ └── shovel.c │ │ ├── entrance.c │ │ ├── mausoleum.c │ │ ├── ogre_den.c │ │ ├── old │ │ │ ├── air.c │ │ │ ├── bank1.c │ │ │ ├── bridge.c │ │ │ ├── cave.c │ │ │ ├── cave_ent2.c │ │ │ ├── cave_r1.c │ │ │ ├── cave_r2.c │ │ │ ├── cave_r3i.c │ │ │ ├── cave_r4.c │ │ │ ├── cave_r5.c │ │ │ ├── cave_r6.c │ │ │ ├── cave_r7.c │ │ │ ├── cave_r8.c │ │ │ ├── cellar.c │ │ │ ├── clear.c │ │ │ ├── clear2.c │ │ │ ├── den.c │ │ │ ├── dforest1.c │ │ │ ├── dforest10.c │ │ │ ├── dforest2i.c │ │ │ ├── dforest3-1.c │ │ │ ├── dforest3-2.c │ │ │ ├── dforest3-2a.c │ │ │ ├── dforest3.c │ │ │ ├── dforest4.c │ │ │ ├── dforest5.c │ │ │ ├── dforest6.c │ │ │ ├── dforest7-1.c │ │ │ ├── dforest7.c │ │ │ ├── dforest8-2.c │ │ │ ├── dforest8-3.c │ │ │ ├── dforest8-4.c │ │ │ ├── dforest8-5.c │ │ │ ├── dforest8-6.c │ │ │ ├── dforest8.c │ │ │ ├── dforest9.c │ │ │ ├── exec.c │ │ │ ├── forest1.c │ │ │ ├── forest10.c │ │ │ ├── forest2i.c │ │ │ ├── forest3.c │ │ │ ├── forest4.c │ │ │ ├── forest41.c │ │ │ ├── forest42i.c │ │ │ ├── forest45.c │ │ │ ├── forest46.c │ │ │ ├── forest47.c │ │ │ ├── forest48.c │ │ │ ├── forest49.c │ │ │ ├── forest5.c │ │ │ ├── forest51.c │ │ │ ├── forest52.c │ │ │ ├── forest53.c │ │ │ ├── forest54.c │ │ │ ├── forest6.c │ │ │ ├── forest61.c │ │ │ ├── forest62.c │ │ │ ├── forest63.c │ │ │ ├── forest7.c │ │ │ ├── forest8.c │ │ │ ├── forest9.c │ │ │ ├── guard.c │ │ │ ├── hermit.c │ │ │ ├── kitchen.c │ │ │ ├── lab.c │ │ │ ├── lair.c │ │ │ ├── lake.c │ │ │ ├── lake2.c │ │ │ ├── ogre.c │ │ │ ├── pass.c │ │ │ ├── pass1.c │ │ │ ├── pass2.c │ │ │ ├── pass3.c │ │ │ ├── pass4.c │ │ │ ├── pass5.c │ │ │ ├── path.c │ │ │ ├── rec.c │ │ │ ├── river.c │ │ │ ├── river2.c │ │ │ ├── skull.c │ │ │ ├── skull1.c │ │ │ ├── skull2.c │ │ │ ├── skull3.c │ │ │ ├── skull4.c │ │ │ ├── treehouse.c │ │ │ ├── underwater.c │ │ │ ├── unfin.c │ │ │ ├── vexia.c │ │ │ ├── waste.c │ │ │ └── well.c │ │ ├── open.c │ │ ├── pawn.c │ │ ├── pawn.was │ │ ├── road1.c │ │ ├── road2.c │ │ ├── road3.c │ │ ├── road4.c │ │ ├── stair1.c │ │ ├── stair2.c │ │ ├── stair3.c │ │ ├── top_tower.c │ │ ├── tower.c │ │ └── tower2.c │ ├── plains │ │ ├── cave01.c │ │ ├── cave02.c │ │ ├── fplains01.c │ │ ├── fplains02.c │ │ ├── fplains03.c │ │ ├── fplains04.c │ │ ├── fplains05.c │ │ ├── fplains06.c │ │ ├── mon │ │ │ └── ranger.c │ │ ├── plains01.c │ │ ├── plains02.c │ │ ├── plains03i.c │ │ ├── plains04.c │ │ ├── plains05.c │ │ ├── plains06.c │ │ ├── plains07.c │ │ ├── plains08.c │ │ ├── plains09.c │ │ ├── plains10.c │ │ ├── plains11.c │ │ ├── plains12.c │ │ ├── plains13.c │ │ ├── plains14.c │ │ ├── plains15.c │ │ ├── plains16.c │ │ ├── plains17.c │ │ ├── plains18.c │ │ ├── plains19.c │ │ ├── plains20.c │ │ ├── plains21.c │ │ ├── plains22.c │ │ ├── plains23.c │ │ ├── plains24.c │ │ ├── plains25.c │ │ ├── plains26.c │ │ ├── plains27.c │ │ ├── plains28.c │ │ ├── plains29.c │ │ ├── plains30.c │ │ ├── plains51.c │ │ ├── plains52.c │ │ ├── plains53.c │ │ ├── plains54.c │ │ ├── plains55.c │ │ ├── plains56.c │ │ ├── plains57.c │ │ ├── plains58.c │ │ ├── plains59.c │ │ ├── plains60.c │ │ ├── road01i.c │ │ ├── road02.c │ │ ├── road03.c │ │ ├── road04.c │ │ ├── road05.c │ │ ├── road06.c │ │ ├── road07.c │ │ ├── road08i.c │ │ ├── road09.c │ │ ├── road10.c │ │ ├── road11i.c │ │ ├── road12.c │ │ ├── road13.c │ │ ├── road14.c │ │ ├── road15.c │ │ ├── road16.c │ │ ├── road17.c │ │ ├── road18.c │ │ ├── road19.c │ │ ├── road20.c │ │ ├── road21.c │ │ ├── road22.c │ │ ├── road23.c │ │ ├── road24.c │ │ ├── road25.c │ │ ├── road26.c │ │ ├── road27.c │ │ ├── road28.c │ │ ├── road29.c │ │ ├── road30.c │ │ ├── road31.c │ │ ├── road32.c │ │ ├── road33.c │ │ ├── road34.c │ │ └── road35.c │ ├── sanctuary │ │ ├── dragon.h │ │ ├── inherit │ │ │ ├── bbalcony.c │ │ │ ├── bgrave.c │ │ │ ├── bottomvault.c │ │ │ ├── bprison.c │ │ │ ├── bprison02.c │ │ │ ├── bstudy.c │ │ │ ├── btower.c │ │ │ ├── btown.c │ │ │ ├── sewer.c │ │ │ ├── towervault.c │ │ │ └── troad.c │ │ ├── mon │ │ │ ├── andreas.c │ │ │ ├── apprentice.c │ │ │ ├── assassin.c │ │ │ ├── auica.c │ │ │ ├── balkour.c │ │ │ ├── bodak.c │ │ │ ├── everardus.c │ │ │ ├── g_undead.c │ │ │ ├── gold_golem.c │ │ │ ├── guard.c │ │ │ ├── lecia.c │ │ │ ├── mage.c │ │ │ ├── minotaur.c │ │ │ ├── neired.c │ │ │ ├── priest.c │ │ │ ├── quaggoth.c │ │ │ ├── quaggothlead.c │ │ │ ├── quagoothlead.c │ │ │ ├── skeleton.c │ │ │ ├── snake.c │ │ │ ├── steel_construct.c │ │ │ ├── toris.c │ │ │ └── zombie.c │ │ ├── obj │ │ │ ├── acheck.log │ │ │ ├── armguard.c │ │ │ ├── axe.c │ │ │ ├── banded.c │ │ │ ├── blue_robes.c │ │ │ ├── bluedragonbuckler.c │ │ │ ├── bluewizardhat.c │ │ │ ├── boots.c │ │ │ ├── c_key.c │ │ │ ├── chain_shirt.c │ │ │ ├── coralsword.c │ │ │ ├── crystallinespear.c │ │ │ ├── dagger.c │ │ │ ├── dsewer_key.c │ │ │ ├── flamerod.c │ │ │ ├── frostrod.c │ │ │ ├── ghoulblade.c │ │ │ ├── greenstone.c │ │ │ ├── lightningbolt.c │ │ │ ├── lightningrod.c │ │ │ ├── mithrilskullcap.c │ │ │ ├── neiredshawl.c │ │ │ ├── nightsveil.c │ │ │ ├── orchidgown.c │ │ │ ├── paper01.c │ │ │ ├── paper02.c │ │ │ ├── paper03.c │ │ │ ├── paper04.c │ │ │ ├── plate.c │ │ │ ├── red_robes.c │ │ │ ├── redsilkcloak.c │ │ │ ├── redstone.c │ │ │ ├── redwizardhat.c │ │ │ ├── rod.c │ │ │ ├── serpentcoat.c │ │ │ ├── snakebracers.c │ │ │ ├── stonerod.c │ │ │ ├── stonestaff.c │ │ │ ├── t_key.c │ │ │ ├── warlordamulet.c │ │ │ ├── warmring.c │ │ │ ├── wcheck.log │ │ │ ├── weatherring.c │ │ │ ├── whitewizardhat.c │ │ │ ├── wizardhat.c │ │ │ └── zring.c │ │ ├── sewer │ │ │ ├── pit.c │ │ │ ├── sewer01.c │ │ │ ├── sewer05.c │ │ │ ├── sewer06.c │ │ │ ├── sewer07.c │ │ │ ├── sewer08.c │ │ │ ├── sewer09.c │ │ │ ├── sewer10.c │ │ │ ├── sewer11.c │ │ │ ├── sewer12.c │ │ │ ├── sewer13.c │ │ │ ├── sewer14.c │ │ │ ├── sewer15.c │ │ │ ├── sewer16.c │ │ │ ├── sewer17.c │ │ │ ├── sewer18.c │ │ │ ├── sewer19.c │ │ │ ├── sewer20.c │ │ │ ├── sewer21.c │ │ │ ├── sewer22.c │ │ │ ├── sewer23.c │ │ │ ├── sewer24.c │ │ │ ├── sewer25.c │ │ │ ├── sewer26.c │ │ │ ├── sewer27.c │ │ │ ├── sewer28.c │ │ │ ├── sewer29.c │ │ │ ├── sewer30.c │ │ │ ├── sewer31.c │ │ │ ├── sewer32.c │ │ │ ├── sewer33.c │ │ │ ├── sewer34.c │ │ │ ├── sewer35.c │ │ │ ├── sewer36.c │ │ │ ├── sewer37.c │ │ │ ├── sewer38.c │ │ │ ├── sewer39.c │ │ │ ├── sewer40.c │ │ │ ├── sewer41.c │ │ │ ├── sewer42.c │ │ │ ├── sewer43.c │ │ │ ├── sewer44.c │ │ │ ├── sewer45.c │ │ │ ├── sewer46.c │ │ │ ├── sewer47.c │ │ │ ├── sewer48.c │ │ │ ├── sewer49.c │ │ │ └── sewer50.c │ │ ├── tower │ │ │ ├── balcony01.c │ │ │ ├── balcony02.c │ │ │ ├── balcony03.c │ │ │ ├── balcony04.c │ │ │ ├── bottom01.c │ │ │ ├── bottom02.c │ │ │ ├── bottom03.c │ │ │ ├── bottom04.c │ │ │ ├── bottom05.c │ │ │ ├── bottom06.c │ │ │ ├── bottom07.c │ │ │ ├── bottom08.c │ │ │ ├── bottom09.c │ │ │ ├── bottom10.c │ │ │ ├── bottom11.c │ │ │ ├── bottom12.c │ │ │ ├── bottom13.c │ │ │ ├── bottom14.c │ │ │ ├── bottom15.c │ │ │ ├── bottom16.c │ │ │ ├── bottom17.c │ │ │ ├── bottom18.c │ │ │ ├── bottom19.c │ │ │ ├── bottom20.c │ │ │ ├── bottom21.c │ │ │ ├── bottom22.c │ │ │ ├── bottom23.c │ │ │ ├── bottom24.c │ │ │ ├── bottom25.c │ │ │ ├── bottom26.c │ │ │ ├── bottom27.c │ │ │ ├── bottom28.c │ │ │ ├── conference.c │ │ │ ├── elevator.c │ │ │ ├── final.c │ │ │ ├── hall01.c │ │ │ ├── lab.c │ │ │ ├── library.c │ │ │ ├── lobby.c │ │ │ ├── prison01.c │ │ │ ├── prison02.c │ │ │ ├── prison03.c │ │ │ ├── prison04.c │ │ │ ├── prison05.c │ │ │ ├── prison05t.c │ │ │ ├── prison06.c │ │ │ ├── prison07.c │ │ │ ├── prison08.c │ │ │ ├── prison09.c │ │ │ ├── prison10.c │ │ │ ├── prison11.c │ │ │ ├── prison12.c │ │ │ ├── prison13.c │ │ │ ├── prison14.c │ │ │ ├── prison15.c │ │ │ ├── stairs.c │ │ │ ├── study01.c │ │ │ ├── study02.c │ │ │ ├── study03.c │ │ │ ├── summoning_room.c │ │ │ └── top.c │ │ └── town │ │ │ ├── armorer.c │ │ │ ├── balcony.c │ │ │ ├── bank.c │ │ │ ├── build1.c │ │ │ ├── build2.c │ │ │ ├── church.c │ │ │ ├── general.c │ │ │ ├── ghouse1.c │ │ │ ├── ghouse2.c │ │ │ ├── glazier.c │ │ │ ├── grave1.c │ │ │ ├── grave2.c │ │ │ ├── grave3.c │ │ │ ├── grave4.c │ │ │ ├── grave5.c │ │ │ ├── grave6.c │ │ │ ├── grave7.c │ │ │ ├── grave8.c │ │ │ ├── healer.c │ │ │ ├── hotel.c │ │ │ ├── hshop.c │ │ │ ├── magic.c │ │ │ ├── mshop.c │ │ │ ├── pub1.c │ │ │ ├── roadE1.c │ │ │ ├── roadE2.c │ │ │ ├── roadE3.c │ │ │ ├── roadE4.c │ │ │ ├── roadN1.c │ │ │ ├── roadN2.c │ │ │ ├── roadS1.c │ │ │ ├── roadS2.c │ │ │ ├── roadS3.c │ │ │ ├── roadSW1.c │ │ │ ├── roadSW2.c │ │ │ ├── roadW1.c │ │ │ ├── roadW2.c │ │ │ ├── roadW3.c │ │ │ ├── roadW4.c │ │ │ ├── roadW5.c │ │ │ ├── square.c │ │ │ ├── stable.c │ │ │ ├── storage.c │ │ │ ├── tchamber.c │ │ │ └── wshop.c │ ├── spells │ │ └── _searing_light.c │ ├── town │ │ ├── a_storage.c │ │ ├── armorer.c │ │ ├── bank.c │ │ ├── church.c │ │ ├── coopery.c │ │ ├── crystals.c │ │ ├── exchange.c │ │ ├── general.c │ │ ├── gs_storage.c │ │ ├── healer.c │ │ ├── hotel.c │ │ ├── info_office.c │ │ ├── magic.c │ │ ├── office1.c │ │ ├── portal.c │ │ ├── road10.c │ │ ├── road11.c │ │ ├── road12.c │ │ ├── road13.c │ │ ├── road2.c │ │ ├── road3.c │ │ ├── road4.c │ │ ├── road5.c │ │ ├── road6.c │ │ ├── road7.c │ │ ├── road8.c │ │ ├── road9.c │ │ ├── sroad1.c │ │ ├── sroad2.c │ │ ├── sroad3.c │ │ ├── stables.c │ │ ├── w_storage.c │ │ ├── water.c │ │ ├── weapon.c │ │ ├── wheel.c │ │ └── winery.c │ ├── weapons │ │ ├── Deku.c │ │ ├── axe.c │ │ ├── battle_axe.c │ │ ├── cloud.c │ │ ├── club.c │ │ ├── dagger.c │ │ ├── dagger2.c │ │ ├── elf_slayer.c │ │ ├── fire_dagger.c │ │ ├── fire_short.c │ │ ├── flailplat.c │ │ ├── gray_longsword.c │ │ ├── jade_scimitar.c │ │ ├── kinordas_staff.c │ │ ├── larrows.c │ │ ├── longsword.c │ │ ├── longsword1.c │ │ ├── pick.c │ │ ├── ruby_pick.c │ │ ├── ruby_scimitar.c │ │ ├── rune_wand.c │ │ ├── serpentwhip.c │ │ ├── short.c │ │ ├── short1.c │ │ ├── short2.c │ │ ├── silveredge.c │ │ ├── soulcrusher.c │ │ ├── spiked_club.c │ │ ├── steel_axe.c │ │ ├── t_sword.c │ │ ├── teeth.c │ │ ├── wcheck.log │ │ ├── whip2.c │ │ └── winters_chill.c │ └── whip2.c ├── dragon │ └── old │ │ ├── boat │ │ ├── boat01.c │ │ ├── boat02.c │ │ ├── boat03.c │ │ ├── boat04.c │ │ ├── boat05.c │ │ └── wreck.c │ │ ├── dragon.h │ │ ├── fire │ │ └── f_damage.c │ │ ├── forest │ │ ├── 1 │ │ ├── forest01.c │ │ ├── forest02.c │ │ ├── forest03.c │ │ ├── forest04.c │ │ ├── forest05.c │ │ ├── forest06.c │ │ ├── forest07.c │ │ ├── forest08.c │ │ ├── forest89.c │ │ └── forest90.c │ │ ├── inherit │ │ ├── bgrave.c │ │ ├── btown.c │ │ ├── sewer.c │ │ └── troad.c │ │ ├── mon │ │ ├── annis.c │ │ ├── ape.c │ │ ├── autre.c │ │ ├── bald.c │ │ ├── bear.c │ │ ├── beggar.c │ │ ├── behir.c │ │ ├── behir1.c │ │ ├── cloud.c │ │ ├── drow.c │ │ ├── drunk.c │ │ ├── emistil.c │ │ ├── fire.c │ │ ├── frost.c │ │ ├── gorger.c │ │ ├── guard.c │ │ ├── hill.c │ │ ├── longjaw.c │ │ ├── mage.c │ │ ├── malvira.c │ │ ├── medusa.c │ │ ├── molly.c │ │ ├── monk.c │ │ ├── morgyr.c │ │ ├── mountain.c │ │ ├── neo.c │ │ ├── neo1.c │ │ ├── pirate.c │ │ ├── ranger.c │ │ ├── rathe.c │ │ ├── rdragon.c │ │ ├── roper.c │ │ ├── s_mage.c │ │ ├── shop_k.c │ │ ├── skaldar.c │ │ ├── stmaster.c │ │ ├── stone.c │ │ ├── vaxalt.c │ │ ├── weapons │ │ │ └── claw.c │ │ └── yarik.c │ │ ├── mts │ │ ├── build1.c │ │ ├── build2.c │ │ ├── forest01.c │ │ ├── forest02.c │ │ ├── forest03.c │ │ ├── forest04.c │ │ ├── forest05.c │ │ ├── forest06.c │ │ ├── forest07.c │ │ ├── forest08.c │ │ ├── forest09.c │ │ ├── forest10.c │ │ ├── forest11.c │ │ ├── forest12.c │ │ ├── inn.c │ │ ├── lair.c │ │ ├── mts01.c │ │ ├── mts02.c │ │ ├── mts03.c │ │ ├── mts04.c │ │ ├── mts05.c │ │ ├── mts06.c │ │ ├── mts07.c │ │ └── mts08.c │ │ ├── obj │ │ ├── armor │ │ │ ├── leather.c │ │ │ ├── plate.c │ │ │ └── scale.c │ │ ├── misc │ │ │ ├── barrel.c │ │ │ ├── book.c │ │ │ ├── brose.c │ │ │ ├── healing.c │ │ │ ├── hstones.c │ │ │ ├── jack.c │ │ │ ├── keg.c │ │ │ ├── monument.c │ │ │ ├── pbwscroll.c │ │ │ ├── stones.c │ │ │ ├── torch.c │ │ │ ├── tstone1.c │ │ │ ├── tstone2.c │ │ │ └── wand.c │ │ └── weapon │ │ │ ├── axe_d.c │ │ │ └── shsword.c │ │ ├── sewer │ │ ├── book.c │ │ ├── fall1.c │ │ ├── pool.c │ │ ├── sewer01.c │ │ ├── sewer05.c │ │ ├── sewer06.c │ │ ├── sewer07.c │ │ ├── sewer08.c │ │ ├── sewer09.c │ │ ├── sewer10.c │ │ ├── sewer11.c │ │ ├── sewer12.c │ │ ├── sewer13.c │ │ ├── sewer14.c │ │ ├── sewer15.c │ │ ├── sewer16.c │ │ ├── sewer17.c │ │ ├── sewer18.c │ │ ├── sewer19.c │ │ ├── sewer20.c │ │ ├── sewer21.c │ │ ├── sewer22.c │ │ ├── sewer23.c │ │ ├── sewer24.c │ │ ├── sewer25.c │ │ ├── sewer26.c │ │ ├── sewer27.c │ │ ├── sewer28.c │ │ ├── sewer29.c │ │ ├── sewer30.c │ │ ├── sewer31.c │ │ ├── sewer32.c │ │ ├── sewer33.c │ │ ├── sewer34.c │ │ ├── sewer35.c │ │ ├── sewer36.c │ │ ├── sewer37.c │ │ ├── sewer38.c │ │ ├── sewer39.c │ │ ├── sewer40.c │ │ ├── sewer41.c │ │ ├── sewer42.c │ │ ├── sewer43.c │ │ ├── sewer44.c │ │ ├── sewer45.c │ │ ├── sewer46.c │ │ ├── sewer47.c │ │ ├── sewer48.c │ │ ├── sewer49.c │ │ ├── sewer50.c │ │ ├── sewer_room.c │ │ ├── statues_d.c │ │ ├── tunnel01.c │ │ ├── tunnel02.c │ │ ├── tunnel03.c │ │ ├── tunnel04.c │ │ └── underwater.c │ │ ├── tower1 │ │ ├── room1.c │ │ ├── room2.c │ │ └── tower.c │ │ └── town │ │ ├── a_storage.c │ │ ├── armorer.c │ │ ├── balcony.c │ │ ├── bank.c │ │ ├── build1.c │ │ ├── build1.c.new │ │ ├── build2.c │ │ ├── church.c │ │ ├── coder.c │ │ ├── general.c │ │ ├── ghouse1.c │ │ ├── ghouse2.c │ │ ├── glazier.c │ │ ├── grave1.c │ │ ├── gs_storage.c │ │ ├── healer.c │ │ ├── hotel.c │ │ ├── hshop.c │ │ ├── m_storage.c │ │ ├── magic.c │ │ ├── mshop.c │ │ ├── pub.c │ │ ├── pub1.c │ │ ├── roadE1.c │ │ ├── roadE2.c │ │ ├── roadE3.c │ │ ├── roadE4.c │ │ ├── roadN1.c │ │ ├── roadN2.c │ │ ├── roadS1.c │ │ ├── roadS2.c │ │ ├── roadS3.c │ │ ├── roadSW1.c │ │ ├── roadSW2.c │ │ ├── roadW1.c │ │ ├── roadW2.c │ │ ├── roadW3.c │ │ ├── roadW4.c │ │ ├── roadW5.c │ │ ├── square.c │ │ ├── stable.c │ │ ├── storage.c │ │ ├── tchamber.c │ │ ├── w_storage.c │ │ └── wshop.c ├── example │ ├── example.h │ ├── room │ │ └── street1.c │ └── storage │ │ └── street.c ├── guilds │ ├── alliance │ │ ├── alliance.h │ │ ├── equip │ │ │ ├── tabard.c │ │ │ └── wplate.c │ │ ├── hall │ │ │ ├── archers.c │ │ │ ├── bridge.c │ │ │ ├── common.c │ │ │ ├── dungeon.c │ │ │ ├── gate.c │ │ │ ├── hall.c │ │ │ ├── holy.c │ │ │ ├── lab.c │ │ │ ├── leaders.c │ │ │ ├── magi.c │ │ │ ├── main.c │ │ │ ├── quartersnorth.c │ │ │ ├── quarterssouth.c │ │ │ ├── quarterswest.c │ │ │ ├── stable.c │ │ │ ├── stair1.c │ │ │ ├── stair2.c │ │ │ ├── treasure.c │ │ │ └── yard.c │ │ ├── hall2 │ │ │ ├── bridge.c │ │ │ ├── dungeon.c │ │ │ ├── gate.c │ │ │ └── stair2.c │ │ ├── hall_d.c │ │ ├── mon │ │ │ ├── archer.c │ │ │ ├── gaheris.c │ │ │ ├── guard.c │ │ │ ├── jailer.c │ │ │ └── wander.c │ │ └── obj │ │ │ ├── alliancering.c │ │ │ ├── dkey.c │ │ │ ├── gtabard.c │ │ │ ├── guardring.c │ │ │ └── jail_food.c │ ├── circleoflight │ │ ├── defs.h │ │ ├── guildcode.txt │ │ ├── guildseal.c │ │ └── rooms │ │ │ ├── foyer.c │ │ │ └── path.c │ ├── consortium │ │ ├── hall │ │ │ ├── doc.c │ │ │ ├── geo.c │ │ │ ├── help.c │ │ │ ├── lab.c │ │ │ ├── library.c │ │ │ ├── lounge.c │ │ │ ├── main.c │ │ │ ├── mainroom.c │ │ │ ├── meeting.c │ │ │ ├── research.c │ │ │ ├── storeroom.c │ │ │ └── thazorus.c │ │ └── obj │ │ │ └── cowl_knowledge.c │ ├── fist │ │ ├── Godzilla │ │ ├── hall │ │ │ ├── fist_armband.c │ │ │ ├── fistchest.c │ │ │ ├── guild1.c │ │ │ ├── guild2.c │ │ │ ├── guild3.c │ │ │ ├── guild4.c │ │ │ ├── guild5.c │ │ │ ├── guild6.c │ │ │ ├── guild7.c │ │ │ ├── guildheal.c │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hc_room.c │ │ │ ├── hcetatoo.c │ │ │ ├── hctatoo.c │ │ │ ├── letatoo.c │ │ │ ├── list_room.c │ │ │ ├── main.c │ │ │ ├── store.c │ │ │ ├── store1.c │ │ │ ├── treasury.c │ │ │ └── tulmak.c │ │ ├── mansion │ │ │ ├── dining.c │ │ │ ├── entry.c │ │ │ ├── ghall.c │ │ │ ├── library.c │ │ │ ├── music.c │ │ │ ├── staircase1.c │ │ │ ├── staircase2.c │ │ │ └── staircase3.c │ │ ├── mon │ │ │ ├── wait1.c │ │ │ └── wait2.c │ │ ├── obj │ │ │ └── tattoo.c │ │ └── oldfist │ │ │ ├── defenders │ │ │ ├── bard1.c │ │ │ ├── bard2.c │ │ │ ├── bard3.c │ │ │ ├── cleric1.c │ │ │ ├── cleric2.c │ │ │ ├── cleric3.c │ │ │ ├── fighter1.c │ │ │ ├── fighter2.c │ │ │ ├── fighter3.c │ │ │ ├── mage1.c │ │ │ ├── mage2.c │ │ │ ├── mage3.c │ │ │ ├── thief1.c │ │ │ ├── thief2.c │ │ │ └── thief3.c │ │ │ ├── guards │ │ │ ├── bard1.c │ │ │ ├── bard2.c │ │ │ ├── bard3.c │ │ │ ├── cleric1.c │ │ │ ├── cleric2.c │ │ │ ├── cleric3.c │ │ │ ├── fighter1.c │ │ │ ├── fighter2.c │ │ │ ├── fighter3.c │ │ │ ├── mage1.c │ │ │ ├── mage2.c │ │ │ ├── mage3.c │ │ │ ├── thief1.c │ │ │ ├── thief2.c │ │ │ └── thief3.c │ │ │ ├── hall │ │ │ ├── fist_armband.c │ │ │ ├── fistchest.c │ │ │ ├── guild1.c │ │ │ ├── guild2.c │ │ │ ├── guild3.c │ │ │ ├── guild4.c │ │ │ ├── guild5.c │ │ │ ├── guild6.c │ │ │ ├── guild7.c │ │ │ ├── guildheal.c │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hc_room.c │ │ │ ├── hcetatoo.c │ │ │ ├── hctatoo.c │ │ │ ├── letatoo.c │ │ │ ├── list_room.c │ │ │ ├── main.c │ │ │ ├── store.c │ │ │ ├── store1.c │ │ │ ├── treasury.c │ │ │ └── tulmak.c │ │ │ ├── obj │ │ │ └── tattoo.c │ │ │ └── troopers │ │ │ ├── bard1.c │ │ │ ├── bard2.c │ │ │ ├── bard3.c │ │ │ ├── cleric1.c │ │ │ ├── cleric2.c │ │ │ ├── cleric3.c │ │ │ ├── fighter1.c │ │ │ ├── fighter2.c │ │ │ ├── fighter3.c │ │ │ ├── mage1.c │ │ │ ├── mage2.c │ │ │ ├── mage3.c │ │ │ ├── thief1.c │ │ │ ├── thief2.c │ │ │ └── thief3.c │ ├── inherit │ │ ├── g_defen.c │ │ ├── g_money.c │ │ └── g_troop.c │ ├── kindred │ │ ├── obj │ │ │ ├── berries.c │ │ │ ├── honey.c │ │ │ ├── pendant.c │ │ │ ├── stream.c │ │ │ └── tree.c │ │ └── rooms │ │ │ ├── atree.c │ │ │ ├── bees.c │ │ │ ├── bushes.c │ │ │ ├── campfire.c │ │ │ ├── pond.c │ │ │ ├── stones.c │ │ │ ├── stream.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ ├── trail3.c │ │ │ └── tree.c │ ├── legion │ │ ├── gloves.c │ │ ├── hall │ │ │ ├── arena │ │ │ │ ├── arena1.c │ │ │ │ ├── arena10.c │ │ │ │ ├── arena11.c │ │ │ │ ├── arena12.c │ │ │ │ ├── arena13.c │ │ │ │ ├── arena14.c │ │ │ │ ├── arena15.c │ │ │ │ ├── arena16.c │ │ │ │ ├── arena17.c │ │ │ │ ├── arena18.c │ │ │ │ ├── arena19.c │ │ │ │ ├── arena2.c │ │ │ │ ├── arena20.c │ │ │ │ ├── arena21.c │ │ │ │ ├── arena22.c │ │ │ │ ├── arena23.c │ │ │ │ ├── arena3.c │ │ │ │ ├── arena4.c │ │ │ │ ├── arena5.c │ │ │ │ ├── arena6.c │ │ │ │ ├── arena7.c │ │ │ │ ├── arena8.c │ │ │ │ ├── arena9.c │ │ │ │ ├── arenah.c │ │ │ │ ├── joust1.c │ │ │ │ ├── joust2.c │ │ │ │ ├── joust3.c │ │ │ │ ├── joust4.c │ │ │ │ ├── joust5.c │ │ │ │ ├── joust6.c │ │ │ │ ├── joust7.c │ │ │ │ ├── joust8.c │ │ │ │ └── joust9.c │ │ │ ├── center1.c │ │ │ ├── center2.c │ │ │ ├── center3.c │ │ │ ├── guildinfo.h │ │ │ ├── hub.c │ │ │ ├── lead1.c │ │ │ ├── main.c │ │ │ └── store1.c │ │ └── npcs │ │ │ ├── barkan.c │ │ │ ├── barkeep.c │ │ │ ├── naylor.c │ │ │ └── waiter.c │ ├── order │ │ ├── defenders │ │ │ ├── Gbardd1.c │ │ │ ├── Gbardd2.c │ │ │ ├── Gbardd3.c │ │ │ ├── Gclericd1.c │ │ │ ├── Gclericd2.c │ │ │ ├── Gclericd3.c │ │ │ ├── Gfighterd1.c │ │ │ ├── Gfighterd2.c │ │ │ ├── Gfighterd3.c │ │ │ ├── Gmaged1.c │ │ │ ├── Gmaged2.c │ │ │ ├── Gmaged3.c │ │ │ ├── Gpaladind1.c │ │ │ ├── Gpaladind2.c │ │ │ ├── Gpaladind3.c │ │ │ ├── Grangerd1.c │ │ │ ├── Grangerd2.c │ │ │ ├── Grangerd3.c │ │ │ ├── Gthiefd1.c │ │ │ ├── Gthiefd2.c │ │ │ └── Gthiefd3.c │ │ ├── guards │ │ │ ├── Gabardg2.c │ │ │ ├── Gbardg1.c │ │ │ ├── Gbardg3.c │ │ │ ├── Gclericg1.c │ │ │ ├── Gclericg2.c │ │ │ ├── Gclericg3.c │ │ │ ├── Gfighterg1.c │ │ │ ├── Gfighterg2.c │ │ │ ├── Gfighterg3.c │ │ │ ├── Gmageg1.c │ │ │ ├── Gmageg2.c │ │ │ ├── Gmageg3.c │ │ │ ├── Gpalading1.c │ │ │ ├── Gpalading2.c │ │ │ ├── Gpalading3.c │ │ │ ├── Grangerg1.c │ │ │ ├── Grangerg2.c │ │ │ ├── Grangerg3.c │ │ │ ├── Gthiefg1.c │ │ │ ├── Gthiefg2.c │ │ │ └── Gthiefg3.c │ │ ├── hall │ │ │ ├── arena.c │ │ │ ├── arena1.c │ │ │ ├── arena10.c │ │ │ ├── arena11.c │ │ │ ├── arena12.c │ │ │ ├── arena13.c │ │ │ ├── arena14.c │ │ │ ├── arena2.c │ │ │ ├── arena3.c │ │ │ ├── arena4.c │ │ │ ├── arena5.c │ │ │ ├── arena6.c │ │ │ ├── arena7.c │ │ │ ├── arena8.c │ │ │ ├── arena9.c │ │ │ ├── bookie.c │ │ │ ├── bookieb.c │ │ │ ├── crest.c │ │ │ ├── main.c │ │ │ ├── main2.c │ │ │ ├── mainb.c │ │ │ ├── memb.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path4b.c │ │ │ ├── trail1.c │ │ │ ├── trail2.c │ │ │ ├── trail3.c │ │ │ ├── treasury.c │ │ │ └── voting.c │ │ ├── obj │ │ │ ├── crest.c │ │ │ ├── jester.c │ │ │ ├── knights.c │ │ │ ├── lord.c │ │ │ ├── seer.c │ │ │ └── thane.c │ │ └── troopers │ │ │ ├── Gbardt1.c │ │ │ ├── Gbardt2.c │ │ │ ├── Gbardt3.c │ │ │ ├── Gclerict1.c │ │ │ ├── Gclerict2.c │ │ │ ├── Gclerict3.c │ │ │ ├── Gfightert1.c │ │ │ ├── Gfightert2.c │ │ │ ├── Gfightert3.c │ │ │ ├── Gmaget1.c │ │ │ ├── Gmaget2.c │ │ │ ├── Gmaget3.c │ │ │ ├── Gpaladint1.c │ │ │ ├── Gpaladint2.c │ │ │ ├── Gpaladint3.c │ │ │ ├── Grangert1.c │ │ │ ├── Grangert2.c │ │ │ ├── Grangert3.c │ │ │ ├── Gthieft1.c │ │ │ ├── Gthieft2.c │ │ │ └── Gthieft3.c │ ├── pack │ │ ├── arena │ │ │ ├── arena1.c │ │ │ ├── arena2.c │ │ │ ├── arena3.c │ │ │ ├── arena4.c │ │ │ ├── arena5.c │ │ │ ├── arena6.c │ │ │ ├── arena7.c │ │ │ ├── arena8.c │ │ │ └── heal.c │ │ ├── grove │ │ │ ├── g1.c │ │ │ ├── g10.c │ │ │ ├── g11.c │ │ │ ├── g12.c │ │ │ ├── g13.c │ │ │ ├── g14.c │ │ │ ├── g15.c │ │ │ ├── g16.c │ │ │ ├── g17.c │ │ │ ├── g18.c │ │ │ ├── g19.c │ │ │ ├── g2.c │ │ │ ├── g20.c │ │ │ ├── g3.c │ │ │ ├── g4.c │ │ │ ├── g5.c │ │ │ ├── g6.c │ │ │ ├── g7.c │ │ │ ├── g8.c │ │ │ ├── g9.c │ │ │ ├── gate.c │ │ │ ├── grove.c │ │ │ ├── grove2.c │ │ │ └── newg13.c │ │ ├── hall │ │ │ ├── bank.c │ │ │ ├── bookie.c │ │ │ ├── center3.c │ │ │ ├── donate.c │ │ │ ├── firedock.c │ │ │ ├── firedock2.c │ │ │ ├── ghall.c │ │ │ ├── hall.c │ │ │ ├── main.c │ │ │ ├── main2.c │ │ │ ├── recovery.c │ │ │ ├── restore.c │ │ │ ├── smokeroom.c │ │ │ ├── storage1.c │ │ │ ├── store1.c │ │ │ └── war.c │ │ ├── mon │ │ │ ├── barman.c │ │ │ ├── grimm.c │ │ │ ├── luc.c │ │ │ └── strife.c │ │ ├── obj │ │ │ ├── chest.c │ │ │ ├── chest2.c │ │ │ ├── mask.c │ │ │ └── ring.c │ │ ├── short.h │ │ └── troopers │ │ │ ├── antit1.c │ │ │ ├── antit2.c │ │ │ ├── antit3.c │ │ │ ├── fightert1.c │ │ │ ├── fightert2.c │ │ │ ├── fightert3.c │ │ │ ├── nightmare.c │ │ │ ├── rangert1.c │ │ │ ├── rangert2.c │ │ │ ├── rangert3.c │ │ │ ├── thieft1.c │ │ │ ├── thieft2.c │ │ │ └── thieft3.c │ ├── raiders │ │ ├── hall │ │ │ ├── cave1.c │ │ │ ├── entrance.c │ │ │ ├── hallway.c │ │ │ ├── main.c │ │ │ ├── members.c │ │ │ └── office.c │ │ ├── mons │ │ │ ├── jakob.c │ │ │ └── tavares.c │ │ ├── mosutha │ │ │ ├── mos.h │ │ │ └── rooms │ │ │ │ ├── mosal1.c │ │ │ │ ├── mosal2.c │ │ │ │ ├── mosal3.c │ │ │ │ ├── mosal4.c │ │ │ │ ├── moscom.c │ │ │ │ ├── mosent.c │ │ │ │ ├── moslab.c │ │ │ │ ├── moslib.c │ │ │ │ ├── moslib1.c │ │ │ │ ├── moslib2.c │ │ │ │ ├── moslib3.c │ │ │ │ ├── moslib4.c │ │ │ │ ├── mospit.c │ │ │ │ ├── mosscry.c │ │ │ │ └── mossmok.c │ │ └── obj │ │ │ ├── earguard.c │ │ │ └── earring.c │ ├── regents │ │ ├── obj │ │ │ └── bracelet.c │ │ └── rooms │ │ │ ├── hall1.c │ │ │ └── hall2.c │ └── virtual │ │ ├── field │ │ ├── bat.desc │ │ ├── bat.exits │ │ └── bat.terrain │ │ ├── field_daemon.c │ │ └── field_server.c ├── hm_quest │ ├── 1 │ │ ├── a │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── b │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── c │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ └── d │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ ├── 2 │ │ ├── a │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── b │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── c │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ └── d │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ ├── 3 │ │ ├── a │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── b │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── c │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ └── d │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ ├── 4 │ │ ├── a │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── b │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── c │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ └── d │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ ├── 6 │ │ ├── a │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── b │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ ├── c │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ │ └── d │ │ │ ├── I,I.c │ │ │ ├── I,II.c │ │ │ ├── I,III.c │ │ │ ├── I,IV.c │ │ │ ├── II,I.c │ │ │ ├── II,II.c │ │ │ ├── II,III.c │ │ │ ├── II,IV.c │ │ │ ├── III,I.c │ │ │ ├── III,II.c │ │ │ ├── III,III.c │ │ │ ├── III,IV.c │ │ │ ├── IV,I.c │ │ │ ├── IV,II.c │ │ │ ├── IV,III.c │ │ │ └── IV,IV.c │ ├── chests │ │ ├── chest1.c │ │ ├── chest10.c │ │ ├── chest11.c │ │ ├── chest12.c │ │ ├── chest13.c │ │ ├── chest14.c │ │ ├── chest15.c │ │ ├── chest16.c │ │ ├── chest17.c │ │ ├── chest18.c │ │ ├── chest19.c │ │ ├── chest2.c │ │ ├── chest20.c │ │ ├── chest21.c │ │ ├── chest22.c │ │ ├── chest23.c │ │ ├── chest24.c │ │ ├── chest25.c │ │ ├── chest26.c │ │ ├── chest27.c │ │ ├── chest28.c │ │ ├── chest29.c │ │ ├── chest3.c │ │ ├── chest30.c │ │ ├── chest4.c │ │ ├── chest5.c │ │ ├── chest6.c │ │ ├── chest7.c │ │ ├── chest8.c │ │ └── chest9.c │ ├── common │ │ └── room.c │ ├── edit │ ├── enterence.c │ ├── maze.c │ ├── maze.h │ ├── mon │ │ ├── quest_goblin.c │ │ ├── quest_lady.c │ │ └── quest_monster.c │ ├── obj │ │ ├── blade1.c │ │ ├── blade2.c │ │ ├── blade3.c │ │ ├── gem1.c │ │ ├── gem2.c │ │ ├── gem3.c │ │ ├── hilt1.c │ │ ├── hilt2.c │ │ ├── hilt3.c │ │ ├── note1a.c │ │ ├── note1b.c │ │ ├── note1c.c │ │ ├── note2a.c │ │ ├── note2b.c │ │ ├── note2c.c │ │ ├── note3a.c │ │ ├── note3b.c │ │ ├── note3c.c │ │ ├── note4a.c │ │ ├── note4b.c │ │ ├── note4c.c │ │ ├── note5a.c │ │ ├── note5b.c │ │ ├── note5b.new │ │ ├── note5c.c │ │ ├── note6.c │ │ ├── pommel1.c │ │ ├── pommel2.c │ │ ├── pommel3.c │ │ ├── scabb1.c │ │ ├── scabb2.c │ │ ├── scabb3.c │ │ ├── sword1.c │ │ ├── sword2.c │ │ ├── sword3.c │ │ └── table.c │ ├── old_hm_quest │ │ ├── 1 │ │ │ ├── a │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── b │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── c │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ └── d │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ ├── 2 │ │ │ ├── a │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── b │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── c │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ └── d │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ ├── 3 │ │ │ ├── a │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── b │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── c │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ └── d │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ ├── 4 │ │ │ ├── a │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── b │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── c │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ └── d │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ ├── 6 │ │ │ ├── a │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── b │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ ├── c │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ │ └── d │ │ │ │ ├── I,I.c │ │ │ │ ├── I,II.c │ │ │ │ ├── I,III.c │ │ │ │ ├── I,IV.c │ │ │ │ ├── II,I.c │ │ │ │ ├── II,II.c │ │ │ │ ├── II,III.c │ │ │ │ ├── II,IV.c │ │ │ │ ├── III,I.c │ │ │ │ ├── III,II.c │ │ │ │ ├── III,III.c │ │ │ │ ├── III,IV.c │ │ │ │ ├── IV,I.c │ │ │ │ ├── IV,II.c │ │ │ │ ├── IV,III.c │ │ │ │ └── IV,IV.c │ │ ├── chests │ │ │ ├── chest1.c │ │ │ ├── chest10.c │ │ │ ├── chest11.c │ │ │ ├── chest12.c │ │ │ ├── chest13.c │ │ │ ├── chest14.c │ │ │ ├── chest15.c │ │ │ ├── chest16.c │ │ │ ├── chest17.c │ │ │ ├── chest18.c │ │ │ ├── chest19.c │ │ │ ├── chest2.c │ │ │ ├── chest20.c │ │ │ ├── chest21.c │ │ │ ├── chest22.c │ │ │ ├── chest23.c │ │ │ ├── chest24.c │ │ │ ├── chest25.c │ │ │ ├── chest26.c │ │ │ ├── chest27.c │ │ │ ├── chest28.c │ │ │ ├── chest29.c │ │ │ ├── chest3.c │ │ │ ├── chest30.c │ │ │ ├── chest4.c │ │ │ ├── chest5.c │ │ │ ├── chest6.c │ │ │ ├── chest7.c │ │ │ ├── chest8.c │ │ │ └── chest9.c │ │ ├── common │ │ │ └── room.c │ │ ├── edit │ │ ├── enterence.c │ │ ├── maze.c │ │ ├── maze.h │ │ ├── mon │ │ │ ├── hmmob.c │ │ │ ├── qAntipaladin.c │ │ │ ├── qAssassin.c │ │ │ ├── qBard.c │ │ │ ├── qCavalier.c │ │ │ ├── qCleric-Mage.c │ │ │ ├── qCleric-Psion.c │ │ │ ├── qCleric.c │ │ │ ├── qDruid.c │ │ │ ├── qFighter-Cleric-Mage.c │ │ │ ├── qFighter-Cleric.c │ │ │ ├── qFighter-Mage-Thief.c │ │ │ ├── qFighter-Mage.c │ │ │ ├── qFighter-Psion.c │ │ │ ├── qFighter-Thief.c │ │ │ ├── qFighter.c │ │ │ ├── qMage-Thief.c │ │ │ ├── qMage.c │ │ │ ├── qPaladin.c │ │ │ ├── qPsion-Thief.c │ │ │ ├── qPsion.c │ │ │ ├── qRanger.c │ │ │ ├── qThief.c │ │ │ ├── quest_goblin.c │ │ │ └── quest_lady.c │ │ ├── obj │ │ │ ├── blade1.c │ │ │ ├── blade2.c │ │ │ ├── blade3.c │ │ │ ├── gem1.c │ │ │ ├── gem2.c │ │ │ ├── gem3.c │ │ │ ├── hilt1.c │ │ │ ├── hilt2.c │ │ │ ├── hilt3.c │ │ │ ├── note1a.c │ │ │ ├── note1b.c │ │ │ ├── note1c.c │ │ │ ├── note2a.c │ │ │ ├── note2b.c │ │ │ ├── note2c.c │ │ │ ├── note3a.c │ │ │ ├── note3b.c │ │ │ ├── note3c.c │ │ │ ├── note4a.c │ │ │ ├── note4b.c │ │ │ ├── note4c.c │ │ │ ├── note5a.c │ │ │ ├── note5b.c │ │ │ ├── note5c.c │ │ │ ├── note6.c │ │ │ ├── pommel1.c │ │ │ ├── pommel2.c │ │ │ ├── pommel3.c │ │ │ ├── scabb1.c │ │ │ ├── scabb2.c │ │ │ ├── scabb3.c │ │ │ ├── sword1.c │ │ │ ├── sword2.c │ │ │ ├── sword3.c │ │ │ └── table.c │ │ └── rooms │ │ │ ├── hm_quest_begin.c │ │ │ ├── hm_quest_juran.c │ │ │ ├── hmquest.dock.c │ │ │ ├── quest1.c │ │ │ ├── quest10.c │ │ │ ├── quest11.c │ │ │ ├── quest12.c │ │ │ ├── quest13.c │ │ │ ├── quest14.c │ │ │ ├── quest15.c │ │ │ ├── quest16.c │ │ │ ├── quest17.c │ │ │ ├── quest18.c │ │ │ ├── quest19.c │ │ │ ├── quest2.c │ │ │ ├── quest20.c │ │ │ ├── quest21.c │ │ │ ├── quest22.c │ │ │ ├── quest23.c │ │ │ ├── quest24.c │ │ │ ├── quest25.c │ │ │ ├── quest26.c │ │ │ ├── quest27.c │ │ │ ├── quest28.c │ │ │ ├── quest29.c │ │ │ ├── quest3.c │ │ │ ├── quest30.c │ │ │ ├── quest300.c │ │ │ ├── quest301.c │ │ │ ├── quest302.c │ │ │ ├── quest303.c │ │ │ ├── quest304.c │ │ │ ├── quest305.c │ │ │ ├── quest306.c │ │ │ ├── quest307.c │ │ │ ├── quest308.c │ │ │ ├── quest309.c │ │ │ ├── quest31.c │ │ │ ├── quest310.c │ │ │ ├── quest311.c │ │ │ ├── quest312.c │ │ │ ├── quest313.c │ │ │ ├── quest314.c │ │ │ ├── quest315.c │ │ │ ├── quest316.c │ │ │ ├── quest317.c │ │ │ ├── quest318.c │ │ │ ├── quest319.c │ │ │ ├── quest4.c │ │ │ ├── quest5.c │ │ │ ├── quest6.c │ │ │ ├── quest7.c │ │ │ ├── quest8.c │ │ │ └── quest9.c │ ├── oldrooms │ │ ├── hm_quest_begin.c │ │ ├── hm_quest_juran.c │ │ ├── quest1.c │ │ ├── quest10.c │ │ ├── quest11.c │ │ ├── quest12.c │ │ ├── quest13.c │ │ ├── quest14.c │ │ ├── quest15.c │ │ ├── quest16.c │ │ ├── quest17.c │ │ ├── quest18.c │ │ ├── quest19.c │ │ ├── quest2.c │ │ ├── quest20.c │ │ ├── quest21.c │ │ ├── quest22.c │ │ ├── quest23.c │ │ ├── quest24.c │ │ ├── quest25.c │ │ ├── quest26.c │ │ ├── quest27.c │ │ ├── quest28.c │ │ ├── quest29.c │ │ ├── quest3.c │ │ ├── quest30.c │ │ ├── quest31.c │ │ ├── quest4.c │ │ ├── quest5.c │ │ ├── quest6.c │ │ ├── quest7.c │ │ ├── quest8.c │ │ └── quest9.c │ └── rooms │ │ ├── quest10.c │ │ ├── quest11.c │ │ ├── quest12.c │ │ ├── quest13.c │ │ ├── quest14.c │ │ ├── quest2.c │ │ ├── quest3.c │ │ ├── quest4.c │ │ ├── quest5.c │ │ ├── quest6.c │ │ ├── quest7.c │ │ ├── quest8.c │ │ └── quest9.c ├── islands │ ├── alias.c │ ├── argentrock │ │ ├── argabbr.h │ │ ├── desc.h │ │ ├── inherit │ │ │ ├── argpath.c │ │ │ ├── indoors.c │ │ │ ├── mainplat.c │ │ │ ├── outdoors.c │ │ │ ├── sea.c │ │ │ └── shore.c │ │ ├── jet_scythe.c │ │ ├── jet_scythe2.c │ │ ├── mon │ │ │ ├── ambusher.c │ │ │ ├── batlin.c │ │ │ ├── chef.c │ │ │ ├── cplant.c │ │ │ ├── cwyrm.c │ │ │ ├── diamond.c │ │ │ ├── diamond2.c │ │ │ ├── elft.c │ │ │ ├── erider.c │ │ │ ├── fernibus.c │ │ │ ├── fey_ri.c │ │ │ ├── fey_spirit.c │ │ │ ├── fmammoth.c │ │ │ ├── gobo.c │ │ │ ├── gspider.c │ │ │ ├── headless.c │ │ │ ├── healer.c │ │ │ ├── hellhound.c │ │ │ ├── hippogrif.c │ │ │ ├── jarkunish.c │ │ │ ├── kronibus.c │ │ │ ├── refugee.c │ │ │ ├── shopkeep.c │ │ │ ├── sprite.c │ │ │ ├── tbasilisk.c │ │ │ ├── tree.c │ │ │ ├── watcher.c │ │ │ └── wife.c │ │ ├── mons │ │ ├── obj │ │ │ ├── amulet.c │ │ │ ├── argbkey.c │ │ │ ├── arggkey.c │ │ │ ├── argnote.c │ │ │ ├── argokey.c │ │ │ ├── argrkey.c │ │ │ ├── argwkey.c │ │ │ ├── belt.c │ │ │ ├── blackpearl.c │ │ │ ├── bonebow.c │ │ │ ├── bram.c │ │ │ ├── breeches.c │ │ │ ├── chain.c │ │ │ ├── demon_claws.c │ │ │ ├── demon_tail.c │ │ │ ├── diamond_fan.c │ │ │ ├── diamond_short.c │ │ │ ├── diamond_star.c │ │ │ ├── elec_knife.c │ │ │ ├── elemental_staff.c │ │ │ ├── feline_lblade.c │ │ │ ├── feyhalberd.c │ │ │ ├── flame_fan.c │ │ │ ├── glaive.c │ │ │ ├── gobstorm.c │ │ │ ├── godag.c │ │ │ ├── golden_whip.c │ │ │ ├── headband.c │ │ │ ├── hellfire_coil.c │ │ │ ├── jet_scythe.c │ │ │ ├── jet_scythe2.c │ │ │ ├── leaf_tblade.c │ │ │ ├── lembas.c │ │ │ ├── lion_plate.c │ │ │ ├── long_box.c │ │ │ ├── moon_amulet.c │ │ │ ├── needle_flail.c │ │ │ ├── obsidian_ring.c │ │ │ ├── pearl_2hsword.c │ │ │ ├── pearl_longsword.c │ │ │ ├── phoenix_leather.c │ │ │ ├── prejudice_d.c │ │ │ ├── psiblade.c │ │ │ ├── purple_hide.c │ │ │ ├── raven_plate.c │ │ │ ├── robes.c │ │ │ ├── serpent_lblade.c │ │ │ ├── shak.c │ │ │ ├── shd_bskeletal.c │ │ │ ├── shd_glassy.c │ │ │ ├── shd_gskeletal.c │ │ │ ├── shoes.c │ │ │ ├── spear.c │ │ │ ├── spidersilk.c │ │ │ ├── spiderweb.c │ │ │ ├── staff_blue.c │ │ │ ├── staff_red.c │ │ │ ├── staff_yellow.c │ │ │ ├── sulfurousash.c │ │ │ ├── sword_light.c │ │ │ ├── tortured_blade.c │ │ │ ├── vine_tblade.c │ │ │ └── vortex.c │ │ ├── obk │ │ ├── prejudice.h │ │ ├── psiblade.c │ │ ├── rand.h │ │ ├── rooms │ │ │ ├── argfoyer.c │ │ │ ├── arghouse1.c │ │ │ ├── arghouse10.c │ │ │ ├── arghouse11.c │ │ │ ├── arghouse2.c │ │ │ ├── arghouse3.c │ │ │ ├── arghouse4.c │ │ │ ├── arghouse5.c │ │ │ ├── arghouse6.c │ │ │ ├── arghouse7.c │ │ │ ├── arghouse8.c │ │ │ ├── arghouse9.c │ │ │ ├── argpath1.c │ │ │ ├── argpath10.c │ │ │ ├── argpath11.c │ │ │ ├── argpath12.c │ │ │ ├── argpath13.c │ │ │ ├── argpath14.c │ │ │ ├── argpath15.c │ │ │ ├── argpath16.c │ │ │ ├── argpath17.c │ │ │ ├── argpath18.c │ │ │ ├── argpath19.c │ │ │ ├── argpath2.c │ │ │ ├── argpath20.c │ │ │ ├── argpath21.c │ │ │ ├── argpath22.c │ │ │ ├── argpath23.c │ │ │ ├── argpath24.c │ │ │ ├── argpath25.c │ │ │ ├── argpath26.c │ │ │ ├── argpath27.c │ │ │ ├── argpath28.c │ │ │ ├── argpath29.c │ │ │ ├── argpath3.c │ │ │ ├── argpath30.c │ │ │ ├── argpath31.c │ │ │ ├── argpath32.c │ │ │ ├── argpath33.c │ │ │ ├── argpath34.c │ │ │ ├── argpath35.c │ │ │ ├── argpath36.c │ │ │ ├── argpath37.c │ │ │ ├── argpath38.c │ │ │ ├── argpath39.c │ │ │ ├── argpath4.c │ │ │ ├── argpath40.c │ │ │ ├── argpath41.c │ │ │ ├── argpath42.c │ │ │ ├── argpath43.c │ │ │ ├── argpath5.c │ │ │ ├── argpath6.c │ │ │ ├── argpath7.c │ │ │ ├── argpath8.c │ │ │ ├── argpath9.c │ │ │ ├── cache.c │ │ │ ├── gstorage.c │ │ │ ├── platform01.c │ │ │ ├── platform11.c │ │ │ ├── platform12.c │ │ │ ├── platform13.c │ │ │ ├── platform14.c │ │ │ ├── platform15.c │ │ │ ├── platform16.c │ │ │ ├── platform17.c │ │ │ ├── platform18.c │ │ │ ├── platform19.c │ │ │ ├── platform21.c │ │ │ ├── platform22.c │ │ │ ├── platform23.c │ │ │ ├── platform24.c │ │ │ ├── platform25.c │ │ │ └── platform31.c │ │ ├── shore │ │ │ ├── island.c │ │ │ ├── island1.c │ │ │ ├── shore1.c │ │ │ ├── shore10.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── shore7.c │ │ │ ├── shore8.c │ │ │ └── shore9.c │ │ └── tortured_blade.c │ ├── carcosa │ │ ├── misc │ │ │ ├── deck.c │ │ │ ├── gem.c │ │ │ └── gems.c │ │ ├── mon │ │ │ ├── byak.c │ │ │ ├── crab2.c │ │ │ ├── death.c │ │ │ ├── deep.c │ │ │ ├── ghast.c │ │ │ ├── ghast2.c │ │ │ ├── ghoul.c │ │ │ └── migo.c │ │ ├── rooms │ │ │ ├── car1.c │ │ │ ├── car2.c │ │ │ ├── car3.c │ │ │ ├── car4.c │ │ │ ├── car5.c │ │ │ ├── car6.c │ │ │ ├── car7.c │ │ │ ├── car8.c │ │ │ ├── car9.c │ │ │ ├── carbea.c │ │ │ ├── carbea1.c │ │ │ ├── carbea10.c │ │ │ ├── carbea2.c │ │ │ ├── carbea3.c │ │ │ ├── carbea4.c │ │ │ ├── carbea5.c │ │ │ ├── carbea6.c │ │ │ ├── carbea7.c │ │ │ ├── carbea8.c │ │ │ └── carbea9.c │ │ └── weapons │ │ │ ├── bclaws.c │ │ │ ├── dclaws.c │ │ │ └── mace.c │ ├── common │ │ ├── aramanth │ │ │ ├── darkroom.c │ │ │ ├── inherit │ │ │ │ └── mountain.c │ │ │ ├── moonwell.c │ │ │ ├── mountain.h │ │ │ ├── mountain01.c │ │ │ ├── mountain02.c │ │ │ ├── mountain03.c │ │ │ ├── mountain04.c │ │ │ ├── mountain05.c │ │ │ ├── mountain06.c │ │ │ ├── mountain07.c │ │ │ ├── mountain08.c │ │ │ ├── mountain09.c │ │ │ ├── mountain10.c │ │ │ ├── mountain11.c │ │ │ ├── prison │ │ │ │ └── inherit │ │ │ │ │ └── outside.c │ │ │ ├── profile.c │ │ │ ├── room1.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room20.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room4.c │ │ │ ├── room5.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── room8.c │ │ │ ├── room9.c │ │ │ └── treasurevault.c │ │ ├── arkirk │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ │ ├── basicdock.c │ │ ├── basicroom.c │ │ ├── canther │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ │ ├── dock.c │ │ ├── eldebaro │ │ │ ├── _ekills.c │ │ │ ├── _sfollow.c │ │ │ ├── a_storage.c │ │ │ ├── area_stuff.h │ │ │ ├── bar.c │ │ │ ├── crazed_knight.c │ │ │ ├── dragon_words.h │ │ │ ├── eastern_oasis.c │ │ │ ├── eldebaro.c │ │ │ ├── eldebaro.h │ │ │ ├── eldebaro │ │ │ │ ├── _ekills.c │ │ │ │ ├── _sfollow.c │ │ │ │ ├── a_storage.c │ │ │ │ ├── area_notes.txt │ │ │ │ ├── area_stuff.h │ │ │ │ ├── armor_shop.c │ │ │ │ ├── bar.c │ │ │ │ ├── church.c │ │ │ │ ├── component_shop.c │ │ │ │ ├── crystal_shop.c │ │ │ │ ├── dragon_words.h │ │ │ │ ├── eastern_oasis.c │ │ │ │ ├── eldebaro.c │ │ │ │ ├── eldebaro.dock.c │ │ │ │ ├── eldebaro.h │ │ │ │ ├── eldebaro_monster.c │ │ │ │ ├── element │ │ │ │ │ ├── 1.c │ │ │ │ │ ├── 2.c │ │ │ │ │ ├── 3.c │ │ │ │ │ ├── 4.c │ │ │ │ │ ├── 5.c │ │ │ │ │ ├── element.h │ │ │ │ │ ├── inherit │ │ │ │ │ │ └── temp.c │ │ │ │ │ └── mon │ │ │ │ │ │ └── swan.c │ │ │ │ ├── general_store.c │ │ │ │ ├── gs_storage.c │ │ │ │ ├── guards.c │ │ │ │ ├── healer_shop.c │ │ │ │ ├── herb_shop.c │ │ │ │ ├── herb_storage.c │ │ │ │ ├── kill_tracker_d.c │ │ │ │ ├── leader_tent.c │ │ │ │ ├── manna_d.c │ │ │ │ ├── mon │ │ │ │ │ ├── armor_merchant.c │ │ │ │ │ ├── arsheeva_wyndar.c │ │ │ │ │ ├── asantra.c │ │ │ │ │ ├── barkeep.c │ │ │ │ │ ├── comp_merchant.c │ │ │ │ │ ├── crazed_knight.c │ │ │ │ │ ├── crazed_nomad.c │ │ │ │ │ ├── desert_hydra.c │ │ │ │ │ ├── desert_ogre.c │ │ │ │ │ ├── desert_ogre_shaman.c │ │ │ │ │ ├── desert_worm.c │ │ │ │ │ ├── desert_wyvern.c │ │ │ │ │ ├── dreadhorn.c │ │ │ │ │ ├── dyveryll_wyndar.c │ │ │ │ │ ├── ettin.c │ │ │ │ │ ├── general_merchant.c │ │ │ │ │ ├── healer_npc.c │ │ │ │ │ ├── herb_merchant.c │ │ │ │ │ ├── oasis_guard.c │ │ │ │ │ ├── portal_psion.c │ │ │ │ │ ├── psion_merchant.c │ │ │ │ │ ├── rogue.c │ │ │ │ │ ├── shadow.c │ │ │ │ │ ├── storm_elemental.c │ │ │ │ │ ├── storm_giant.c │ │ │ │ │ ├── twisted_figure.c │ │ │ │ │ └── weapon_merchant.c │ │ │ │ ├── new_eldebaro.c │ │ │ │ ├── newrooms │ │ │ │ │ ├── east_oasis1.c │ │ │ │ │ ├── east_oasis10.c │ │ │ │ │ ├── east_oasis11.c │ │ │ │ │ ├── east_oasis12.c │ │ │ │ │ ├── east_oasis13.c │ │ │ │ │ ├── east_oasis14.c │ │ │ │ │ ├── east_oasis15.c │ │ │ │ │ ├── east_oasis2.c │ │ │ │ │ ├── east_oasis3.c │ │ │ │ │ ├── east_oasis4.c │ │ │ │ │ ├── east_oasis5.c │ │ │ │ │ ├── east_oasis6.c │ │ │ │ │ ├── east_oasis7.c │ │ │ │ │ ├── east_oasis8.c │ │ │ │ │ ├── east_oasis9.c │ │ │ │ │ ├── room1.c │ │ │ │ │ ├── room10.c │ │ │ │ │ ├── room100.c │ │ │ │ │ ├── room101.c │ │ │ │ │ ├── room102.c │ │ │ │ │ ├── room103.c │ │ │ │ │ ├── room104.c │ │ │ │ │ ├── room105.c │ │ │ │ │ ├── room106.c │ │ │ │ │ ├── room107.c │ │ │ │ │ ├── room108.c │ │ │ │ │ ├── room109.c │ │ │ │ │ ├── room11.c │ │ │ │ │ ├── room110.c │ │ │ │ │ ├── room111.c │ │ │ │ │ ├── room112.c │ │ │ │ │ ├── room113.c │ │ │ │ │ ├── room114.c │ │ │ │ │ ├── room115.c │ │ │ │ │ ├── room116.c │ │ │ │ │ ├── room117.c │ │ │ │ │ ├── room118.c │ │ │ │ │ ├── room119.c │ │ │ │ │ ├── room12.c │ │ │ │ │ ├── room120.c │ │ │ │ │ ├── room121.c │ │ │ │ │ ├── room122.c │ │ │ │ │ ├── room123.c │ │ │ │ │ ├── room124.c │ │ │ │ │ ├── room125.c │ │ │ │ │ ├── room126.c │ │ │ │ │ ├── room127.c │ │ │ │ │ ├── room128.c │ │ │ │ │ ├── room129.c │ │ │ │ │ ├── room13.c │ │ │ │ │ ├── room130.c │ │ │ │ │ ├── room131.c │ │ │ │ │ ├── room132.c │ │ │ │ │ ├── room133.c │ │ │ │ │ ├── room134.c │ │ │ │ │ ├── room135.c │ │ │ │ │ ├── room136.c │ │ │ │ │ ├── room137.c │ │ │ │ │ ├── room138.c │ │ │ │ │ ├── room139.c │ │ │ │ │ ├── room14.c │ │ │ │ │ ├── room140.c │ │ │ │ │ ├── room141.c │ │ │ │ │ ├── room142.c │ │ │ │ │ ├── room143.c │ │ │ │ │ ├── room144.c │ │ │ │ │ ├── room145.c │ │ │ │ │ ├── room146.c │ │ │ │ │ ├── room147.c │ │ │ │ │ ├── room148.c │ │ │ │ │ ├── room149.c │ │ │ │ │ ├── room15.c │ │ │ │ │ ├── room150.c │ │ │ │ │ ├── room151.c │ │ │ │ │ ├── room152.c │ │ │ │ │ ├── room153.c │ │ │ │ │ ├── room154.c │ │ │ │ │ ├── room155.c │ │ │ │ │ ├── room156.c │ │ │ │ │ ├── room157.c │ │ │ │ │ ├── room158.c │ │ │ │ │ ├── room159.c │ │ │ │ │ ├── room16.c │ │ │ │ │ ├── room160.c │ │ │ │ │ ├── room161.c │ │ │ │ │ ├── room162.c │ │ │ │ │ ├── room163.c │ │ │ │ │ ├── room164.c │ │ │ │ │ ├── room165.c │ │ │ │ │ ├── room166.c │ │ │ │ │ ├── room167.c │ │ │ │ │ ├── room168.c │ │ │ │ │ ├── room169.c │ │ │ │ │ ├── room17.c │ │ │ │ │ ├── room170.c │ │ │ │ │ ├── room171.c │ │ │ │ │ ├── room172.c │ │ │ │ │ ├── room173.c │ │ │ │ │ ├── room174.c │ │ │ │ │ ├── room175.c │ │ │ │ │ ├── room176.c │ │ │ │ │ ├── room177.c │ │ │ │ │ ├── room178.c │ │ │ │ │ ├── room179.c │ │ │ │ │ ├── room18.c │ │ │ │ │ ├── room19.c │ │ │ │ │ ├── room2.c │ │ │ │ │ ├── room20.c │ │ │ │ │ ├── room21.c │ │ │ │ │ ├── room22.c │ │ │ │ │ ├── room23.c │ │ │ │ │ ├── room24.c │ │ │ │ │ ├── room25.c │ │ │ │ │ ├── room26.c │ │ │ │ │ ├── room27.c │ │ │ │ │ ├── room28.c │ │ │ │ │ ├── room29.c │ │ │ │ │ ├── room3.c │ │ │ │ │ ├── room30.c │ │ │ │ │ ├── room31.c │ │ │ │ │ ├── room32.c │ │ │ │ │ ├── room33.c │ │ │ │ │ ├── room34.c │ │ │ │ │ ├── room35.c │ │ │ │ │ ├── room36.c │ │ │ │ │ ├── room37.c │ │ │ │ │ ├── room38.c │ │ │ │ │ ├── room39.c │ │ │ │ │ ├── room4.c │ │ │ │ │ ├── room40.c │ │ │ │ │ ├── room41.c │ │ │ │ │ ├── room42.c │ │ │ │ │ ├── room43.c │ │ │ │ │ ├── room44.c │ │ │ │ │ ├── room45.c │ │ │ │ │ ├── room46.c │ │ │ │ │ ├── room47.c │ │ │ │ │ ├── room48.c │ │ │ │ │ ├── room49.c │ │ │ │ │ ├── room5.c │ │ │ │ │ ├── room50.c │ │ │ │ │ ├── room51.c │ │ │ │ │ ├── room52.c │ │ │ │ │ ├── room53.c │ │ │ │ │ ├── room54.c │ │ │ │ │ ├── room55.c │ │ │ │ │ ├── room56.c │ │ │ │ │ ├── room57.c │ │ │ │ │ ├── room58.c │ │ │ │ │ ├── room59.c │ │ │ │ │ ├── room6.c │ │ │ │ │ ├── room60.c │ │ │ │ │ ├── room61.c │ │ │ │ │ ├── room62.c │ │ │ │ │ ├── room63.c │ │ │ │ │ ├── room64.c │ │ │ │ │ ├── room65.c │ │ │ │ │ ├── room66.c │ │ │ │ │ ├── room67.c │ │ │ │ │ ├── room68.c │ │ │ │ │ ├── room69.c │ │ │ │ │ ├── room7.c │ │ │ │ │ ├── room70.c │ │ │ │ │ ├── room71.c │ │ │ │ │ ├── room72.c │ │ │ │ │ ├── room73.c │ │ │ │ │ ├── room74.c │ │ │ │ │ ├── room75.c │ │ │ │ │ ├── room76.c │ │ │ │ │ ├── room77.c │ │ │ │ │ ├── room78.c │ │ │ │ │ ├── room79.c │ │ │ │ │ ├── room8.c │ │ │ │ │ ├── room80.c │ │ │ │ │ ├── room81.c │ │ │ │ │ ├── room82.c │ │ │ │ │ ├── room83.c │ │ │ │ │ ├── room84.c │ │ │ │ │ ├── room85.c │ │ │ │ │ ├── room86.c │ │ │ │ │ ├── room87.c │ │ │ │ │ ├── room88.c │ │ │ │ │ ├── room89.c │ │ │ │ │ ├── room9.c │ │ │ │ │ ├── room90.c │ │ │ │ │ ├── room91.c │ │ │ │ │ ├── room92.c │ │ │ │ │ ├── room93.c │ │ │ │ │ ├── room94.c │ │ │ │ │ ├── room95.c │ │ │ │ │ ├── room96.c │ │ │ │ │ ├── room97.c │ │ │ │ │ ├── room98.c │ │ │ │ │ ├── room99.c │ │ │ │ │ ├── sand_dune1_1.c │ │ │ │ │ ├── sand_dune1_2.c │ │ │ │ │ ├── sand_dune1_3.c │ │ │ │ │ ├── sand_dune1_4.c │ │ │ │ │ ├── sand_dune1_5.c │ │ │ │ │ ├── sand_dune1_6.c │ │ │ │ │ ├── sand_dune1_7.c │ │ │ │ │ ├── sand_dune1_8.c │ │ │ │ │ ├── sand_dune1_9.c │ │ │ │ │ ├── sand_dune2_1.c │ │ │ │ │ ├── sand_dune2_2.c │ │ │ │ │ ├── sand_dune2_3.c │ │ │ │ │ ├── sand_dune2_4.c │ │ │ │ │ ├── sand_dune2_5.c │ │ │ │ │ ├── sand_dune2_6.c │ │ │ │ │ ├── sand_dune2_7.c │ │ │ │ │ ├── sand_dune2_8.c │ │ │ │ │ ├── sand_dune2_9.c │ │ │ │ │ ├── sand_dune3_1.c │ │ │ │ │ ├── sand_dune3_2.c │ │ │ │ │ ├── sand_dune3_3.c │ │ │ │ │ ├── sand_dune3_4.c │ │ │ │ │ ├── sand_dune3_5.c │ │ │ │ │ ├── sand_dune3_6.c │ │ │ │ │ ├── sand_dune3_7.c │ │ │ │ │ ├── sand_dune3_8.c │ │ │ │ │ ├── sand_dune3_9.c │ │ │ │ │ ├── sand_dune4_1.c │ │ │ │ │ ├── sand_dune4_2.c │ │ │ │ │ ├── sand_dune4_3.c │ │ │ │ │ ├── sand_dune4_4.c │ │ │ │ │ ├── sand_dune4_5.c │ │ │ │ │ ├── sand_dune4_6.c │ │ │ │ │ ├── sand_dune4_7.c │ │ │ │ │ ├── sand_dune4_8.c │ │ │ │ │ ├── sand_dune4_9.c │ │ │ │ │ ├── tomb1_1.c │ │ │ │ │ ├── tomb1_10.c │ │ │ │ │ ├── tomb1_11.c │ │ │ │ │ ├── tomb1_2.c │ │ │ │ │ ├── tomb1_3.c │ │ │ │ │ ├── tomb1_4.c │ │ │ │ │ ├── tomb1_5.c │ │ │ │ │ ├── tomb1_6.c │ │ │ │ │ ├── tomb1_7.c │ │ │ │ │ ├── tomb1_8.c │ │ │ │ │ ├── tomb1_9.c │ │ │ │ │ ├── tomb2_1.c │ │ │ │ │ ├── tomb2_10.c │ │ │ │ │ ├── tomb2_11.c │ │ │ │ │ ├── tomb2_12.c │ │ │ │ │ ├── tomb2_2.c │ │ │ │ │ ├── tomb2_3.c │ │ │ │ │ ├── tomb2_4.c │ │ │ │ │ ├── tomb2_5.c │ │ │ │ │ ├── tomb2_6.c │ │ │ │ │ ├── tomb2_7.c │ │ │ │ │ ├── tomb2_8.c │ │ │ │ │ ├── tomb2_9.c │ │ │ │ │ ├── tomb3_1.c │ │ │ │ │ ├── tomb3_10.c │ │ │ │ │ ├── tomb3_11.c │ │ │ │ │ ├── tomb3_12.c │ │ │ │ │ ├── tomb3_13.c │ │ │ │ │ ├── tomb3_14.c │ │ │ │ │ ├── tomb3_15.c │ │ │ │ │ ├── tomb3_2.c │ │ │ │ │ ├── tomb3_3.c │ │ │ │ │ ├── tomb3_4.c │ │ │ │ │ ├── tomb3_5.c │ │ │ │ │ ├── tomb3_6.c │ │ │ │ │ ├── tomb3_7.c │ │ │ │ │ ├── tomb3_8.c │ │ │ │ │ ├── tomb3_9.c │ │ │ │ │ ├── tomb4_1.c │ │ │ │ │ ├── tomb4_10.c │ │ │ │ │ ├── tomb4_11.c │ │ │ │ │ ├── tomb4_12.c │ │ │ │ │ ├── tomb4_13.c │ │ │ │ │ ├── tomb4_14.c │ │ │ │ │ ├── tomb4_15.c │ │ │ │ │ ├── tomb4_16.c │ │ │ │ │ ├── tomb4_17.c │ │ │ │ │ ├── tomb4_18.c │ │ │ │ │ ├── tomb4_19.c │ │ │ │ │ ├── tomb4_2.c │ │ │ │ │ ├── tomb4_20.c │ │ │ │ │ ├── tomb4_3.c │ │ │ │ │ ├── tomb4_4.c │ │ │ │ │ ├── tomb4_5.c │ │ │ │ │ ├── tomb4_6.c │ │ │ │ │ ├── tomb4_7.c │ │ │ │ │ ├── tomb4_8.c │ │ │ │ │ ├── tomb4_9.c │ │ │ │ │ ├── west_oasis1.c │ │ │ │ │ ├── west_oasis10.c │ │ │ │ │ ├── west_oasis11.c │ │ │ │ │ ├── west_oasis12.c │ │ │ │ │ ├── west_oasis13.c │ │ │ │ │ ├── west_oasis14.c │ │ │ │ │ ├── west_oasis15.c │ │ │ │ │ ├── west_oasis2.c │ │ │ │ │ ├── west_oasis3.c │ │ │ │ │ ├── west_oasis4.c │ │ │ │ │ ├── west_oasis5.c │ │ │ │ │ ├── west_oasis6.c │ │ │ │ │ ├── west_oasis7.c │ │ │ │ │ ├── west_oasis8.c │ │ │ │ │ └── west_oasis9.c │ │ │ │ ├── npc_creator.c │ │ │ │ ├── ob │ │ │ │ │ ├── arsheeva_runestone.c │ │ │ │ │ ├── arsheeva_spear.c │ │ │ │ │ ├── asantra_ice_block.c │ │ │ │ │ ├── augmented_tear.c │ │ │ │ │ ├── belt_of_summoning.c │ │ │ │ │ ├── bow_of_destruction.c │ │ │ │ │ ├── brutal_allocation.c │ │ │ │ │ ├── changeling_cover.c │ │ │ │ │ ├── changeling_object.c │ │ │ │ │ ├── charged_skewer.c │ │ │ │ │ ├── cloak_of_invisibility.c │ │ │ │ │ ├── coif_of_silence.c │ │ │ │ │ ├── dreadhorn.c │ │ │ │ │ ├── dreadhorn_guard.c │ │ │ │ │ ├── dreadhorn_wrap.c │ │ │ │ │ ├── ebon_reflector.c │ │ │ │ │ ├── electrified_sword.c │ │ │ │ │ ├── grievous_wound.c │ │ │ │ │ ├── heart_of_the_storm.c │ │ │ │ │ ├── ice_block.c │ │ │ │ │ ├── instructions.c │ │ │ │ │ ├── lance_of_thorns.c │ │ │ │ │ ├── manna.c │ │ │ │ │ ├── mind_guard.c │ │ │ │ │ ├── mind_pierce.c │ │ │ │ │ ├── orb.c │ │ │ │ │ ├── orb_of_magical_disruption.c │ │ │ │ │ ├── raw_dreadhorn.c │ │ │ │ │ ├── robes_of_power.c │ │ │ │ │ ├── rop.c │ │ │ │ │ ├── runestone.c │ │ │ │ │ ├── shroud_of_darkness.c │ │ │ │ │ ├── shroud_of_light.c │ │ │ │ │ ├── stormbringer_armor.c │ │ │ │ │ ├── symbol_observation.c │ │ │ │ │ ├── the_reaping.c │ │ │ │ │ ├── violent_smasher.c │ │ │ │ │ └── worm_stomach.c │ │ │ │ ├── old │ │ │ │ │ ├── inherits │ │ │ │ │ │ ├── eldabaro_beachroomei.c │ │ │ │ │ │ ├── eldabaro_beachroomnei.c │ │ │ │ │ │ ├── eldabaro_beachroomni.c │ │ │ │ │ │ ├── eldabaro_beachroomnwi.c │ │ │ │ │ │ ├── eldabaro_beachroomsei.c │ │ │ │ │ │ ├── eldabaro_beachroomsi.c │ │ │ │ │ │ ├── eldabaro_beachroomswi.c │ │ │ │ │ │ ├── eldabaro_beachroomwi.c │ │ │ │ │ │ └── eldebaro_in.h │ │ │ │ │ ├── profile.c │ │ │ │ │ ├── room1.c │ │ │ │ │ ├── room10.c │ │ │ │ │ ├── room11.c │ │ │ │ │ ├── room12.c │ │ │ │ │ ├── room13.c │ │ │ │ │ ├── room14.c │ │ │ │ │ ├── room15.c │ │ │ │ │ ├── room16.c │ │ │ │ │ ├── room17.c │ │ │ │ │ ├── room18.c │ │ │ │ │ ├── room19.c │ │ │ │ │ ├── room2.c │ │ │ │ │ ├── room20.c │ │ │ │ │ ├── room21.c │ │ │ │ │ ├── room22.c │ │ │ │ │ ├── room23.c │ │ │ │ │ ├── room24.c │ │ │ │ │ ├── room25.c │ │ │ │ │ ├── room26.c │ │ │ │ │ ├── room27.c │ │ │ │ │ ├── room28.c │ │ │ │ │ ├── room29.c │ │ │ │ │ ├── room3.c │ │ │ │ │ ├── room30.c │ │ │ │ │ ├── room31.c │ │ │ │ │ ├── room32.c │ │ │ │ │ ├── room33.c │ │ │ │ │ ├── room34.c │ │ │ │ │ ├── room35.c │ │ │ │ │ ├── room36.c │ │ │ │ │ ├── room37.c │ │ │ │ │ ├── room38.c │ │ │ │ │ ├── room4.c │ │ │ │ │ ├── room5.c │ │ │ │ │ ├── room6.c │ │ │ │ │ ├── room7.c │ │ │ │ │ ├── room8.c │ │ │ │ │ ├── room9.c │ │ │ │ │ └── rooms │ │ │ │ │ │ ├── el1-1.c │ │ │ │ │ │ ├── el1-10.c │ │ │ │ │ │ ├── el1-11.c │ │ │ │ │ │ ├── el1-12.c │ │ │ │ │ │ ├── el1-13.c │ │ │ │ │ │ ├── el1-14.c │ │ │ │ │ │ ├── el1-15.c │ │ │ │ │ │ ├── el1-2.c │ │ │ │ │ │ ├── el1-3.c │ │ │ │ │ │ ├── el1-4.c │ │ │ │ │ │ ├── el1-5.c │ │ │ │ │ │ ├── el1-6.c │ │ │ │ │ │ ├── el1-7.c │ │ │ │ │ │ ├── el1-8.c │ │ │ │ │ │ └── el1-9.c │ │ │ │ ├── planar_hunter.c │ │ │ │ ├── plot_reward_amulet.c │ │ │ │ ├── portal_room.c │ │ │ │ ├── profile.c │ │ │ │ ├── rooms │ │ │ │ │ ├── room1.c │ │ │ │ │ ├── room10.c │ │ │ │ │ ├── room11.c │ │ │ │ │ ├── room12.c │ │ │ │ │ ├── room13.c │ │ │ │ │ ├── room14.c │ │ │ │ │ ├── room15.c │ │ │ │ │ ├── room16.c │ │ │ │ │ ├── room17.c │ │ │ │ │ ├── room18.c │ │ │ │ │ ├── room19.c │ │ │ │ │ ├── room2.c │ │ │ │ │ ├── room20.c │ │ │ │ │ ├── room21.c │ │ │ │ │ ├── room22.c │ │ │ │ │ ├── room23.c │ │ │ │ │ ├── room24.c │ │ │ │ │ ├── room25.c │ │ │ │ │ ├── room26.c │ │ │ │ │ ├── room27.c │ │ │ │ │ ├── room28.c │ │ │ │ │ ├── room29.c │ │ │ │ │ ├── room3.c │ │ │ │ │ ├── room30.c │ │ │ │ │ ├── room31.c │ │ │ │ │ ├── room32.c │ │ │ │ │ ├── room33.c │ │ │ │ │ ├── room34.c │ │ │ │ │ ├── room35.c │ │ │ │ │ ├── room36.c │ │ │ │ │ ├── room37.c │ │ │ │ │ ├── room38.c │ │ │ │ │ ├── room4.c │ │ │ │ │ ├── room5.c │ │ │ │ │ ├── room6.c │ │ │ │ │ ├── room7.c │ │ │ │ │ ├── room8.c │ │ │ │ │ ├── room9.c │ │ │ │ │ ├── sand_dune1_1.c │ │ │ │ │ └── tomb1_1.c │ │ │ │ ├── rune_placer.c │ │ │ │ ├── sanddune.c │ │ │ │ ├── stables.c │ │ │ │ ├── tomb1.c │ │ │ │ ├── tomb2.c │ │ │ │ ├── tomb3.c │ │ │ │ ├── w_storage.c │ │ │ │ ├── weapon_shop.c │ │ │ │ ├── western_oasis.c │ │ │ │ └── wyvern.c │ │ │ ├── eldebaro_monster.c │ │ │ ├── element │ │ │ │ ├── 1.c │ │ │ │ ├── 2.c │ │ │ │ ├── 3.c │ │ │ │ ├── 4.c │ │ │ │ ├── 5.c │ │ │ │ ├── element.h │ │ │ │ ├── inherit │ │ │ │ │ └── temp.c │ │ │ │ └── mon │ │ │ │ │ └── swan.c │ │ │ ├── gs_storage.c │ │ │ ├── herb_storage.c │ │ │ ├── kill_tracker_d.c │ │ │ ├── manna_d.c │ │ │ ├── mon │ │ │ │ ├── armor_merchant.c │ │ │ │ ├── arsheeva_wyndar.c │ │ │ │ ├── asantra.c │ │ │ │ ├── barkeep.c │ │ │ │ ├── comp_merchant.c │ │ │ │ ├── crazed_knight.c │ │ │ │ ├── crazed_nomad.c │ │ │ │ ├── desert_hydra.c │ │ │ │ ├── desert_ogre.c │ │ │ │ ├── desert_ogre_shaman.c │ │ │ │ ├── desert_worm.c │ │ │ │ ├── desert_wyvern.c │ │ │ │ ├── dreadhorn.c │ │ │ │ ├── dyveryll_wyndar.c │ │ │ │ ├── ettin.c │ │ │ │ ├── general_merchant.c │ │ │ │ ├── healer_npc.c │ │ │ │ ├── herb_merchant.c │ │ │ │ ├── oasis_guard.c │ │ │ │ ├── portal_psion.c │ │ │ │ ├── psion_merchant.c │ │ │ │ ├── rogue.c │ │ │ │ ├── shadow.c │ │ │ │ ├── storm_elemental.c │ │ │ │ ├── storm_giant.c │ │ │ │ ├── twisted_figure.c │ │ │ │ └── weapon_merchant.c │ │ │ ├── new_eldebaro.c │ │ │ ├── newrooms │ │ │ │ ├── armor_shop.c │ │ │ │ ├── bar.c │ │ │ │ ├── church.c │ │ │ │ ├── component_shop.c │ │ │ │ ├── crystal_shop.c │ │ │ │ ├── east_oasis1.c │ │ │ │ ├── east_oasis10.c │ │ │ │ ├── east_oasis11.c │ │ │ │ ├── east_oasis12.c │ │ │ │ ├── east_oasis13.c │ │ │ │ ├── east_oasis14.c │ │ │ │ ├── east_oasis15.c │ │ │ │ ├── east_oasis2.c │ │ │ │ ├── east_oasis3.c │ │ │ │ ├── east_oasis4.c │ │ │ │ ├── east_oasis5.c │ │ │ │ ├── east_oasis6.c │ │ │ │ ├── east_oasis7.c │ │ │ │ ├── east_oasis8.c │ │ │ │ ├── east_oasis9.c │ │ │ │ ├── general_store.c │ │ │ │ ├── guards.c │ │ │ │ ├── healer_shop.c │ │ │ │ ├── herb_shop.c │ │ │ │ ├── leader_tent.c │ │ │ │ ├── portal_room.c │ │ │ │ ├── room1.c │ │ │ │ ├── room10.c │ │ │ │ ├── room100.c │ │ │ │ ├── room101.c │ │ │ │ ├── room102.c │ │ │ │ ├── room103.c │ │ │ │ ├── room104.c │ │ │ │ ├── room105.c │ │ │ │ ├── room106.c │ │ │ │ ├── room107.c │ │ │ │ ├── room108.c │ │ │ │ ├── room109.c │ │ │ │ ├── room11.c │ │ │ │ ├── room110.c │ │ │ │ ├── room111.c │ │ │ │ ├── room112.c │ │ │ │ ├── room113.c │ │ │ │ ├── room114.c │ │ │ │ ├── room115.c │ │ │ │ ├── room116.c │ │ │ │ ├── room117.c │ │ │ │ ├── room118.c │ │ │ │ ├── room119.c │ │ │ │ ├── room12.c │ │ │ │ ├── room120.c │ │ │ │ ├── room121.c │ │ │ │ ├── room122.c │ │ │ │ ├── room123.c │ │ │ │ ├── room124.c │ │ │ │ ├── room125.c │ │ │ │ ├── room126.c │ │ │ │ ├── room127.c │ │ │ │ ├── room128.c │ │ │ │ ├── room129.c │ │ │ │ ├── room13.c │ │ │ │ ├── room130.c │ │ │ │ ├── room131.c │ │ │ │ ├── room132.c │ │ │ │ ├── room133.c │ │ │ │ ├── room134.c │ │ │ │ ├── room135.c │ │ │ │ ├── room136.c │ │ │ │ ├── room137.c │ │ │ │ ├── room138.c │ │ │ │ ├── room139.c │ │ │ │ ├── room14.c │ │ │ │ ├── room140.c │ │ │ │ ├── room141.c │ │ │ │ ├── room142.c │ │ │ │ ├── room143.c │ │ │ │ ├── room144.c │ │ │ │ ├── room145.c │ │ │ │ ├── room146.c │ │ │ │ ├── room147.c │ │ │ │ ├── room148.c │ │ │ │ ├── room149.c │ │ │ │ ├── room15.c │ │ │ │ ├── room150.c │ │ │ │ ├── room151.c │ │ │ │ ├── room152.c │ │ │ │ ├── room153.c │ │ │ │ ├── room154.c │ │ │ │ ├── room155.c │ │ │ │ ├── room156.c │ │ │ │ ├── room157.c │ │ │ │ ├── room158.c │ │ │ │ ├── room159.c │ │ │ │ ├── room16.c │ │ │ │ ├── room160.c │ │ │ │ ├── room161.c │ │ │ │ ├── room162.c │ │ │ │ ├── room163.c │ │ │ │ ├── room164.c │ │ │ │ ├── room165.c │ │ │ │ ├── room166.c │ │ │ │ ├── room167.c │ │ │ │ ├── room168.c │ │ │ │ ├── room169.c │ │ │ │ ├── room17.c │ │ │ │ ├── room170.c │ │ │ │ ├── room171.c │ │ │ │ ├── room172.c │ │ │ │ ├── room173.c │ │ │ │ ├── room174.c │ │ │ │ ├── room175.c │ │ │ │ ├── room176.c │ │ │ │ ├── room177.c │ │ │ │ ├── room178.c │ │ │ │ ├── room179.c │ │ │ │ ├── room18.c │ │ │ │ ├── room19.c │ │ │ │ ├── room2.c │ │ │ │ ├── room20.c │ │ │ │ ├── room21.c │ │ │ │ ├── room22.c │ │ │ │ ├── room23.c │ │ │ │ ├── room24.c │ │ │ │ ├── room25.c │ │ │ │ ├── room26.c │ │ │ │ ├── room27.c │ │ │ │ ├── room28.c │ │ │ │ ├── room29.c │ │ │ │ ├── room3.c │ │ │ │ ├── room30.c │ │ │ │ ├── room31.c │ │ │ │ ├── room32.c │ │ │ │ ├── room33.c │ │ │ │ ├── room34.c │ │ │ │ ├── room35.c │ │ │ │ ├── room36.c │ │ │ │ ├── room37.c │ │ │ │ ├── room38.c │ │ │ │ ├── room39.c │ │ │ │ ├── room4.c │ │ │ │ ├── room40.c │ │ │ │ ├── room41.c │ │ │ │ ├── room42.c │ │ │ │ ├── room43.c │ │ │ │ ├── room44.c │ │ │ │ ├── room45.c │ │ │ │ ├── room46.c │ │ │ │ ├── room47.c │ │ │ │ ├── room48.c │ │ │ │ ├── room49.c │ │ │ │ ├── room5.c │ │ │ │ ├── room50.c │ │ │ │ ├── room51.c │ │ │ │ ├── room52.c │ │ │ │ ├── room53.c │ │ │ │ ├── room54.c │ │ │ │ ├── room55.c │ │ │ │ ├── room56.c │ │ │ │ ├── room57.c │ │ │ │ ├── room58.c │ │ │ │ ├── room59.c │ │ │ │ ├── room6.c │ │ │ │ ├── room60.c │ │ │ │ ├── room61.c │ │ │ │ ├── room62.c │ │ │ │ ├── room63.c │ │ │ │ ├── room64.c │ │ │ │ ├── room65.c │ │ │ │ ├── room66.c │ │ │ │ ├── room67.c │ │ │ │ ├── room68.c │ │ │ │ ├── room69.c │ │ │ │ ├── room7.c │ │ │ │ ├── room70.c │ │ │ │ ├── room71.c │ │ │ │ ├── room72.c │ │ │ │ ├── room73.c │ │ │ │ ├── room74.c │ │ │ │ ├── room75.c │ │ │ │ ├── room76.c │ │ │ │ ├── room77.c │ │ │ │ ├── room78.c │ │ │ │ ├── room79.c │ │ │ │ ├── room8.c │ │ │ │ ├── room80.c │ │ │ │ ├── room81.c │ │ │ │ ├── room82.c │ │ │ │ ├── room83.c │ │ │ │ ├── room84.c │ │ │ │ ├── room85.c │ │ │ │ ├── room86.c │ │ │ │ ├── room87.c │ │ │ │ ├── room88.c │ │ │ │ ├── room89.c │ │ │ │ ├── room9.c │ │ │ │ ├── room90.c │ │ │ │ ├── room91.c │ │ │ │ ├── room92.c │ │ │ │ ├── room93.c │ │ │ │ ├── room94.c │ │ │ │ ├── room95.c │ │ │ │ ├── room96.c │ │ │ │ ├── room97.c │ │ │ │ ├── room98.c │ │ │ │ ├── room99.c │ │ │ │ ├── roomroom47.c │ │ │ │ ├── sand_dune1_1.c │ │ │ │ ├── sand_dune1_2.c │ │ │ │ ├── sand_dune1_3.c │ │ │ │ ├── sand_dune1_4.c │ │ │ │ ├── sand_dune1_5.c │ │ │ │ ├── sand_dune1_6.c │ │ │ │ ├── sand_dune1_7.c │ │ │ │ ├── sand_dune1_8.c │ │ │ │ ├── sand_dune1_9.c │ │ │ │ ├── sand_dune2_1.c │ │ │ │ ├── sand_dune2_2.c │ │ │ │ ├── sand_dune2_3.c │ │ │ │ ├── sand_dune2_4.c │ │ │ │ ├── sand_dune2_5.c │ │ │ │ ├── sand_dune2_6.c │ │ │ │ ├── sand_dune2_7.c │ │ │ │ ├── sand_dune2_8.c │ │ │ │ ├── sand_dune2_9.c │ │ │ │ ├── sand_dune3_1.c │ │ │ │ ├── sand_dune3_2.c │ │ │ │ ├── sand_dune3_3.c │ │ │ │ ├── sand_dune3_4.c │ │ │ │ ├── sand_dune3_5.c │ │ │ │ ├── sand_dune3_6.c │ │ │ │ ├── sand_dune3_7.c │ │ │ │ ├── sand_dune3_8.c │ │ │ │ ├── sand_dune3_9.c │ │ │ │ ├── sand_dune4_1.c │ │ │ │ ├── sand_dune4_2.c │ │ │ │ ├── sand_dune4_3.c │ │ │ │ ├── sand_dune4_4.c │ │ │ │ ├── sand_dune4_5.c │ │ │ │ ├── sand_dune4_6.c │ │ │ │ ├── sand_dune4_7.c │ │ │ │ ├── sand_dune4_8.c │ │ │ │ ├── sand_dune4_9.c │ │ │ │ ├── stables.c │ │ │ │ ├── tomb1_1.c │ │ │ │ ├── tomb1_10.c │ │ │ │ ├── tomb1_11.c │ │ │ │ ├── tomb1_2.c │ │ │ │ ├── tomb1_3.c │ │ │ │ ├── tomb1_4.c │ │ │ │ ├── tomb1_5.c │ │ │ │ ├── tomb1_6.c │ │ │ │ ├── tomb1_7.c │ │ │ │ ├── tomb1_8.c │ │ │ │ ├── tomb1_9.c │ │ │ │ ├── tomb2_1.c │ │ │ │ ├── tomb2_10.c │ │ │ │ ├── tomb2_11.c │ │ │ │ ├── tomb2_12.c │ │ │ │ ├── tomb2_2.c │ │ │ │ ├── tomb2_3.c │ │ │ │ ├── tomb2_4.c │ │ │ │ ├── tomb2_5.c │ │ │ │ ├── tomb2_6.c │ │ │ │ ├── tomb2_7.c │ │ │ │ ├── tomb2_8.c │ │ │ │ ├── tomb2_9.c │ │ │ │ ├── tomb3_1.c │ │ │ │ ├── tomb3_10.c │ │ │ │ ├── tomb3_11.c │ │ │ │ ├── tomb3_12.c │ │ │ │ ├── tomb3_13.c │ │ │ │ ├── tomb3_14.c │ │ │ │ ├── tomb3_15.c │ │ │ │ ├── tomb3_2.c │ │ │ │ ├── tomb3_3.c │ │ │ │ ├── tomb3_4.c │ │ │ │ ├── tomb3_5.c │ │ │ │ ├── tomb3_6.c │ │ │ │ ├── tomb3_7.c │ │ │ │ ├── tomb3_8.c │ │ │ │ ├── tomb3_9.c │ │ │ │ ├── tomb4_1.c │ │ │ │ ├── tomb4_10.c │ │ │ │ ├── tomb4_11.c │ │ │ │ ├── tomb4_12.c │ │ │ │ ├── tomb4_13.c │ │ │ │ ├── tomb4_14.c │ │ │ │ ├── tomb4_15.c │ │ │ │ ├── tomb4_16.c │ │ │ │ ├── tomb4_17.c │ │ │ │ ├── tomb4_18.c │ │ │ │ ├── tomb4_19.c │ │ │ │ ├── tomb4_2.c │ │ │ │ ├── tomb4_20.c │ │ │ │ ├── tomb4_3.c │ │ │ │ ├── tomb4_4.c │ │ │ │ ├── tomb4_5.c │ │ │ │ ├── tomb4_6.c │ │ │ │ ├── tomb4_7.c │ │ │ │ ├── tomb4_8.c │ │ │ │ ├── tomb4_9.c │ │ │ │ ├── weapon_shop.c │ │ │ │ ├── west_oasis1.c │ │ │ │ ├── west_oasis10.c │ │ │ │ ├── west_oasis11.c │ │ │ │ ├── west_oasis12.c │ │ │ │ ├── west_oasis13.c │ │ │ │ ├── west_oasis14.c │ │ │ │ ├── west_oasis15.c │ │ │ │ ├── west_oasis2.c │ │ │ │ ├── west_oasis3.c │ │ │ │ ├── west_oasis4.c │ │ │ │ ├── west_oasis5.c │ │ │ │ ├── west_oasis6.c │ │ │ │ ├── west_oasis7.c │ │ │ │ ├── west_oasis8.c │ │ │ │ └── west_oasis9.c │ │ │ ├── npc_creator.c │ │ │ ├── ob │ │ │ │ ├── arsheeva_runestone.c │ │ │ │ ├── arsheeva_spear.c │ │ │ │ ├── asantra_ice_block.c │ │ │ │ ├── augmented_tear.c │ │ │ │ ├── belt_of_summoning.c │ │ │ │ ├── bow_of_destruction.c │ │ │ │ ├── brutal_allocation.c │ │ │ │ ├── changeling_cover.c │ │ │ │ ├── changeling_object.c │ │ │ │ ├── charged_skewer.c │ │ │ │ ├── cloak_of_invisibility.c │ │ │ │ ├── coif_of_silence.c │ │ │ │ ├── dreadhorn.c │ │ │ │ ├── dreadhorn_guard.c │ │ │ │ ├── dreadhorn_wrap.c │ │ │ │ ├── ebon_reflector.c │ │ │ │ ├── electrified_sword.c │ │ │ │ ├── grievous_wound.c │ │ │ │ ├── heart_of_the_storm.c │ │ │ │ ├── ice_block.c │ │ │ │ ├── instructions.c │ │ │ │ ├── lance_of_thorns.c │ │ │ │ ├── manna.c │ │ │ │ ├── mind_guard.c │ │ │ │ ├── mind_pierce.c │ │ │ │ ├── orb.c │ │ │ │ ├── orb_of_magical_disruption.c │ │ │ │ ├── raw_dreadhorn.c │ │ │ │ ├── robes_of_power.c │ │ │ │ ├── rop.c │ │ │ │ ├── runestone.c │ │ │ │ ├── shroud_of_darkness.c │ │ │ │ ├── shroud_of_light.c │ │ │ │ ├── stormbringer_armor.c │ │ │ │ ├── symbol_observation.c │ │ │ │ ├── the_reaping.c │ │ │ │ ├── violent_smasher.c │ │ │ │ └── worm_stomach.c │ │ │ ├── old │ │ │ │ ├── inherits │ │ │ │ │ ├── eldabaro_beachroomei.c │ │ │ │ │ ├── eldabaro_beachroomnei.c │ │ │ │ │ ├── eldabaro_beachroomni.c │ │ │ │ │ ├── eldabaro_beachroomnwi.c │ │ │ │ │ ├── eldabaro_beachroomsei.c │ │ │ │ │ ├── eldabaro_beachroomsi.c │ │ │ │ │ ├── eldabaro_beachroomswi.c │ │ │ │ │ ├── eldabaro_beachroomwi.c │ │ │ │ │ └── eldebaro_in.h │ │ │ │ ├── profile.c │ │ │ │ ├── room1.c │ │ │ │ ├── room10.c │ │ │ │ ├── room11.c │ │ │ │ ├── room12.c │ │ │ │ ├── room13.c │ │ │ │ ├── room14.c │ │ │ │ ├── room15.c │ │ │ │ ├── room16.c │ │ │ │ ├── room17.c │ │ │ │ ├── room18.c │ │ │ │ ├── room19.c │ │ │ │ ├── room2.c │ │ │ │ ├── room20.c │ │ │ │ ├── room21.c │ │ │ │ ├── room22.c │ │ │ │ ├── room23.c │ │ │ │ ├── room24.c │ │ │ │ ├── room25.c │ │ │ │ ├── room26.c │ │ │ │ ├── room27.c │ │ │ │ ├── room28.c │ │ │ │ ├── room29.c │ │ │ │ ├── room3.c │ │ │ │ ├── room30.c │ │ │ │ ├── room31.c │ │ │ │ ├── room32.c │ │ │ │ ├── room33.c │ │ │ │ ├── room34.c │ │ │ │ ├── room35.c │ │ │ │ ├── room36.c │ │ │ │ ├── room37.c │ │ │ │ ├── room38.c │ │ │ │ ├── room4.c │ │ │ │ ├── room5.c │ │ │ │ ├── room6.c │ │ │ │ ├── room7.c │ │ │ │ ├── room8.c │ │ │ │ ├── room9.c │ │ │ │ └── rooms │ │ │ │ │ ├── el1-1.c │ │ │ │ │ ├── el1-10.c │ │ │ │ │ ├── el1-11.c │ │ │ │ │ ├── el1-12.c │ │ │ │ │ ├── el1-13.c │ │ │ │ │ ├── el1-14.c │ │ │ │ │ ├── el1-15.c │ │ │ │ │ ├── el1-2.c │ │ │ │ │ ├── el1-3.c │ │ │ │ │ ├── el1-4.c │ │ │ │ │ ├── el1-5.c │ │ │ │ │ ├── el1-6.c │ │ │ │ │ ├── el1-7.c │ │ │ │ │ ├── el1-8.c │ │ │ │ │ └── el1-9.c │ │ │ ├── planar_hunter.c │ │ │ ├── plot_reward_amulet.c │ │ │ ├── profile.c │ │ │ ├── rooms │ │ │ │ ├── room1.c │ │ │ │ ├── room10.c │ │ │ │ ├── room11.c │ │ │ │ ├── room12.c │ │ │ │ ├── room13.c │ │ │ │ ├── room14.c │ │ │ │ ├── room15.c │ │ │ │ ├── room16.c │ │ │ │ ├── room17.c │ │ │ │ ├── room18.c │ │ │ │ ├── room19.c │ │ │ │ ├── room2.c │ │ │ │ ├── room20.c │ │ │ │ ├── room21.c │ │ │ │ ├── room22.c │ │ │ │ ├── room23.c │ │ │ │ ├── room24.c │ │ │ │ ├── room25.c │ │ │ │ ├── room26.c │ │ │ │ ├── room27.c │ │ │ │ ├── room28.c │ │ │ │ ├── room29.c │ │ │ │ ├── room3.c │ │ │ │ ├── room30.c │ │ │ │ ├── room31.c │ │ │ │ ├── room32.c │ │ │ │ ├── room33.c │ │ │ │ ├── room34.c │ │ │ │ ├── room35.c │ │ │ │ ├── room36.c │ │ │ │ ├── room37.c │ │ │ │ ├── room38.c │ │ │ │ ├── room4.c │ │ │ │ ├── room5.c │ │ │ │ ├── room6.c │ │ │ │ ├── room7.c │ │ │ │ ├── room8.c │ │ │ │ ├── room9.c │ │ │ │ ├── sand_dune1_1.c │ │ │ │ └── tomb1_1.c │ │ │ ├── rune_placer.c │ │ │ ├── sanddune.c │ │ │ ├── tomb1.c │ │ │ ├── tomb2.c │ │ │ ├── tomb3.c │ │ │ ├── w_storage.c │ │ │ ├── western_oasis.c │ │ │ └── wyvern.c │ │ ├── felcold │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ │ ├── ghammer.c │ │ ├── mon │ │ │ ├── backup │ │ │ │ ├── bwyvern.c │ │ │ │ └── uwarrior.c │ │ │ ├── bwyvern.c │ │ │ ├── clockwork.c │ │ │ ├── crab.c │ │ │ ├── cruisertetron.c │ │ │ ├── drowned.c │ │ │ ├── earwig.c │ │ │ ├── fallen.c │ │ │ ├── fiend.c │ │ │ ├── guardian.c │ │ │ ├── gwyvern.c │ │ │ ├── klauth.c │ │ │ ├── klauth_old.c │ │ │ ├── lostsoul.c │ │ │ ├── necrophidius.c │ │ │ ├── rwyvern.c │ │ │ ├── scorpion.c │ │ │ ├── seadragon.c │ │ │ ├── skeleton.c │ │ │ ├── spiritdancer.c │ │ │ ├── uwarrior.c │ │ │ └── uwarrior_sp.c │ │ ├── mortis │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ │ ├── obj │ │ │ ├── bag.c │ │ │ ├── blight_hammer.c │ │ │ ├── boots.c │ │ │ ├── bracers.c │ │ │ ├── chemise.c │ │ │ ├── claw.c │ │ │ ├── csabre.c │ │ │ ├── dragon_greaves.c │ │ │ ├── dragonaxe.c │ │ │ ├── e_chain.c │ │ │ ├── e_plate.c │ │ │ ├── enrapture.c │ │ │ ├── esword.c │ │ │ ├── firesash.c │ │ │ ├── flameguards.c │ │ │ ├── gdblade.c │ │ │ ├── godslayer.c │ │ │ ├── harbinger.c │ │ │ ├── healring.c │ │ │ ├── helm.c │ │ │ ├── helm2.c │ │ │ ├── iceplate.c │ │ │ ├── jdagger.c │ │ │ ├── monument.c │ │ │ ├── n_cover.c │ │ │ ├── naturecloak.c │ │ │ ├── new │ │ │ │ ├── bag.c │ │ │ │ ├── blight_hammer.c │ │ │ │ ├── boots.c │ │ │ │ ├── chemise.c │ │ │ │ ├── claw.c │ │ │ │ ├── csabre.c │ │ │ │ ├── deathfromafar.c │ │ │ │ ├── dragonaxe.c │ │ │ │ ├── e_chain.c │ │ │ │ ├── e_plate.c │ │ │ │ ├── enrapture.c │ │ │ │ ├── esword.c │ │ │ │ ├── firesash.c │ │ │ │ ├── flameguards.c │ │ │ │ ├── gdblade.c │ │ │ │ ├── godslayer.c │ │ │ │ ├── headband_o_mp.c │ │ │ │ ├── healring.c │ │ │ │ ├── helm.c │ │ │ │ ├── iceplate.c │ │ │ │ ├── jdagger.c │ │ │ │ ├── moonblade.c │ │ │ │ ├── mpistol.c │ │ │ │ ├── n_cover.c │ │ │ │ ├── naturecloak.c │ │ │ │ ├── o_gauntlets.c │ │ │ │ ├── p_mail.c │ │ │ │ ├── ragnarok.c │ │ │ │ ├── rangerboots.c │ │ │ │ ├── raven_sickle.c │ │ │ │ ├── rdblade.c │ │ │ │ ├── robes.c │ │ │ │ ├── rodIV.c │ │ │ │ ├── sarmor.c │ │ │ │ ├── scorp.c │ │ │ │ ├── seeker.c │ │ │ │ ├── shefflix.c │ │ │ │ ├── shield.c │ │ │ │ ├── shimmeringcape2.c │ │ │ │ ├── smon.c │ │ │ │ ├── snakebracers.c │ │ │ │ ├── starrobes.c │ │ │ │ ├── tasword.c │ │ │ │ ├── waveguards.c │ │ │ │ └── windguards.c │ │ │ ├── o_gauntlets.c │ │ │ ├── obelisk1.c │ │ │ ├── obelisk2.c │ │ │ ├── obelisk3.c │ │ │ ├── obelisk4.c │ │ │ ├── p_mail.c │ │ │ ├── ragnarok.c │ │ │ ├── ragnarok2.c │ │ │ ├── rangerboots.c │ │ │ ├── raven_sickle.c │ │ │ ├── rdblade.c │ │ │ ├── ring_of_eternal_youth.c │ │ │ ├── robes.c │ │ │ ├── rodIV.c │ │ │ ├── sarmor.c │ │ │ ├── scorp.c │ │ │ ├── seeker.c │ │ │ ├── shefflix.c │ │ │ ├── shield.c │ │ │ ├── shimmeringcape2.c │ │ │ ├── shimmeringcape2old.c │ │ │ ├── snakebracers.c │ │ │ ├── starrobes.c │ │ │ ├── tasword.c │ │ │ ├── waveguards.c │ │ │ └── windguards.c │ │ ├── profile.c │ │ ├── robes.c │ │ ├── savoc │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ │ └── vauxmain │ │ │ ├── basicdock.c │ │ │ ├── basicroom.c │ │ │ └── profile.c │ ├── coralsea │ │ ├── base │ │ │ ├── coralfun.c │ │ │ ├── coralmaze1.c │ │ │ ├── coralmaze2.c │ │ │ ├── coralsea1.c │ │ │ ├── coralsea2.c │ │ │ ├── coralsea3.c │ │ │ ├── coraltower.c │ │ │ ├── coraltunnel.c │ │ │ └── coralwreck.c │ │ ├── coralsea_cnotes.c │ │ ├── defs.h │ │ ├── grizonfail.c │ │ ├── grizonpass.c │ │ ├── mon │ │ │ ├── coral_aysu.c │ │ │ ├── coral_captain.c │ │ │ ├── coral_eel.c │ │ │ ├── coral_fish.c │ │ │ ├── coral_grizon.c │ │ │ ├── coral_pirate.c │ │ │ └── coral_shark.c │ │ ├── obj │ │ │ ├── belaypin.c │ │ │ ├── compass2.c │ │ │ ├── coral_ale.c │ │ │ ├── coral_badchest.c │ │ │ ├── coral_brasskey.c │ │ │ ├── coral_clam.c │ │ │ ├── coral_compass.c │ │ │ ├── coral_earring.c │ │ │ ├── coral_goodchest.c │ │ │ ├── coral_meat.c │ │ │ ├── coral_pearl.c │ │ │ ├── coral_prize.c │ │ │ ├── coral_shell.c │ │ │ ├── coralscape.c │ │ │ ├── kelpwrap.c │ │ │ ├── pikeofthedepths.c │ │ │ └── sharkskinwhip.c │ │ └── rooms │ │ │ ├── coral_b1.c │ │ │ ├── coral_b2.c │ │ │ ├── coral_b3.c │ │ │ ├── coral_b4.c │ │ │ ├── coral_b5.c │ │ │ ├── coral_b6.c │ │ │ ├── coral_b7.c │ │ │ ├── coral_b8.c │ │ │ ├── coral_b9.c │ │ │ ├── coral_m1.c │ │ │ ├── coral_m10.c │ │ │ ├── coral_m11.c │ │ │ ├── coral_m12.c │ │ │ ├── coral_m13.c │ │ │ ├── coral_m14.c │ │ │ ├── coral_m15.c │ │ │ ├── coral_m16.c │ │ │ ├── coral_m17.c │ │ │ ├── coral_m18.c │ │ │ ├── coral_m19.c │ │ │ ├── coral_m2.c │ │ │ ├── coral_m20.c │ │ │ ├── coral_m21.c │ │ │ ├── coral_m22.c │ │ │ ├── coral_m23.c │ │ │ ├── coral_m24.c │ │ │ ├── coral_m25.c │ │ │ ├── coral_m26.c │ │ │ ├── coral_m27.c │ │ │ ├── coral_m3.c │ │ │ ├── coral_m4.c │ │ │ ├── coral_m5.c │ │ │ ├── coral_m6.c │ │ │ ├── coral_m7.c │ │ │ ├── coral_m8.c │ │ │ ├── coral_m9.c │ │ │ ├── coral_s1.c │ │ │ ├── coral_s10.c │ │ │ ├── coral_s11.c │ │ │ ├── coral_s12.c │ │ │ ├── coral_s13.c │ │ │ ├── coral_s14.c │ │ │ ├── coral_s15.c │ │ │ ├── coral_s16.c │ │ │ ├── coral_s17.c │ │ │ ├── coral_s18.c │ │ │ ├── coral_s19.c │ │ │ ├── coral_s2.c │ │ │ ├── coral_s20.c │ │ │ ├── coral_s21.c │ │ │ ├── coral_s22.c │ │ │ ├── coral_s23.c │ │ │ ├── coral_s24.c │ │ │ ├── coral_s25.c │ │ │ ├── coral_s3.c │ │ │ ├── coral_s4.c │ │ │ ├── coral_s5.c │ │ │ ├── coral_s6.c │ │ │ ├── coral_s7.c │ │ │ ├── coral_s8.c │ │ │ ├── coral_s9.c │ │ │ ├── coral_t1.c │ │ │ ├── coral_t2.c │ │ │ ├── coral_t3.c │ │ │ ├── coral_t4.c │ │ │ ├── coral_w1.c │ │ │ ├── coral_w2.c │ │ │ ├── coral_w3.c │ │ │ ├── coral_w4.c │ │ │ ├── coral_w5.c │ │ │ ├── coral_w6.c │ │ │ └── coral_w7.c │ ├── dallyh │ │ ├── forest │ │ │ ├── mon │ │ │ │ ├── battle_briar.c │ │ │ │ ├── bearhound.c │ │ │ │ ├── cpatrol.c │ │ │ │ ├── hunter.c │ │ │ │ ├── night_twist.c │ │ │ │ ├── nymph.c │ │ │ │ ├── pixie.c │ │ │ │ ├── queen.c │ │ │ │ ├── raliat.c │ │ │ │ └── waitress.c │ │ │ ├── obj │ │ │ │ ├── dallyhinfoobj.c │ │ │ │ ├── fbow.c │ │ │ │ ├── greater_ring_of_detection.c │ │ │ │ ├── orb_of_light.c │ │ │ │ ├── panther.c │ │ │ │ ├── ptunic.c │ │ │ │ ├── rosebodice.c │ │ │ │ ├── rosevinewhip.c │ │ │ │ ├── sky_dagger.c │ │ │ │ └── spear.c │ │ │ └── rooms │ │ │ │ ├── bar.c │ │ │ │ ├── church.c │ │ │ │ ├── for1.c │ │ │ │ ├── for10.c │ │ │ │ ├── for11.c │ │ │ │ ├── for12.c │ │ │ │ ├── for13.c │ │ │ │ ├── for14.c │ │ │ │ ├── for15.c │ │ │ │ ├── for16.c │ │ │ │ ├── for17.c │ │ │ │ ├── for18.c │ │ │ │ ├── for19.c │ │ │ │ ├── for2.c │ │ │ │ ├── for20.c │ │ │ │ ├── for21.c │ │ │ │ ├── for22.c │ │ │ │ ├── for23.c │ │ │ │ ├── for24.c │ │ │ │ ├── for25.c │ │ │ │ ├── for26.c │ │ │ │ ├── for27.c │ │ │ │ ├── for28.c │ │ │ │ ├── for3.c │ │ │ │ ├── for4.c │ │ │ │ ├── for5.c │ │ │ │ ├── for6.c │ │ │ │ ├── for7.c │ │ │ │ ├── for8.c │ │ │ │ ├── for9.c │ │ │ │ ├── forest1.c │ │ │ │ ├── forest10.c │ │ │ │ ├── forest11.c │ │ │ │ ├── forest12.c │ │ │ │ ├── forest13.c │ │ │ │ ├── forest14.c │ │ │ │ ├── forest2.c │ │ │ │ ├── forest3.c │ │ │ │ ├── forest4.c │ │ │ │ ├── forest5.c │ │ │ │ ├── forest6.c │ │ │ │ ├── forest7.c │ │ │ │ ├── forest8.c │ │ │ │ ├── forest9.c │ │ │ │ ├── healer.c │ │ │ │ ├── rest.c │ │ │ │ ├── road1.c │ │ │ │ ├── road2.c │ │ │ │ ├── road3.c │ │ │ │ └── throne.c │ │ ├── fways.h │ │ ├── inherits │ │ │ ├── area_info.h │ │ │ ├── beach_inherit.c │ │ │ ├── dynamic_mob_update_d.c │ │ │ ├── foresti.c │ │ │ ├── marshi.c │ │ │ └── villagei.c │ │ ├── marsh │ │ │ ├── mon │ │ │ │ ├── demon_footman.c │ │ │ │ ├── greater_battle_briar.c │ │ │ │ ├── oozeling.c │ │ │ │ ├── sludge_elemental.c │ │ │ │ ├── spiked.c │ │ │ │ └── sterror.c │ │ │ ├── obj │ │ │ │ ├── assarmor.c │ │ │ │ ├── barbed.c │ │ │ │ ├── destroyer.c │ │ │ │ ├── dhelm.c │ │ │ │ ├── dplate.c │ │ │ │ ├── dshield.c │ │ │ │ ├── frobe.c │ │ │ │ ├── scythe.c │ │ │ │ ├── shadow_fan.c │ │ │ │ └── smallbarb.c │ │ │ ├── oozeling.c │ │ │ ├── rooms │ │ │ │ ├── marsh10.c │ │ │ │ ├── marsh11.c │ │ │ │ ├── marsh12.c │ │ │ │ ├── marsh13.c │ │ │ │ ├── marsh14.c │ │ │ │ ├── marsh15.c │ │ │ │ ├── marsh16.c │ │ │ │ ├── marsh17.c │ │ │ │ ├── marsh18.c │ │ │ │ ├── marsh19.c │ │ │ │ ├── marsh2.c │ │ │ │ ├── marsh20.c │ │ │ │ ├── marsh21.c │ │ │ │ ├── marsh22.c │ │ │ │ ├── marsh23.c │ │ │ │ ├── marsh24.c │ │ │ │ ├── marsh25.c │ │ │ │ ├── marsh26.c │ │ │ │ ├── marsh27.c │ │ │ │ ├── marsh28.c │ │ │ │ ├── marsh29.c │ │ │ │ ├── marsh3.c │ │ │ │ ├── marsh30.c │ │ │ │ ├── marsh31.c │ │ │ │ ├── marsh32.c │ │ │ │ ├── marsh33.c │ │ │ │ ├── marsh34.c │ │ │ │ ├── marsh35.c │ │ │ │ ├── marsh36.c │ │ │ │ ├── marsh37.c │ │ │ │ ├── marsh38.c │ │ │ │ ├── marsh39.c │ │ │ │ ├── marsh4.c │ │ │ │ ├── marsh5.c │ │ │ │ ├── marsh6.c │ │ │ │ ├── marsh7.c │ │ │ │ ├── marsh8.c │ │ │ │ ├── marsh9.c │ │ │ │ ├── marshenter.c │ │ │ │ └── ways.h │ │ │ └── shadow_fan.c │ │ └── ways.h │ ├── darkportal │ │ ├── darkportal.h │ │ ├── mon │ │ │ └── minotaur.c │ │ └── obj │ │ │ ├── fdagger.c │ │ │ └── fflail.c │ ├── dinosaur │ │ ├── cave │ │ │ └── mon │ │ │ │ ├── cloaker.c │ │ │ │ ├── sandling.c │ │ │ │ ├── servant.c │ │ │ │ └── sylph.c │ │ ├── dino_d.c │ │ ├── dinos.c │ │ ├── elasocean.c │ │ ├── empty_room.c │ │ ├── healer.c │ │ ├── jungle.c │ │ ├── lake │ │ │ ├── lake.c │ │ │ ├── lake.h │ │ │ ├── lake_d.c │ │ │ ├── laketop.c │ │ │ ├── mon │ │ │ │ ├── fish.c │ │ │ │ ├── gcrayfish.c │ │ │ │ ├── ixi.c │ │ │ │ ├── mermaid.c │ │ │ │ ├── merman.c │ │ │ │ ├── sirine.c │ │ │ │ ├── storm.c │ │ │ │ └── waternaga.c │ │ │ ├── rooms │ │ │ │ ├── cave1 │ │ │ │ │ ├── README │ │ │ │ │ ├── air1.c │ │ │ │ │ ├── cave102+0.c │ │ │ │ │ ├── cave103+0.c │ │ │ │ │ ├── cave103-1.c │ │ │ │ │ ├── cave104+0.c │ │ │ │ │ ├── cave113+0.c │ │ │ │ │ ├── cave12+0.c │ │ │ │ │ ├── cave13+1.c │ │ │ │ │ ├── cave14+0.c │ │ │ │ │ ├── cave22+0.c │ │ │ │ │ ├── cave23+0.c │ │ │ │ │ ├── cave23+1.c │ │ │ │ │ ├── cave23+2.c │ │ │ │ │ ├── cave23-1.c │ │ │ │ │ ├── cave24+0.c │ │ │ │ │ ├── cave24+1.c │ │ │ │ │ ├── cave25+0.c │ │ │ │ │ ├── cave31+0.c │ │ │ │ │ ├── cave32+0.c │ │ │ │ │ ├── cave32+1.c │ │ │ │ │ ├── cave32-1.c │ │ │ │ │ ├── cave33+0.c │ │ │ │ │ ├── cave33+1.c │ │ │ │ │ ├── cave33+2.c │ │ │ │ │ ├── cave33-1.c │ │ │ │ │ ├── cave33-2.c │ │ │ │ │ ├── cave33-3.c │ │ │ │ │ ├── cave34+0.c │ │ │ │ │ ├── cave34+1.c │ │ │ │ │ ├── cave34+2.c │ │ │ │ │ ├── cave34-1.c │ │ │ │ │ ├── cave35+0.c │ │ │ │ │ ├── cave35+1.c │ │ │ │ │ ├── cave35-1.c │ │ │ │ │ ├── cave36+0.c │ │ │ │ │ ├── cave41+0.c │ │ │ │ │ ├── cave41+1.c │ │ │ │ │ ├── cave41-1.c │ │ │ │ │ ├── cave43+0.c │ │ │ │ │ ├── cave43+1.c │ │ │ │ │ ├── cave43+2.c │ │ │ │ │ ├── cave43+3.c │ │ │ │ │ ├── cave43+4.c │ │ │ │ │ ├── cave43-1.c │ │ │ │ │ ├── cave43-2.c │ │ │ │ │ ├── cave43-3.c │ │ │ │ │ ├── cave43-4.c │ │ │ │ │ ├── cave44+0.c │ │ │ │ │ ├── cave44+1.c │ │ │ │ │ ├── cave44+2.c │ │ │ │ │ ├── cave44-1.c │ │ │ │ │ ├── cave44-2.c │ │ │ │ │ ├── cave44-3.c │ │ │ │ │ ├── cave44-4.c │ │ │ │ │ ├── cave45+0.c │ │ │ │ │ ├── cave45+1.c │ │ │ │ │ ├── cave45-1.c │ │ │ │ │ ├── cave45-2.c │ │ │ │ │ ├── cave46+0.c │ │ │ │ │ ├── cave46+1.c │ │ │ │ │ ├── cave46-1.c │ │ │ │ │ ├── cave53+0.c │ │ │ │ │ ├── cave53+1.c │ │ │ │ │ ├── cave53+2.c │ │ │ │ │ ├── cave53+3.c │ │ │ │ │ ├── cave53+4.c │ │ │ │ │ ├── cave53+5.c │ │ │ │ │ ├── cave53+6.c │ │ │ │ │ ├── cave53-1.c │ │ │ │ │ ├── cave53-2.c │ │ │ │ │ ├── cave53-3.c │ │ │ │ │ ├── cave53-4.c │ │ │ │ │ ├── cave53-5.c │ │ │ │ │ ├── cave53-6.c │ │ │ │ │ ├── cave54+0.c │ │ │ │ │ ├── cave54+1.c │ │ │ │ │ ├── cave54+2.c │ │ │ │ │ ├── cave54+3.c │ │ │ │ │ ├── cave54+4.c │ │ │ │ │ ├── cave54-1.c │ │ │ │ │ ├── cave54-2.c │ │ │ │ │ ├── cave54-3.c │ │ │ │ │ ├── cave54-4.c │ │ │ │ │ ├── cave55+0.c │ │ │ │ │ ├── cave55+1.c │ │ │ │ │ ├── cave55+2.c │ │ │ │ │ ├── cave55-1.c │ │ │ │ │ ├── cave55-2.c │ │ │ │ │ ├── cave55-3.c │ │ │ │ │ ├── cave56+0.c │ │ │ │ │ ├── cave56+1.c │ │ │ │ │ ├── cave56+2.c │ │ │ │ │ ├── cave56-1.c │ │ │ │ │ ├── cave56-2.c │ │ │ │ │ ├── cave61+0.c │ │ │ │ │ ├── cave61+1.c │ │ │ │ │ ├── cave61+2.c │ │ │ │ │ ├── cave61-1.c │ │ │ │ │ ├── cave61-2.c │ │ │ │ │ ├── cave62+0.c │ │ │ │ │ ├── cave62+1.c │ │ │ │ │ ├── cave62+2.c │ │ │ │ │ ├── cave62-1.c │ │ │ │ │ ├── cave62-2.c │ │ │ │ │ ├── cave62-3.c │ │ │ │ │ ├── cave63+0.c │ │ │ │ │ ├── cave63+1.c │ │ │ │ │ ├── cave63+2.c │ │ │ │ │ ├── cave63-1.c │ │ │ │ │ ├── cave63-2.c │ │ │ │ │ ├── cave63-3.c │ │ │ │ │ ├── cave64+0.c │ │ │ │ │ ├── cave64+1.c │ │ │ │ │ ├── cave64-1.c │ │ │ │ │ ├── cave65+0.c │ │ │ │ │ ├── cave65+1.c │ │ │ │ │ ├── cave65+2.c │ │ │ │ │ ├── cave65-1.c │ │ │ │ │ ├── cave65-2.c │ │ │ │ │ ├── cave71+0.c │ │ │ │ │ ├── cave71+1.c │ │ │ │ │ ├── cave71-1.c │ │ │ │ │ ├── cave72+0.c │ │ │ │ │ ├── cave72+1.c │ │ │ │ │ ├── cave72+2.c │ │ │ │ │ ├── cave72-1.c │ │ │ │ │ ├── cave73+0.c │ │ │ │ │ ├── cave73+1.c │ │ │ │ │ ├── cave73+2.c │ │ │ │ │ ├── cave73+3.c │ │ │ │ │ ├── cave73+4.c │ │ │ │ │ ├── cave73+5.c │ │ │ │ │ ├── cave73-1.c │ │ │ │ │ ├── cave73-2.c │ │ │ │ │ ├── cave74+0.c │ │ │ │ │ ├── cave74+1.c │ │ │ │ │ ├── cave74+2.c │ │ │ │ │ ├── cave74-1.c │ │ │ │ │ ├── cave74-2.c │ │ │ │ │ ├── cave75+0.c │ │ │ │ │ ├── cave75+1.c │ │ │ │ │ ├── cave75-1.c │ │ │ │ │ ├── cave75-2.c │ │ │ │ │ ├── cave76+0.c │ │ │ │ │ ├── cave76+1.c │ │ │ │ │ ├── cave76-1.c │ │ │ │ │ ├── cave81+0.c │ │ │ │ │ ├── cave82+0.c │ │ │ │ │ ├── cave82+1.c │ │ │ │ │ ├── cave82+2.c │ │ │ │ │ ├── cave82-1.c │ │ │ │ │ ├── cave83+0.c │ │ │ │ │ ├── cave83+1.c │ │ │ │ │ ├── cave83+2.c │ │ │ │ │ ├── cave83+3.c │ │ │ │ │ ├── cave83+4.c │ │ │ │ │ ├── cave83-1.c │ │ │ │ │ ├── cave83-2.c │ │ │ │ │ ├── cave84+0.c │ │ │ │ │ ├── cave84+1.c │ │ │ │ │ ├── cave84+2.c │ │ │ │ │ ├── cave84+3.c │ │ │ │ │ ├── cave84-1.c │ │ │ │ │ ├── cave84-2.c │ │ │ │ │ ├── cave85+0.c │ │ │ │ │ ├── cave85+1.c │ │ │ │ │ ├── cave85-1.c │ │ │ │ │ ├── cave86+0.c │ │ │ │ │ ├── cave92+0.c │ │ │ │ │ ├── cave93+0.c │ │ │ │ │ ├── cave93+1.c │ │ │ │ │ ├── cave93+2.c │ │ │ │ │ ├── cave93-1.c │ │ │ │ │ ├── cave93-2.c │ │ │ │ │ ├── cave94+0.c │ │ │ │ │ ├── cave94+1.c │ │ │ │ │ ├── cave94-1.c │ │ │ │ │ ├── cave95+0.c │ │ │ │ │ ├── uptun1.c │ │ │ │ │ ├── uptun2.c │ │ │ │ │ ├── uptun3.c │ │ │ │ │ ├── uptun4.c │ │ │ │ │ ├── uptun5.c │ │ │ │ │ ├── uptun6.c │ │ │ │ │ ├── uptun7.c │ │ │ │ │ ├── uptun8.c │ │ │ │ │ └── uptun9.c │ │ │ │ ├── deep1d.c │ │ │ │ ├── deep1u.c │ │ │ │ ├── deep2d.c │ │ │ │ ├── deep2u.c │ │ │ │ ├── deep3d.c │ │ │ │ ├── deep3u.c │ │ │ │ ├── deep4d.c │ │ │ │ ├── deep4u.c │ │ │ │ ├── deep5d.c │ │ │ │ ├── deep5u.c │ │ │ │ ├── deep6d.c │ │ │ │ ├── deep6u.c │ │ │ │ ├── deep7d.c │ │ │ │ ├── deep7u.c │ │ │ │ ├── deep8d.c │ │ │ │ ├── deep8u.c │ │ │ │ ├── deep9d.c │ │ │ │ ├── deep9u.c │ │ │ │ ├── shallow1.c │ │ │ │ ├── shallow10.c │ │ │ │ ├── shallow11.c │ │ │ │ ├── shallow12.c │ │ │ │ ├── shallow13.c │ │ │ │ ├── shallow14.c │ │ │ │ ├── shallow15.c │ │ │ │ ├── shallow16.c │ │ │ │ ├── shallow2.c │ │ │ │ ├── shallow3.c │ │ │ │ ├── shallow4.c │ │ │ │ ├── shallow5.c │ │ │ │ ├── shallow6.c │ │ │ │ ├── shallow7.c │ │ │ │ ├── shallow8.c │ │ │ │ ├── shallow9.c │ │ │ │ └── tunnel1 │ │ │ │ │ ├── tun.c │ │ │ │ │ ├── tun1.c │ │ │ │ │ ├── tun10.c │ │ │ │ │ ├── tun100.c │ │ │ │ │ ├── tun101.c │ │ │ │ │ ├── tun102.c │ │ │ │ │ ├── tun103.c │ │ │ │ │ ├── tun104.c │ │ │ │ │ ├── tun105.c │ │ │ │ │ ├── tun106.c │ │ │ │ │ ├── tun107.c │ │ │ │ │ ├── tun108.c │ │ │ │ │ ├── tun109.c │ │ │ │ │ ├── tun11.c │ │ │ │ │ ├── tun110.c │ │ │ │ │ ├── tun111.c │ │ │ │ │ ├── tun112.c │ │ │ │ │ ├── tun113.c │ │ │ │ │ ├── tun114.c │ │ │ │ │ ├── tun115.c │ │ │ │ │ ├── tun116.c │ │ │ │ │ ├── tun117.c │ │ │ │ │ ├── tun118.c │ │ │ │ │ ├── tun119.c │ │ │ │ │ ├── tun12.c │ │ │ │ │ ├── tun120.c │ │ │ │ │ ├── tun121.c │ │ │ │ │ ├── tun122.c │ │ │ │ │ ├── tun123.c │ │ │ │ │ ├── tun124.c │ │ │ │ │ ├── tun125.c │ │ │ │ │ ├── tun126.c │ │ │ │ │ ├── tun127.c │ │ │ │ │ ├── tun128.c │ │ │ │ │ ├── tun129.c │ │ │ │ │ ├── tun13.c │ │ │ │ │ ├── tun130.c │ │ │ │ │ ├── tun131.c │ │ │ │ │ ├── tun132.c │ │ │ │ │ ├── tun133.c │ │ │ │ │ ├── tun134.c │ │ │ │ │ ├── tun135.c │ │ │ │ │ ├── tun136.c │ │ │ │ │ ├── tun137.c │ │ │ │ │ ├── tun138.c │ │ │ │ │ ├── tun139.c │ │ │ │ │ ├── tun14.c │ │ │ │ │ ├── tun140.c │ │ │ │ │ ├── tun141.c │ │ │ │ │ ├── tun142.c │ │ │ │ │ ├── tun143.c │ │ │ │ │ ├── tun144.c │ │ │ │ │ ├── tun145.c │ │ │ │ │ ├── tun146.c │ │ │ │ │ ├── tun147.c │ │ │ │ │ ├── tun148.c │ │ │ │ │ ├── tun149.c │ │ │ │ │ ├── tun15.c │ │ │ │ │ ├── tun150.c │ │ │ │ │ ├── tun16.c │ │ │ │ │ ├── tun17.c │ │ │ │ │ ├── tun18.c │ │ │ │ │ ├── tun19.c │ │ │ │ │ ├── tun2.c │ │ │ │ │ ├── tun20.c │ │ │ │ │ ├── tun21.c │ │ │ │ │ ├── tun22.c │ │ │ │ │ ├── tun23.c │ │ │ │ │ ├── tun24.c │ │ │ │ │ ├── tun25.c │ │ │ │ │ ├── tun26.c │ │ │ │ │ ├── tun27.c │ │ │ │ │ ├── tun28.c │ │ │ │ │ ├── tun29.c │ │ │ │ │ ├── tun3.c │ │ │ │ │ ├── tun30.c │ │ │ │ │ ├── tun31.c │ │ │ │ │ ├── tun32.c │ │ │ │ │ ├── tun33.c │ │ │ │ │ ├── tun34.c │ │ │ │ │ ├── tun35.c │ │ │ │ │ ├── tun36.c │ │ │ │ │ ├── tun37.c │ │ │ │ │ ├── tun38.c │ │ │ │ │ ├── tun39.c │ │ │ │ │ ├── tun4.c │ │ │ │ │ ├── tun40.c │ │ │ │ │ ├── tun41.c │ │ │ │ │ ├── tun42.c │ │ │ │ │ ├── tun43.c │ │ │ │ │ ├── tun44.c │ │ │ │ │ ├── tun45.c │ │ │ │ │ ├── tun46.c │ │ │ │ │ ├── tun47.c │ │ │ │ │ ├── tun48.c │ │ │ │ │ ├── tun49.c │ │ │ │ │ ├── tun5.c │ │ │ │ │ ├── tun50.c │ │ │ │ │ ├── tun51.c │ │ │ │ │ ├── tun52.c │ │ │ │ │ ├── tun53.c │ │ │ │ │ ├── tun54.c │ │ │ │ │ ├── tun55.c │ │ │ │ │ ├── tun56.c │ │ │ │ │ ├── tun57.c │ │ │ │ │ ├── tun58.c │ │ │ │ │ ├── tun59.c │ │ │ │ │ ├── tun6.c │ │ │ │ │ ├── tun60.c │ │ │ │ │ ├── tun61.c │ │ │ │ │ ├── tun62.c │ │ │ │ │ ├── tun63.c │ │ │ │ │ ├── tun64.c │ │ │ │ │ ├── tun65.c │ │ │ │ │ ├── tun66.c │ │ │ │ │ ├── tun67.c │ │ │ │ │ ├── tun68.c │ │ │ │ │ ├── tun69.c │ │ │ │ │ ├── tun7.c │ │ │ │ │ ├── tun70.c │ │ │ │ │ ├── tun71.c │ │ │ │ │ ├── tun72.c │ │ │ │ │ ├── tun73.c │ │ │ │ │ ├── tun74.c │ │ │ │ │ ├── tun75.c │ │ │ │ │ ├── tun76.c │ │ │ │ │ ├── tun77.c │ │ │ │ │ ├── tun78.c │ │ │ │ │ ├── tun79.c │ │ │ │ │ ├── tun8.c │ │ │ │ │ ├── tun80.c │ │ │ │ │ ├── tun81.c │ │ │ │ │ ├── tun82.c │ │ │ │ │ ├── tun83.c │ │ │ │ │ ├── tun84.c │ │ │ │ │ ├── tun85.c │ │ │ │ │ ├── tun86.c │ │ │ │ │ ├── tun87.c │ │ │ │ │ ├── tun88.c │ │ │ │ │ ├── tun89.c │ │ │ │ │ ├── tun9.c │ │ │ │ │ ├── tun90.c │ │ │ │ │ ├── tun91.c │ │ │ │ │ ├── tun92.c │ │ │ │ │ ├── tun93.c │ │ │ │ │ ├── tun94.c │ │ │ │ │ ├── tun95.c │ │ │ │ │ ├── tun96.c │ │ │ │ │ ├── tun97.c │ │ │ │ │ ├── tun98.c │ │ │ │ │ └── tun99.c │ │ │ └── tunnels.c │ │ ├── lakefront.c │ │ ├── mon │ │ │ ├── anky.c │ │ │ ├── bmong.c │ │ │ ├── deino.c │ │ │ ├── diplo.c │ │ │ ├── elas.c │ │ │ ├── kalarg.c │ │ │ ├── lambeo.c │ │ │ ├── mong.c │ │ │ ├── mong2.c │ │ │ ├── party_d.c │ │ │ ├── pmnt.c │ │ │ ├── ptera.c │ │ │ ├── stego.c │ │ │ ├── tent_guard.c │ │ │ ├── tric.c │ │ │ └── tyrano.c │ │ ├── obj │ │ │ ├── align_amulet.c │ │ │ ├── anticurse_ring.c │ │ │ ├── diablade.c │ │ │ ├── elemplate.c │ │ │ ├── float_belt.c │ │ │ ├── frostfire.c │ │ │ ├── gclub.c │ │ │ ├── genstone.c │ │ │ ├── horn.c │ │ │ ├── human_club.c │ │ │ ├── ishield.c │ │ │ ├── ispear.c │ │ │ ├── lg_armor.c │ │ │ ├── noscry_amulet.c │ │ │ ├── pearl_amulet.c │ │ │ ├── ring_regen.c │ │ │ ├── scalehelm.c │ │ │ ├── scry_pearl.c │ │ │ ├── sling.c │ │ │ ├── stone_black.c │ │ │ ├── stone_red.c │ │ │ ├── stone_white.c │ │ │ ├── stone_yellow.c │ │ │ ├── stonerobe.c │ │ │ ├── tboots.c │ │ │ ├── tent.c │ │ │ ├── tooth.c │ │ │ ├── trident.c │ │ │ └── wdagger.c │ │ ├── ocean.c │ │ ├── rooms │ │ │ ├── cliff1.c │ │ │ ├── cliff10.c │ │ │ ├── cliff11.c │ │ │ ├── cliff12.c │ │ │ ├── cliff13.c │ │ │ ├── cliff14.c │ │ │ ├── cliff15.c │ │ │ ├── cliff16.c │ │ │ ├── cliff17.c │ │ │ ├── cliff18.c │ │ │ ├── cliff19.c │ │ │ ├── cliff2.c │ │ │ ├── cliff3.c │ │ │ ├── cliff4.c │ │ │ ├── cliff5.c │ │ │ ├── cliff6.c │ │ │ ├── cliff7.c │ │ │ ├── cliff8.c │ │ │ ├── cliff9.c │ │ │ ├── dock.c │ │ │ ├── jung1.c │ │ │ ├── jung10.c │ │ │ ├── jung11.c │ │ │ ├── jung12.c │ │ │ ├── jung13.c │ │ │ ├── jung14.c │ │ │ ├── jung15.c │ │ │ ├── jung16.c │ │ │ ├── jung17.c │ │ │ ├── jung18.c │ │ │ ├── jung19.c │ │ │ ├── jung2.c │ │ │ ├── jung20.c │ │ │ ├── jung21.c │ │ │ ├── jung22.c │ │ │ ├── jung23.c │ │ │ ├── jung24.c │ │ │ ├── jung25.c │ │ │ ├── jung26.c │ │ │ ├── jung27.c │ │ │ ├── jung28.c │ │ │ ├── jung29.c │ │ │ ├── jung3.c │ │ │ ├── jung30.c │ │ │ ├── jung31.c │ │ │ ├── jung32.c │ │ │ ├── jung33.c │ │ │ ├── jung34.c │ │ │ ├── jung35.c │ │ │ ├── jung36.c │ │ │ ├── jung37.c │ │ │ ├── jung38.c │ │ │ ├── jung39.c │ │ │ ├── jung4.c │ │ │ ├── jung40.c │ │ │ ├── jung41.c │ │ │ ├── jung42.c │ │ │ ├── jung43.c │ │ │ ├── jung44.c │ │ │ ├── jung45.c │ │ │ ├── jung46.c │ │ │ ├── jung47.c │ │ │ ├── jung48.c │ │ │ ├── jung49.c │ │ │ ├── jung5.c │ │ │ ├── jung50.c │ │ │ ├── jung51.c │ │ │ ├── jung52.c │ │ │ ├── jung53.c │ │ │ ├── jung54.c │ │ │ ├── jung55.c │ │ │ ├── jung56.c │ │ │ ├── jung57.c │ │ │ ├── jung58.c │ │ │ ├── jung59.c │ │ │ ├── jung6.c │ │ │ ├── jung60.c │ │ │ ├── jung61.c │ │ │ ├── jung62.c │ │ │ ├── jung63.c │ │ │ ├── jung64.c │ │ │ ├── jung65.c │ │ │ ├── jung66.c │ │ │ ├── jung67.c │ │ │ ├── jung68.c │ │ │ ├── jung69.c │ │ │ ├── jung7.c │ │ │ ├── jung70.c │ │ │ ├── jung71.c │ │ │ ├── jung72.c │ │ │ ├── jung73.c │ │ │ ├── jung74.c │ │ │ ├── jung75.c │ │ │ ├── jung76.c │ │ │ ├── jung77.c │ │ │ ├── jung78.c │ │ │ ├── jung79.c │ │ │ ├── jung8.c │ │ │ ├── jung80.c │ │ │ ├── jung81.c │ │ │ ├── jung82.c │ │ │ ├── jung83.c │ │ │ ├── jung84.c │ │ │ ├── jung85.c │ │ │ ├── jung86.c │ │ │ ├── jung87.c │ │ │ ├── jung88.c │ │ │ ├── jung89.c │ │ │ ├── jung9.c │ │ │ ├── jung90.c │ │ │ ├── jung91.c │ │ │ ├── jung92.c │ │ │ ├── jung93.c │ │ │ ├── jung94.c │ │ │ ├── jung95.c │ │ │ ├── jung96.c │ │ │ ├── jung97.c │ │ │ ├── lake1.c │ │ │ ├── lake10.c │ │ │ ├── lake11.c │ │ │ ├── lake12.c │ │ │ ├── lake13.c │ │ │ ├── lake14.c │ │ │ ├── lake15.c │ │ │ ├── lake16.c │ │ │ ├── lake17.c │ │ │ ├── lake2.c │ │ │ ├── lake3.c │ │ │ ├── lake4.c │ │ │ ├── lake5.c │ │ │ ├── lake6.c │ │ │ ├── lake7.c │ │ │ ├── lake8.c │ │ │ ├── lake9.c │ │ │ ├── lakefront.c │ │ │ ├── ocean1.c │ │ │ ├── ocean10.c │ │ │ ├── ocean11.c │ │ │ ├── ocean12.c │ │ │ ├── ocean13.c │ │ │ ├── ocean14.c │ │ │ ├── ocean15.c │ │ │ ├── ocean16.c │ │ │ ├── ocean17.c │ │ │ ├── ocean18.c │ │ │ ├── ocean19.c │ │ │ ├── ocean2.c │ │ │ ├── ocean20.c │ │ │ ├── ocean21.c │ │ │ ├── ocean22.c │ │ │ ├── ocean23.c │ │ │ ├── ocean24.c │ │ │ ├── ocean25.c │ │ │ ├── ocean26.c │ │ │ ├── ocean27.c │ │ │ ├── ocean28.c │ │ │ ├── ocean29.c │ │ │ ├── ocean3.c │ │ │ ├── ocean30.c │ │ │ ├── ocean31.c │ │ │ ├── ocean32.c │ │ │ ├── ocean33.c │ │ │ ├── ocean34.c │ │ │ ├── ocean4.c │ │ │ ├── ocean5.c │ │ │ ├── ocean6.c │ │ │ ├── ocean7.c │ │ │ ├── ocean8.c │ │ │ ├── ocean9.c │ │ │ ├── stable.c │ │ │ └── testlongfile │ │ ├── short.h │ │ ├── tower │ │ │ └── entergate.c │ │ └── underwater.c │ ├── dreams │ │ ├── defs.h │ │ ├── dream_sword.c │ │ ├── inherits │ │ │ ├── dream_inherit.c │ │ │ ├── gem_inherit.c │ │ │ ├── island_inherit.c │ │ │ ├── maze.c │ │ │ └── void.c │ │ ├── mon │ │ ├── mons │ │ │ ├── _drainstr.c │ │ │ ├── abishai.c │ │ │ ├── adilon.c │ │ │ ├── aislinn.c │ │ │ ├── comadon.c │ │ │ ├── efreeti.c │ │ │ ├── githyanki.c │ │ │ ├── invisemoter.c │ │ │ ├── invisexit.c │ │ │ ├── nightmare.c │ │ │ ├── nightmare_shade.c │ │ │ ├── prisoner.c │ │ │ ├── sbeast.c │ │ │ ├── shadearcher.c │ │ │ ├── shadow.c │ │ │ ├── smastiff.c │ │ │ ├── test_dragon.c │ │ │ └── unicorn.c │ │ ├── moonlight_robe.c │ │ ├── nightmare_robe.c │ │ ├── obj │ │ │ ├── bcryst.c │ │ │ ├── crystallyre.c │ │ │ ├── darkcassock.c │ │ │ ├── dhelm.c │ │ │ ├── dream_bow.c │ │ │ ├── dream_mace.c │ │ │ ├── dream_staff.c │ │ │ ├── dream_sword.c │ │ │ ├── dreambow-dot.c │ │ │ ├── gcryst.c │ │ │ ├── glaive.c │ │ │ ├── halfplate.c │ │ │ ├── hornlance.c │ │ │ ├── lyrecase.c │ │ │ ├── maxe.c │ │ │ ├── mithrilarrows.c │ │ │ ├── mithrilbow.c │ │ │ ├── moonlight_robe.c │ │ │ ├── nightlance.c │ │ │ ├── nightmare_robe.c │ │ │ ├── page1 │ │ │ ├── page2 │ │ │ ├── page3 │ │ │ ├── page4 │ │ │ ├── pris_wall.c │ │ │ ├── prism_bracers.c │ │ │ ├── qspear.c │ │ │ ├── rainbowcassock.c │ │ │ ├── rcryst.c │ │ │ ├── redtrident.c │ │ │ ├── sign.c │ │ │ ├── starrobe.c │ │ │ ├── sunlight_robe.c │ │ │ ├── tigersword.c │ │ │ ├── twhip.c │ │ │ ├── ycryst.c │ │ │ ├── yewarrows.c │ │ │ └── yewbow.c │ │ ├── readme │ │ ├── rooms │ │ │ ├── dream.c │ │ │ ├── fire.c │ │ │ ├── forest1.c │ │ │ ├── forest2.c │ │ │ ├── gem1.c │ │ │ ├── gem10.c │ │ │ ├── gem11.c │ │ │ ├── gem12.c │ │ │ ├── gem13.c │ │ │ ├── gem2.c │ │ │ ├── gem3.c │ │ │ ├── gem4.c │ │ │ ├── gem5.c │ │ │ ├── gem6.c │ │ │ ├── gem7.c │ │ │ ├── gem8.c │ │ │ ├── gem9.c │ │ │ ├── good1.c │ │ │ ├── good2.c │ │ │ ├── holding.c │ │ │ ├── hut.c │ │ │ ├── island1.c │ │ │ ├── island2.c │ │ │ ├── island3.c │ │ │ ├── island4.c │ │ │ ├── island5.c │ │ │ ├── maze1.c │ │ │ ├── maze2.c │ │ │ ├── maze3.c │ │ │ ├── maze4.c │ │ │ ├── maze5.c │ │ │ ├── maze6.c │ │ │ ├── maze7.c │ │ │ ├── pedestal.c │ │ │ ├── void1.c │ │ │ ├── void10.c │ │ │ ├── void11.c │ │ │ ├── void12.c │ │ │ ├── void13.c │ │ │ ├── void14.c │ │ │ ├── void15.c │ │ │ ├── void16.c │ │ │ ├── void17.c │ │ │ ├── void18.c │ │ │ ├── void19.c │ │ │ ├── void2.c │ │ │ ├── void20.c │ │ │ ├── void21.c │ │ │ ├── void22.c │ │ │ ├── void23.c │ │ │ ├── void24.c │ │ │ ├── void25.c │ │ │ ├── void26.c │ │ │ ├── void27.c │ │ │ ├── void28.c │ │ │ ├── void29.c │ │ │ ├── void3.c │ │ │ ├── void30.c │ │ │ ├── void31.c │ │ │ ├── void32.c │ │ │ ├── void33.c │ │ │ ├── void34.c │ │ │ ├── void35.c │ │ │ ├── void36.c │ │ │ ├── void4.c │ │ │ ├── void5.c │ │ │ ├── void6.c │ │ │ ├── void7.c │ │ │ ├── void8.c │ │ │ └── void9.c │ │ ├── sunlight_robe.c │ │ └── test_dragon.c │ ├── elf │ │ ├── MAP2.txt │ │ ├── arch.c │ │ ├── arch0.c │ │ ├── arch1.c │ │ ├── arch2.c │ │ ├── arch3.c │ │ ├── arch4.c │ │ ├── arch5.c │ │ ├── arch6.c │ │ ├── cell.c │ │ ├── church.c │ │ ├── cliff1.c │ │ ├── cliff2.c │ │ ├── cliff3.c │ │ ├── cliff4.c │ │ ├── cliff5.c │ │ ├── cliff6.c │ │ ├── cliff7.c │ │ ├── cliff8.c │ │ ├── comps.c │ │ ├── corridor.c │ │ ├── death.c │ │ ├── elf.h │ │ ├── forge.c │ │ ├── garden.c │ │ ├── gate.c │ │ ├── gate1.c │ │ ├── grandhall.c │ │ ├── grove1.c │ │ ├── grove2.c │ │ ├── grove3.c │ │ ├── grove4.c │ │ ├── grove5.c │ │ ├── grove6.c │ │ ├── grove7.c │ │ ├── grove8.c │ │ ├── grove9.c │ │ ├── guard1.c │ │ ├── hall1.c │ │ ├── hall2.c │ │ ├── hall3.c │ │ ├── hall4.c │ │ ├── hall5.c │ │ ├── hall6.c │ │ ├── hall7.c │ │ ├── hall8.c │ │ ├── hgarden.c │ │ ├── ice │ │ │ ├── elf.h │ │ │ ├── ice1.c │ │ │ ├── ice10.c │ │ │ ├── ice11.c │ │ │ ├── ice12.c │ │ │ ├── ice13.c │ │ │ ├── ice14.c │ │ │ ├── ice15.c │ │ │ ├── ice16.c │ │ │ ├── ice17.c │ │ │ ├── ice18.c │ │ │ ├── ice19.c │ │ │ ├── ice2.c │ │ │ ├── ice20.c │ │ │ ├── ice21.c │ │ │ ├── ice22.c │ │ │ ├── ice23.c │ │ │ ├── ice24.c │ │ │ ├── ice25.c │ │ │ ├── ice3.c │ │ │ ├── ice4.c │ │ │ ├── ice5.c │ │ │ ├── ice6.c │ │ │ ├── ice7.c │ │ │ ├── ice8.c │ │ │ ├── ice9.c │ │ │ ├── planar.c │ │ │ ├── rampart.c │ │ │ ├── ruin.c │ │ │ ├── ruin1.c │ │ │ └── ruin2.c │ │ ├── ident.c │ │ ├── inher │ │ │ ├── cliff.c │ │ │ ├── flow.c │ │ │ ├── grove.c │ │ │ ├── hall.c │ │ │ ├── house.c │ │ │ ├── ice.c │ │ │ ├── interactive.c │ │ │ ├── ruin.c │ │ │ └── shore.c │ │ ├── inn.c │ │ ├── lab.c │ │ ├── library.c │ │ ├── magic.c │ │ ├── mon │ │ │ ├── alchemist.c │ │ │ ├── anarane.c │ │ │ ├── archer.c │ │ │ ├── beren.c │ │ │ ├── blade.c │ │ │ ├── bstone.c │ │ │ ├── capn.c │ │ │ ├── carver.c │ │ │ ├── celebrim.c │ │ │ ├── celisse.c │ │ │ ├── child.c │ │ │ ├── citizen.c │ │ │ ├── citizen2.c │ │ │ ├── citizen3.c │ │ │ ├── claw.c │ │ │ ├── crab.c │ │ │ ├── daelas.c │ │ │ ├── elfass2.c │ │ │ ├── elk.c │ │ │ ├── frostgirl.c │ │ │ ├── gatekeeper.c │ │ │ ├── gf_girl.c │ │ │ ├── griffin.c │ │ │ ├── guard.c │ │ │ ├── guard2.c │ │ │ ├── hunter.c │ │ │ ├── istone.c │ │ │ ├── jailer.c │ │ │ ├── lancegirl.c │ │ │ ├── librarian.c │ │ │ ├── lobster.c │ │ │ ├── mage.c │ │ │ ├── maiden.c │ │ │ ├── metal.c │ │ │ ├── minister.c │ │ │ ├── nerwen.c │ │ │ ├── ooze.c │ │ │ ├── owl.c │ │ │ ├── penguin.c │ │ │ ├── refugee1.c │ │ │ ├── rev.c │ │ │ ├── sea_elf.c │ │ │ ├── serpent.c │ │ │ ├── shanta.c │ │ │ ├── sheep.c │ │ │ ├── shopy.c │ │ │ ├── skele.c │ │ │ ├── sleopard.c │ │ │ ├── sprite.c │ │ │ ├── squid.c │ │ │ ├── stingray.c │ │ │ ├── tentacle.c │ │ │ └── worm.c │ │ ├── mythal.c │ │ ├── obj │ │ │ ├── afire.c │ │ │ ├── agechains.c │ │ │ ├── ank.c │ │ │ ├── anklet.c │ │ │ ├── berries.c │ │ │ ├── bioun.c │ │ │ ├── bottoms.c │ │ │ ├── bow.c │ │ │ ├── bracers.c │ │ │ ├── breastpt.c │ │ │ ├── broccoli.c │ │ │ ├── c_blade.c │ │ │ ├── cabbage.c │ │ │ ├── chain.c │ │ │ ├── clance.c │ │ │ ├── cloak.c │ │ │ ├── cloak1.c │ │ │ ├── cologne.c │ │ │ ├── dart.c │ │ │ ├── dress.c │ │ │ ├── duskrobe.c │ │ │ ├── fan.c │ │ │ ├── flower.c │ │ │ ├── gatekey.c │ │ │ ├── gloves.c │ │ │ ├── iioun.c │ │ │ ├── key.c │ │ │ ├── knife.c │ │ │ ├── locket.c │ │ │ ├── mead.c │ │ │ ├── mr_ring.c │ │ │ ├── nectar.c │ │ │ ├── oozeobj.c │ │ │ ├── pants.c │ │ │ ├── pool.c │ │ │ ├── pstone.c │ │ │ ├── pstone1.c │ │ │ ├── pstone2.c │ │ │ ├── rape.c │ │ │ ├── ray_spear.c │ │ │ ├── robe.c │ │ │ ├── robe1.c │ │ │ ├── sack.c │ │ │ ├── salad.c │ │ │ ├── sandals.c │ │ │ ├── sandals2.c │ │ │ ├── sash.c │ │ │ ├── sbrooch.c │ │ │ ├── scale_mail.c │ │ │ ├── scroll_case.c │ │ │ ├── seed.c │ │ │ ├── sheath.c │ │ │ ├── sheath1.c │ │ │ ├── sheep_hat.c │ │ │ ├── shield.c │ │ │ ├── sign.c │ │ │ ├── sign1.c │ │ │ ├── sign2.c │ │ │ ├── sign3.c │ │ │ ├── sign4.c │ │ │ ├── spear.c │ │ │ ├── staff.c │ │ │ ├── stone1.c │ │ │ ├── stone10.c │ │ │ ├── stone2.c │ │ │ ├── stone3.c │ │ │ ├── stone4.c │ │ │ ├── stone5.c │ │ │ ├── stone6.c │ │ │ ├── stone7.c │ │ │ ├── stone8.c │ │ │ ├── stone9.c │ │ │ ├── tail.c │ │ │ ├── target.c │ │ │ ├── target2.c │ │ │ ├── tiara.c │ │ │ ├── tiara2.c │ │ │ ├── trident.c │ │ │ ├── tspear.c │ │ │ ├── tunic.c │ │ │ ├── v_gloves.c │ │ │ ├── veil.c │ │ │ ├── weed_belt.c │ │ │ ├── weed_belt2.c │ │ │ ├── weed_cloak.c │ │ │ └── wine.c │ │ ├── office.c │ │ ├── quest.c │ │ ├── shore │ │ │ ├── camp.c │ │ │ ├── castle0.c │ │ │ ├── castle1.c │ │ │ ├── flow1.c │ │ │ ├── flow10.c │ │ │ ├── flow11.c │ │ │ ├── flow2.c │ │ │ ├── flow3.c │ │ │ ├── flow4.c │ │ │ ├── flow5.c │ │ │ ├── flow6.c │ │ │ ├── flow7.c │ │ │ ├── flow8.c │ │ │ ├── flow9.c │ │ │ ├── house1.c │ │ │ ├── house2.c │ │ │ ├── house3.c │ │ │ ├── house4.c │ │ │ ├── house5.c │ │ │ ├── house6.c │ │ │ ├── ruin1.c │ │ │ ├── ruin10.c │ │ │ ├── ruin11.c │ │ │ ├── ruin12.c │ │ │ ├── ruin13.c │ │ │ ├── ruin14.c │ │ │ ├── ruin15.c │ │ │ ├── ruin16.c │ │ │ ├── ruin17.c │ │ │ ├── ruin18.c │ │ │ ├── ruin19.c │ │ │ ├── ruin2.c │ │ │ ├── ruin20.c │ │ │ ├── ruin21.c │ │ │ ├── ruin22.c │ │ │ ├── ruin23.c │ │ │ ├── ruin24.c │ │ │ ├── ruin25.c │ │ │ ├── ruin26.c │ │ │ ├── ruin3.c │ │ │ ├── ruin4.c │ │ │ ├── ruin5.c │ │ │ ├── ruin6.c │ │ │ ├── ruin7.c │ │ │ ├── ruin8.c │ │ │ ├── ruin9.c │ │ │ ├── shore1.c │ │ │ ├── shore2.c │ │ │ ├── shore3.c │ │ │ ├── shore4.c │ │ │ ├── shore5.c │ │ │ ├── shore6.c │ │ │ ├── shore7.c │ │ │ ├── shore8.c │ │ │ ├── tower0.c │ │ │ ├── tower1.c │ │ │ └── water.c │ │ ├── stable.c │ │ ├── storage │ │ │ ├── herb.c │ │ │ ├── inn.c │ │ │ ├── magic.c │ │ │ └── metal.c │ │ ├── store.c │ │ ├── tower.c │ │ ├── train.c │ │ ├── water.c │ │ └── wfall.c │ ├── giant │ │ ├── giant.h │ │ └── hill │ │ │ ├── mon │ │ │ ├── ant.c │ │ │ ├── chief.c │ │ │ ├── grunt.c │ │ │ ├── kid.c │ │ │ ├── subchief.c │ │ │ └── subwife.c │ │ │ ├── obj │ │ │ ├── club1.c │ │ │ ├── club2.c │ │ │ ├── hammer.c │ │ │ ├── hide.c │ │ │ ├── kidcloth.c │ │ │ ├── kidcloth2.c │ │ │ ├── mace1.c │ │ │ ├── mace2.c │ │ │ └── speed.c │ │ │ └── rooms │ │ │ ├── r13.c │ │ │ ├── r2.c │ │ │ ├── r3.c │ │ │ ├── r4.c │ │ │ └── r8.c │ ├── illusion │ │ ├── dock.c │ │ ├── forest1.c │ │ ├── forest2.c │ │ ├── forest3.c │ │ ├── forest4.c │ │ ├── forest5.c │ │ ├── forest_entrance.c │ │ ├── misc │ │ │ └── glasses.c │ │ ├── monster │ │ │ └── oldman.c │ │ ├── shore1.c │ │ ├── shore2.c │ │ ├── shore3.c │ │ ├── shore4.c │ │ ├── shore5.c │ │ ├── shore6.c │ │ └── shore7.c │ ├── japan │ │ ├── def.h │ │ ├── monsters │ │ │ └── peasant.c │ │ └── rooms │ │ │ ├── dock.c │ │ │ ├── plain-1.c │ │ │ ├── plain-10.c │ │ │ ├── plain-11.c │ │ │ ├── plain-2.c │ │ │ ├── plain-3.c │ │ │ ├── plain-4.c │ │ │ ├── plain-5.c │ │ │ ├── plain-6.c │ │ │ ├── plain-8.c │ │ │ ├── plain-9.c │ │ │ └── room-10.c │ ├── pirates │ │ ├── armor │ │ │ ├── amberring.c │ │ │ ├── boa.c │ │ │ ├── boa1.c │ │ │ ├── boa2.c │ │ │ ├── boa3.c │ │ │ ├── boa4.c │ │ │ ├── boa5.c │ │ │ ├── darkring.c │ │ │ ├── demonskin.c │ │ │ ├── leathercoif.c │ │ │ ├── redcoat.c │ │ │ └── woolcloak.c │ │ ├── caves │ │ │ ├── canyon1.c │ │ │ ├── canyon10.c │ │ │ ├── canyon11.c │ │ │ ├── canyon12.c │ │ │ ├── canyon13.c │ │ │ ├── canyon2.c │ │ │ ├── canyon3.c │ │ │ ├── canyon4.c │ │ │ ├── canyon5.c │ │ │ ├── canyon6.c │ │ │ ├── canyon7.c │ │ │ ├── canyon8.c │ │ │ ├── canyon9.c │ │ │ ├── canyons1.c │ │ │ ├── canyons2.c │ │ │ ├── canyons3.c │ │ │ ├── canyons4.c │ │ │ ├── canyons5.c │ │ │ ├── canyons6.c │ │ │ ├── canyons7.c │ │ │ ├── cave1.c │ │ │ ├── cave10.c │ │ │ ├── cave10.ergo │ │ │ ├── cave11.c │ │ │ ├── cave12.c │ │ │ ├── cave13.c │ │ │ ├── cave13.ergo │ │ │ ├── cave14.c │ │ │ ├── cave15.c │ │ │ ├── cave16.c │ │ │ ├── cave2.c │ │ │ ├── cave3.c │ │ │ ├── cave4.c │ │ │ ├── cave5.c │ │ │ ├── cave6.c │ │ │ ├── cave7.c │ │ │ ├── cave8.c │ │ │ ├── cave9.c │ │ │ └── shadow.c │ │ ├── cove │ │ │ ├── bar1.c │ │ │ ├── bar2.c │ │ │ ├── boata01.c │ │ │ ├── boata02.c │ │ │ ├── boata03.c │ │ │ ├── boata04.c │ │ │ ├── boata05.c │ │ │ ├── boata06.c │ │ │ ├── boata07.c │ │ │ ├── boata08.c │ │ │ ├── boatb01.c │ │ │ ├── boatb02.c │ │ │ ├── boatb03.c │ │ │ ├── boatb04.c │ │ │ ├── boatb05.c │ │ │ ├── boatb06.c │ │ │ ├── boatb07.c │ │ │ ├── boatb08.c │ │ │ ├── boatb09.c │ │ │ ├── boatb10.c │ │ │ ├── boatb11.c │ │ │ ├── dock1.c │ │ │ ├── dock2.c │ │ │ ├── dock3.c │ │ │ ├── dock4.c │ │ │ ├── dock5.c │ │ │ ├── dock6.c │ │ │ ├── dock7.c │ │ │ ├── general.c │ │ │ ├── healer.c │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ ├── path9.c │ │ │ ├── smuggler.c │ │ │ ├── thief1.c │ │ │ ├── thief2.c │ │ │ ├── thief3.c │ │ │ ├── thief4.c │ │ │ └── thief5.c │ │ ├── mon │ │ │ ├── barkeep1.c │ │ │ ├── barkeep2.c │ │ │ ├── bowyer.c │ │ │ ├── cedwin.c │ │ │ ├── citizen.c │ │ │ ├── firstmate.c │ │ │ ├── krinten.c │ │ │ ├── loreman.c │ │ │ ├── mage.c │ │ │ ├── mate2.c │ │ │ ├── piercer.c │ │ │ ├── piratecaptain.c │ │ │ ├── piratecaptain2.c │ │ │ ├── piratecrew.c │ │ │ ├── piratecrew2.c │ │ │ ├── piratecrew3.c │ │ │ ├── pirateguard.c │ │ │ ├── pirateguard2.c │ │ │ ├── pirateguard3.c │ │ │ ├── rogue.c │ │ │ ├── secondmate.c │ │ │ ├── shadowmonster.c │ │ │ ├── shawologon.c │ │ │ └── tannora.c │ │ ├── obj │ │ │ ├── amberring.c │ │ │ ├── baneblade.c │ │ │ ├── boa.c │ │ │ ├── boots.c │ │ │ ├── crossbow.c │ │ │ ├── cutlass.c │ │ │ ├── darkring.c │ │ │ ├── demonskin.c │ │ │ ├── doommace.c │ │ │ ├── doomsword.c │ │ │ ├── driedcorpse.c │ │ │ ├── gemknow.c │ │ │ ├── goldring.c │ │ │ ├── hook.c │ │ │ ├── leathercoif.c │ │ │ ├── longdagger.c │ │ │ ├── map1.c │ │ │ ├── map2.c │ │ │ ├── map3.c │ │ │ ├── map4.c │ │ │ ├── newcoat.c │ │ │ ├── rapier.c │ │ │ ├── redcoat.c │ │ │ ├── sawdagger.c │ │ │ ├── statue.c │ │ │ ├── thiefnote.c │ │ │ ├── venomcontainer.c │ │ │ ├── venomdagger.c │ │ │ ├── whalebone.c │ │ │ └── woolcloak.c │ │ ├── oldrooms │ │ │ ├── armor.c │ │ │ ├── canyon1.c │ │ │ ├── canyon10.c │ │ │ ├── canyon11.c │ │ │ ├── canyon12.c │ │ │ ├── canyon13.c │ │ │ ├── canyon2.c │ │ │ ├── canyon3.c │ │ │ ├── canyon4.c │ │ │ ├── canyon5.c │ │ │ ├── canyon6.c │ │ │ ├── canyon7.c │ │ │ ├── canyon8.c │ │ │ ├── canyon9.c │ │ │ ├── canyons1.c │ │ │ ├── canyons2.c │ │ │ ├── canyons3.c │ │ │ ├── canyons4.c │ │ │ ├── canyons5.c │ │ │ ├── canyons6.c │ │ │ ├── canyons7.c │ │ │ ├── cave1.c │ │ │ ├── cave10.c │ │ │ ├── cave11.c │ │ │ ├── cave12.c │ │ │ ├── cave13.c │ │ │ ├── cave14.c │ │ │ ├── cave15.c │ │ │ ├── cave16.c │ │ │ ├── cave2.c │ │ │ ├── cave3.c │ │ │ ├── cave4.c │ │ │ ├── cave5.c │ │ │ ├── cave6.c │ │ │ ├── cave7.c │ │ │ ├── cave8.c │ │ │ ├── cave9.c │ │ │ ├── cove1.c │ │ │ ├── cove10.c │ │ │ ├── cove11.c │ │ │ ├── cove12.c │ │ │ ├── cove13.c │ │ │ ├── cove14.c │ │ │ ├── cove2.c │ │ │ ├── cove3.c │ │ │ ├── cove4.c │ │ │ ├── cove5.c │ │ │ ├── cove6.c │ │ │ ├── cove7.c │ │ │ ├── cove8.c │ │ │ ├── cove9.c │ │ │ ├── dock.c │ │ │ ├── healer.c │ │ │ ├── piratearm.c │ │ │ ├── pirateweap.c │ │ │ ├── seafood.c │ │ │ ├── shadow.c │ │ │ ├── ship1r1.c │ │ │ ├── ship1r2.c │ │ │ ├── ship2r1.c │ │ │ ├── ship2r10.c │ │ │ ├── ship2r11.c │ │ │ ├── ship2r2.c │ │ │ ├── ship2r3.c │ │ │ ├── ship2r4.c │ │ │ ├── ship2r5.c │ │ │ ├── ship2r6.c │ │ │ ├── ship2r7.c │ │ │ ├── ship2r8.c │ │ │ ├── ship2r9.c │ │ │ ├── tavern.c │ │ │ ├── thief1.c │ │ │ ├── thief2.c │ │ │ ├── thief3.c │ │ │ ├── thief4.c │ │ │ ├── thiefstorage.c │ │ │ └── weapon.c │ │ ├── piratedefs.h │ │ ├── squires_trial │ │ │ ├── baseroom.c │ │ │ ├── cbaseroom.c │ │ │ ├── chasmbaseroom.c │ │ │ ├── mon │ │ │ │ ├── elemental.c │ │ │ │ ├── goblin.c │ │ │ │ ├── livingarmor.c │ │ │ │ ├── minielemental.c │ │ │ │ └── shadowmonster.c │ │ │ ├── obj │ │ │ │ ├── baneblade.c │ │ │ │ ├── black_pearl.c │ │ │ │ ├── bone_harness.c │ │ │ │ ├── demonskin.c │ │ │ │ ├── falcon_sword.c │ │ │ │ └── polished_plate.c │ │ │ ├── rooms │ │ │ │ ├── hidden.c │ │ │ │ ├── room1.c │ │ │ │ ├── room10.c │ │ │ │ ├── room11.c │ │ │ │ ├── room12.c │ │ │ │ ├── room13.c │ │ │ │ ├── room14.c │ │ │ │ ├── room15.c │ │ │ │ ├── room16.c │ │ │ │ ├── room17.c │ │ │ │ ├── room18.c │ │ │ │ ├── room19.c │ │ │ │ ├── room2.c │ │ │ │ ├── room20.c │ │ │ │ ├── room21.c │ │ │ │ ├── room22.c │ │ │ │ ├── room23.c │ │ │ │ ├── room24.c │ │ │ │ ├── room3.c │ │ │ │ ├── room4.c │ │ │ │ ├── room5.c │ │ │ │ ├── room6.c │ │ │ │ ├── room7.c │ │ │ │ ├── room8.c │ │ │ │ ├── room9.c │ │ │ │ └── shadow.c │ │ │ └── squires_trial.h │ │ ├── storage │ │ │ ├── general.c │ │ │ ├── repairs.c │ │ │ ├── sell.c │ │ │ └── thief.c │ │ └── weapon │ │ │ ├── bloodsw.c │ │ │ ├── bloodswbu.c │ │ │ ├── doommace.c │ │ │ ├── doomsword.c │ │ │ ├── doomswordbu.c │ │ │ ├── hook.c │ │ │ ├── longdagger.c │ │ │ ├── rapier+1.c │ │ │ ├── rapier.c │ │ │ ├── sawdagger.c │ │ │ ├── silverdagger.c │ │ │ ├── venomcontainer.c │ │ │ ├── venomdagger.c │ │ │ └── whalebone.c │ ├── serakii │ │ ├── mobs │ │ │ └── bauble.c │ │ └── obj │ │ │ └── jesters_bauble.c │ ├── spriggans │ │ ├── DESC │ │ ├── inherit │ │ │ ├── beach_inherit.c │ │ │ ├── cave_inherit.c │ │ │ ├── cliff_inherit.c │ │ │ └── gnome_inherit.c │ │ ├── mon │ │ │ ├── crab.c │ │ │ ├── kreeyan.c │ │ │ ├── ryanallynella.c │ │ │ └── seagull.c │ │ ├── obj │ │ │ ├── ayahuasca.c │ │ │ ├── gnome_diamond.c │ │ │ ├── gnome_emerald.c │ │ │ ├── gnome_ruby.c │ │ │ ├── m_seashell.c │ │ │ ├── seashell.c │ │ │ ├── test_obj.c │ │ │ └── woven_basket.c │ │ ├── room │ │ │ ├── leilani.dock.c │ │ │ ├── maze │ │ │ │ └── mazebase.c │ │ │ ├── s1.c │ │ │ ├── s10.c │ │ │ ├── s11.c │ │ │ ├── s12.c │ │ │ ├── s13.c │ │ │ ├── s14.c │ │ │ ├── s15.c │ │ │ ├── s16.c │ │ │ ├── s17.c │ │ │ ├── s18.c │ │ │ ├── s19.c │ │ │ ├── s2.c │ │ │ ├── s20.c │ │ │ ├── s21.c │ │ │ ├── s22.c │ │ │ ├── s23.c │ │ │ ├── s24.c │ │ │ ├── s25.c │ │ │ ├── s3.c │ │ │ ├── s37.c │ │ │ ├── s38.c │ │ │ ├── s39.c │ │ │ ├── s4.c │ │ │ ├── s40.c │ │ │ ├── s41.c │ │ │ ├── s42.c │ │ │ ├── s43.c │ │ │ ├── s44.c │ │ │ ├── s45.c │ │ │ ├── s46.c │ │ │ ├── s47.c │ │ │ ├── s48.c │ │ │ ├── s49.c │ │ │ ├── s5.c │ │ │ ├── s50.c │ │ │ ├── s51.c │ │ │ ├── s52.c │ │ │ ├── s6.c │ │ │ ├── s7.c │ │ │ ├── s8.c │ │ │ └── s9.c │ │ └── spriggan.h │ ├── tonerra │ │ ├── areadefs.h │ │ ├── beach │ │ │ ├── beach1.c │ │ │ ├── beach10.c │ │ │ ├── beach11.c │ │ │ ├── beach12.c │ │ │ ├── beach13.c │ │ │ ├── beach14.c │ │ │ ├── beach15.c │ │ │ ├── beach16.c │ │ │ ├── beach17.c │ │ │ ├── beach18.c │ │ │ ├── beach19.c │ │ │ ├── beach2.c │ │ │ ├── beach20.c │ │ │ ├── beach21.c │ │ │ ├── beach22.c │ │ │ ├── beach23.c │ │ │ ├── beach24.c │ │ │ ├── beach25.c │ │ │ ├── beach26.c │ │ │ ├── beach27.c │ │ │ ├── beach28.c │ │ │ ├── beach29.c │ │ │ ├── beach3.c │ │ │ ├── beach30.c │ │ │ ├── beach4.c │ │ │ ├── beach5.c │ │ │ ├── beach6.c │ │ │ ├── beach7.c │ │ │ ├── beach8.c │ │ │ └── beach9.c │ │ ├── cat.c │ │ ├── catacombs │ │ │ ├── cat1.c │ │ │ ├── cat10.c │ │ │ ├── cat11.c │ │ │ ├── cat12.c │ │ │ ├── cat13.c │ │ │ ├── cat14.c │ │ │ ├── cat15.c │ │ │ ├── cat16.c │ │ │ ├── cat17.c │ │ │ ├── cat18.c │ │ │ ├── cat19.c │ │ │ ├── cat2.c │ │ │ ├── cat20.c │ │ │ ├── cat21.c │ │ │ ├── cat22.c │ │ │ ├── cat23.c │ │ │ ├── cat24.c │ │ │ ├── cat25.c │ │ │ ├── cat26.c │ │ │ ├── cat27.c │ │ │ ├── cat28.c │ │ │ ├── cat29.c │ │ │ ├── cat3.c │ │ │ ├── cat30.c │ │ │ ├── cat31.c │ │ │ ├── cat32.c │ │ │ ├── cat33.c │ │ │ ├── cat34.c │ │ │ ├── cat35.c │ │ │ ├── cat36.c │ │ │ ├── cat37.c │ │ │ ├── cat38.c │ │ │ ├── cat39.c │ │ │ ├── cat4.c │ │ │ ├── cat40.c │ │ │ ├── cat41.c │ │ │ ├── cat42.c │ │ │ ├── cat43.c │ │ │ ├── cat44.c │ │ │ ├── cat45.c │ │ │ ├── cat46.c │ │ │ ├── cat47.c │ │ │ ├── cat48.c │ │ │ ├── cat49.c │ │ │ ├── cat5.c │ │ │ ├── cat50.c │ │ │ ├── cat6.c │ │ │ ├── cat7.c │ │ │ ├── cat8.c │ │ │ └── cat9.c │ │ ├── compshop.c │ │ ├── expedition │ │ │ ├── SYNOPSIS │ │ │ ├── obj │ │ │ │ ├── backup │ │ │ │ │ ├── mpistol.c │ │ │ │ │ └── stormshatter.c │ │ │ │ ├── cutlass.c │ │ │ │ ├── mpistol.c │ │ │ │ └── stormshatter.c │ │ │ └── room │ │ │ │ └── jungle1.c │ │ ├── eyerobe.c │ │ ├── jungle.c │ │ ├── lava.c │ │ ├── lava │ │ │ ├── lava1.c │ │ │ ├── lava10.c │ │ │ ├── lava100.c │ │ │ ├── lava101.c │ │ │ ├── lava102.c │ │ │ ├── lava103.c │ │ │ ├── lava104.c │ │ │ ├── lava105.c │ │ │ ├── lava106.c │ │ │ ├── lava107.c │ │ │ ├── lava108.c │ │ │ ├── lava109.c │ │ │ ├── lava11.c │ │ │ ├── lava110.c │ │ │ ├── lava111.c │ │ │ ├── lava112.c │ │ │ ├── lava113.c │ │ │ ├── lava114.c │ │ │ ├── lava115.c │ │ │ ├── lava116.c │ │ │ ├── lava117.c │ │ │ ├── lava118.c │ │ │ ├── lava119.c │ │ │ ├── lava12.c │ │ │ ├── lava120.c │ │ │ ├── lava121.c │ │ │ ├── lava122.c │ │ │ ├── lava123.c │ │ │ ├── lava124.c │ │ │ ├── lava125.c │ │ │ ├── lava126.c │ │ │ ├── lava127.c │ │ │ ├── lava128.c │ │ │ ├── lava129.c │ │ │ ├── lava13.c │ │ │ ├── lava130.c │ │ │ ├── lava131.c │ │ │ ├── lava132.c │ │ │ ├── lava133.c │ │ │ ├── lava134.c │ │ │ ├── lava135.c │ │ │ ├── lava136.c │ │ │ ├── lava137.c │ │ │ ├── lava138.c │ │ │ ├── lava139.c │ │ │ ├── lava14.c │ │ │ ├── lava140.c │ │ │ ├── lava141.c │ │ │ ├── lava142.c │ │ │ ├── lava143.c │ │ │ ├── lava144.c │ │ │ ├── lava145.c │ │ │ ├── lava146.c │ │ │ ├── lava147.c │ │ │ ├── lava148.c │ │ │ ├── lava149.c │ │ │ ├── lava15.c │ │ │ ├── lava150.c │ │ │ ├── lava151.c │ │ │ ├── lava152.c │ │ │ ├── lava153.c │ │ │ ├── lava154.c │ │ │ ├── lava155.c │ │ │ ├── lava156.c │ │ │ ├── lava157.c │ │ │ ├── lava158.c │ │ │ ├── lava159.c │ │ │ ├── lava16.c │ │ │ ├── lava160.c │ │ │ ├── lava161.c │ │ │ ├── lava162.c │ │ │ ├── lava163.c │ │ │ ├── lava164.c │ │ │ ├── lava165.c │ │ │ ├── lava166.c │ │ │ ├── lava167.c │ │ │ ├── lava168.c │ │ │ ├── lava169.c │ │ │ ├── lava17.c │ │ │ ├── lava170.c │ │ │ ├── lava171.c │ │ │ ├── lava172.c │ │ │ ├── lava173.c │ │ │ ├── lava174.c │ │ │ ├── lava175.c │ │ │ ├── lava176.c │ │ │ ├── lava177.c │ │ │ ├── lava178.c │ │ │ ├── lava179.c │ │ │ ├── lava18.c │ │ │ ├── lava180.c │ │ │ ├── lava181.c │ │ │ ├── lava182.c │ │ │ ├── lava183.c │ │ │ ├── lava184.c │ │ │ ├── lava185.c │ │ │ ├── lava186.c │ │ │ ├── lava187.c │ │ │ ├── lava188.c │ │ │ ├── lava189.c │ │ │ ├── lava19.c │ │ │ ├── lava190.c │ │ │ ├── lava191.c │ │ │ ├── lava192.c │ │ │ ├── lava193.c │ │ │ ├── lava194.c │ │ │ ├── lava195.c │ │ │ ├── lava196.c │ │ │ ├── lava197.c │ │ │ ├── lava198.c │ │ │ ├── lava199.c │ │ │ ├── lava2.c │ │ │ ├── lava20.c │ │ │ ├── lava200.c │ │ │ ├── lava201.c │ │ │ ├── lava202.c │ │ │ ├── lava203.c │ │ │ ├── lava204.c │ │ │ ├── lava205.c │ │ │ ├── lava206.c │ │ │ ├── lava207.c │ │ │ ├── lava21.c │ │ │ ├── lava22.c │ │ │ ├── lava23.c │ │ │ ├── lava24.c │ │ │ ├── lava25.c │ │ │ ├── lava26.c │ │ │ ├── lava27.c │ │ │ ├── lava28.c │ │ │ ├── lava29.c │ │ │ ├── lava3.c │ │ │ ├── lava30.c │ │ │ ├── lava31.c │ │ │ ├── lava32.c │ │ │ ├── lava33.c │ │ │ ├── lava34.c │ │ │ ├── lava35.c │ │ │ ├── lava36.c │ │ │ ├── lava37.c │ │ │ ├── lava38.c │ │ │ ├── lava39.c │ │ │ ├── lava4.c │ │ │ ├── lava40.c │ │ │ ├── lava41.c │ │ │ ├── lava42.c │ │ │ ├── lava43.c │ │ │ ├── lava44.c │ │ │ ├── lava45.c │ │ │ ├── lava46.c │ │ │ ├── lava47.c │ │ │ ├── lava48.c │ │ │ ├── lava49.c │ │ │ ├── lava5.c │ │ │ ├── lava50.c │ │ │ ├── lava51.c │ │ │ ├── lava52.c │ │ │ ├── lava53.c │ │ │ ├── lava54.c │ │ │ ├── lava55.c │ │ │ ├── lava56.c │ │ │ ├── lava57.c │ │ │ ├── lava58.c │ │ │ ├── lava59.c │ │ │ ├── lava6.c │ │ │ ├── lava60.c │ │ │ ├── lava61.c │ │ │ ├── lava62.c │ │ │ ├── lava63.c │ │ │ ├── lava64.c │ │ │ ├── lava65.c │ │ │ ├── lava66.c │ │ │ ├── lava67.c │ │ │ ├── lava68.c │ │ │ ├── lava69.c │ │ │ ├── lava7.c │ │ │ ├── lava70.c │ │ │ ├── lava71.c │ │ │ ├── lava72.c │ │ │ ├── lava73.c │ │ │ ├── lava74.c │ │ │ ├── lava75.c │ │ │ ├── lava76.c │ │ │ ├── lava77.c │ │ │ ├── lava78.c │ │ │ ├── lava79.c │ │ │ ├── lava8.c │ │ │ ├── lava80.c │ │ │ ├── lava81.c │ │ │ ├── lava82.c │ │ │ ├── lava83.c │ │ │ ├── lava84.c │ │ │ ├── lava85.c │ │ │ ├── lava86.c │ │ │ ├── lava87.c │ │ │ ├── lava88.c │ │ │ ├── lava89.c │ │ │ ├── lava9.c │ │ │ ├── lava90.c │ │ │ ├── lava91.c │ │ │ ├── lava92.c │ │ │ ├── lava93.c │ │ │ ├── lava94.c │ │ │ ├── lava95.c │ │ │ ├── lava96.c │ │ │ ├── lava97.c │ │ │ ├── lava98.c │ │ │ ├── lava99.c │ │ │ ├── temple1.c │ │ │ ├── temple2.c │ │ │ ├── temple3.c │ │ │ ├── temple4.c │ │ │ ├── temple5.c │ │ │ ├── temple6.c │ │ │ ├── temple7.c │ │ │ └── temple8.c │ │ ├── mon │ │ │ ├── ankheg.c │ │ │ ├── aurumvorax.c │ │ │ ├── bathu.c │ │ │ ├── boulder.c │ │ │ ├── chumba.c │ │ │ ├── cyclops.c │ │ │ ├── dexterity.c │ │ │ ├── edragon.c │ │ │ ├── enchanter.c │ │ │ ├── fnewt.c │ │ │ ├── followerac.c │ │ │ ├── followerg.c │ │ │ ├── followermr.c │ │ │ ├── followers.c │ │ │ ├── galebduhr.c │ │ │ ├── greed.c │ │ │ ├── harginn.c │ │ │ ├── ibrandlin.c │ │ │ ├── ibrandul.c │ │ │ ├── intelligence.c │ │ │ ├── lava.c │ │ │ ├── lava_d.c │ │ │ ├── magman.c │ │ │ ├── mmonk.c │ │ │ ├── monk.c │ │ │ ├── monk2.c │ │ │ ├── mskel.c │ │ │ ├── native.c │ │ │ ├── nativeG.c │ │ │ ├── nativeS.c │ │ │ ├── nativeT.c │ │ │ ├── nativeW.c │ │ │ ├── nativek.c │ │ │ ├── nativewd.c │ │ │ ├── rgargantua.c │ │ │ ├── salamander.c │ │ │ ├── strength.c │ │ │ ├── strider.c │ │ │ ├── striving.c │ │ │ ├── tasloi.c │ │ │ ├── tombt.c │ │ │ ├── tonerra_d.c │ │ │ ├── wamba.c │ │ │ ├── wander.c │ │ │ ├── wisdom.c │ │ │ └── wytoth.c │ │ ├── monastary │ │ │ ├── backup │ │ │ │ ├── g1.c │ │ │ │ ├── g10.c │ │ │ │ ├── g11.c │ │ │ │ ├── g12.c │ │ │ │ ├── g13.c │ │ │ │ ├── g14.c │ │ │ │ ├── g15.c │ │ │ │ ├── g16.c │ │ │ │ ├── g17.c │ │ │ │ ├── g18.c │ │ │ │ ├── g19.c │ │ │ │ ├── g2.c │ │ │ │ ├── g20.c │ │ │ │ ├── g21.c │ │ │ │ ├── g22.c │ │ │ │ ├── g23.c │ │ │ │ ├── g24.c │ │ │ │ ├── g25.c │ │ │ │ ├── g3.c │ │ │ │ ├── g4.c │ │ │ │ ├── g5.c │ │ │ │ ├── g6.c │ │ │ │ ├── g7.c │ │ │ │ ├── g8.c │ │ │ │ ├── g9.c │ │ │ │ ├── m1.c │ │ │ │ ├── m10.c │ │ │ │ ├── m11.c │ │ │ │ ├── m12.c │ │ │ │ ├── m13.c │ │ │ │ ├── m14.c │ │ │ │ ├── m15.c │ │ │ │ ├── m2.c │ │ │ │ ├── m3.c │ │ │ │ ├── m4.c │ │ │ │ ├── m5.c │ │ │ │ ├── m6.c │ │ │ │ ├── m7.c │ │ │ │ ├── m8.c │ │ │ │ ├── m9.c │ │ │ │ ├── monastary.c │ │ │ │ ├── u1.c │ │ │ │ ├── u10.c │ │ │ │ ├── u11.c │ │ │ │ ├── u12.c │ │ │ │ ├── u13.c │ │ │ │ ├── u14.c │ │ │ │ ├── u15.c │ │ │ │ ├── u16.c │ │ │ │ ├── u2.c │ │ │ │ ├── u3.c │ │ │ │ ├── u4.c │ │ │ │ ├── u5.c │ │ │ │ ├── u6.c │ │ │ │ ├── u7.c │ │ │ │ ├── u8.c │ │ │ │ └── u9.c │ │ │ ├── dex.c │ │ │ ├── entrance.c │ │ │ ├── gar1.c │ │ │ ├── gar2.c │ │ │ ├── gar3.c │ │ │ ├── gar4.c │ │ │ ├── gar5.c │ │ │ ├── hall1.c │ │ │ ├── hall10.c │ │ │ ├── hall11.c │ │ │ ├── hall12.c │ │ │ ├── hall13.c │ │ │ ├── hall14.c │ │ │ ├── hall15.c │ │ │ ├── hall16.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hall4.c │ │ │ ├── hall5.c │ │ │ ├── hall6.c │ │ │ ├── hall7.c │ │ │ ├── hall8.c │ │ │ ├── hall9.c │ │ │ ├── int.c │ │ │ ├── m1.c │ │ │ ├── m10.c │ │ │ ├── m11.c │ │ │ ├── m12.c │ │ │ ├── m13.c │ │ │ ├── m14.c │ │ │ ├── m15.c │ │ │ ├── m16.c │ │ │ ├── m17.c │ │ │ ├── m18.c │ │ │ ├── m19.c │ │ │ ├── m2.c │ │ │ ├── m20.c │ │ │ ├── m21.c │ │ │ ├── m22.c │ │ │ ├── m23.c │ │ │ ├── m24.c │ │ │ ├── m25.c │ │ │ ├── m26.c │ │ │ ├── m27.c │ │ │ ├── m28.c │ │ │ ├── m29.c │ │ │ ├── m3.c │ │ │ ├── m30.c │ │ │ ├── m31.c │ │ │ ├── m32.c │ │ │ ├── m33.c │ │ │ ├── m34.c │ │ │ ├── m35.c │ │ │ ├── m37.c │ │ │ ├── m38.c │ │ │ ├── m4.c │ │ │ ├── m5.c │ │ │ ├── m6.c │ │ │ ├── m7.c │ │ │ ├── m8.c │ │ │ ├── m9.c │ │ │ ├── obj │ │ │ │ ├── bstaff.c │ │ │ │ ├── cbroadsword.c │ │ │ │ ├── koen.c │ │ │ │ ├── lsword.c │ │ │ │ ├── nunchaku.c │ │ │ │ └── swhip.c │ │ │ ├── short.h │ │ │ ├── stairs.c │ │ │ ├── stairs1.c │ │ │ ├── stairs2.c │ │ │ ├── stairs3.c │ │ │ ├── stairs4.c │ │ │ ├── str.c │ │ │ └── wis.c │ │ ├── mountain.c │ │ ├── mountain │ │ │ ├── dhome.c │ │ │ ├── jungle.c │ │ │ ├── mount1.c │ │ │ ├── mount10.c │ │ │ ├── mount11.c │ │ │ ├── mount12.c │ │ │ ├── mount13.c │ │ │ ├── mount14.c │ │ │ ├── mount15.c │ │ │ ├── mount16.c │ │ │ ├── mount17.c │ │ │ ├── mount18.c │ │ │ ├── mount19.c │ │ │ ├── mount2.c │ │ │ ├── mount20.c │ │ │ ├── mount21.c │ │ │ ├── mount22.c │ │ │ ├── mount23.c │ │ │ ├── mount24.c │ │ │ ├── mount25.c │ │ │ ├── mount26.c │ │ │ ├── mount27.c │ │ │ ├── mount28.c │ │ │ ├── mount29.c │ │ │ ├── mount3.c │ │ │ ├── mount30.c │ │ │ ├── mount31.c │ │ │ ├── mount32.c │ │ │ ├── mount33.c │ │ │ ├── mount34.c │ │ │ ├── mount35.c │ │ │ ├── mount36.c │ │ │ ├── mount37.c │ │ │ ├── mount38.c │ │ │ ├── mount39.c │ │ │ ├── mount4.c │ │ │ ├── mount40.c │ │ │ ├── mount41.c │ │ │ ├── mount42.c │ │ │ ├── mount43.c │ │ │ ├── mount44.c │ │ │ ├── mount45.c │ │ │ ├── mount46.c │ │ │ ├── mount47.c │ │ │ ├── mount48.c │ │ │ ├── mount49.c │ │ │ ├── mount5.c │ │ │ ├── mount50.c │ │ │ ├── mount51.c │ │ │ ├── mount52.c │ │ │ ├── mount53.c │ │ │ ├── mount54.c │ │ │ ├── mount55.c │ │ │ ├── mount56.c │ │ │ ├── mount57.c │ │ │ ├── mount58.c │ │ │ ├── mount59.c │ │ │ ├── mount6.c │ │ │ ├── mount60.c │ │ │ ├── mount61.c │ │ │ ├── mount62.c │ │ │ ├── mount63.c │ │ │ ├── mount64.c │ │ │ ├── mount65.c │ │ │ ├── mount66.c │ │ │ ├── mount67.c │ │ │ ├── mount7.c │ │ │ ├── mount8.c │ │ │ ├── mount9.c │ │ │ └── mountain.c │ │ ├── naccoom.c │ │ ├── obj │ │ │ ├── Lcloak.c │ │ │ ├── beaker.c │ │ │ ├── book.c │ │ │ ├── chain.c │ │ │ ├── collar.c │ │ │ ├── dagger1.c │ │ │ ├── daggerchip.c │ │ │ ├── dhammer.c │ │ │ ├── doll.c │ │ │ ├── faxe.c │ │ │ ├── fireflame.c │ │ │ ├── forgedShort.c │ │ │ ├── froom.c │ │ │ ├── gem.c │ │ │ ├── gpouch.c │ │ │ ├── hammer_of_destruction.c │ │ │ ├── hide.c │ │ │ ├── lance.c │ │ │ ├── lavastream.c │ │ │ ├── liquid1.c │ │ │ ├── liquid2.c │ │ │ ├── liquid3.c │ │ │ ├── liquid4.c │ │ │ ├── mace.c │ │ │ ├── mace_of_ibrandul.c │ │ │ ├── mask.c │ │ │ ├── mephistar.c │ │ │ ├── mephistarsword.c │ │ │ ├── mrobe.c │ │ │ ├── newmask.c │ │ │ ├── powergem.c │ │ │ ├── ring1.c │ │ │ ├── ring2.c │ │ │ ├── ring3.c │ │ │ ├── ring4.c │ │ │ ├── salspear.c │ │ │ ├── scale.c │ │ │ ├── scalehelm.c │ │ │ ├── spear1.c │ │ │ ├── spear2.c │ │ │ ├── statue.c │ │ │ ├── stonechip.c │ │ │ ├── wstaff.c │ │ │ └── wstaff_test.c │ │ ├── path │ │ │ ├── ankheghouse.c │ │ │ ├── clear1.c │ │ │ ├── clear2.c │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path17.c │ │ │ ├── path18.c │ │ │ ├── path19.c │ │ │ ├── path2.c │ │ │ ├── path20.c │ │ │ ├── path21.c │ │ │ ├── path22.c │ │ │ ├── path23.c │ │ │ ├── path24.c │ │ │ ├── path25.c │ │ │ ├── path26.c │ │ │ ├── path27.c │ │ │ ├── path28.c │ │ │ ├── path29.c │ │ │ ├── path3.c │ │ │ ├── path30.c │ │ │ ├── path31.c │ │ │ ├── path32.c │ │ │ ├── path33.c │ │ │ ├── path34.c │ │ │ ├── path35.c │ │ │ ├── path36.c │ │ │ ├── path37.c │ │ │ ├── path38.c │ │ │ ├── path39.c │ │ │ ├── path4.c │ │ │ ├── path40.c │ │ │ ├── path41.c │ │ │ ├── path42.c │ │ │ ├── path43.c │ │ │ ├── path44.c │ │ │ ├── path45.c │ │ │ ├── path46.c │ │ │ ├── path47.c │ │ │ ├── path48.c │ │ │ ├── path49.c │ │ │ ├── path5.c │ │ │ ├── path50.c │ │ │ ├── path51.c │ │ │ ├── path52.c │ │ │ ├── path53.c │ │ │ ├── path54.c │ │ │ ├── path55.c │ │ │ ├── path56.c │ │ │ ├── path57.c │ │ │ ├── path58.c │ │ │ ├── path59.c │ │ │ ├── path6.c │ │ │ ├── path60.c │ │ │ ├── path61.c │ │ │ ├── path62.c │ │ │ ├── path63.c │ │ │ ├── path64.c │ │ │ ├── path65.c │ │ │ ├── path66.c │ │ │ ├── path67.c │ │ │ ├── path68.c │ │ │ ├── path69.c │ │ │ ├── path7.c │ │ │ ├── path70.c │ │ │ ├── path71.c │ │ │ ├── path72.c │ │ │ ├── path73.c │ │ │ ├── path74.c │ │ │ ├── path75.c │ │ │ ├── path76.c │ │ │ ├── path77.c │ │ │ ├── path78.c │ │ │ ├── path79.c │ │ │ ├── path8.c │ │ │ ├── path80.c │ │ │ ├── path81.c │ │ │ ├── path82.c │ │ │ ├── path83.c │ │ │ ├── path84.c │ │ │ ├── path85.c │ │ │ ├── path86.c │ │ │ ├── path87.c │ │ │ ├── path88.c │ │ │ ├── path89.c │ │ │ ├── path9.c │ │ │ ├── path90.c │ │ │ └── path91.c │ │ ├── redpowder.c │ │ ├── spear1.c │ │ ├── spear2.c │ │ ├── spec_stor.c │ │ ├── storage.c │ │ └── village │ │ │ ├── bighut1.c │ │ │ ├── bighut2.c │ │ │ ├── hut1.c │ │ │ ├── hut2.c │ │ │ ├── hut3.c │ │ │ ├── hut4.c │ │ │ ├── hut5.c │ │ │ ├── hut6.c │ │ │ ├── hut7.c │ │ │ ├── hut8.c │ │ │ ├── hut9.c │ │ │ ├── vil1.c │ │ │ ├── vil10.c │ │ │ ├── vil11.c │ │ │ ├── vil12.c │ │ │ ├── vil13.c │ │ │ ├── vil14.c │ │ │ ├── vil15.c │ │ │ ├── vil16.c │ │ │ ├── vil17.c │ │ │ ├── vil18.c │ │ │ ├── vil19.c │ │ │ ├── vil2.c │ │ │ ├── vil20.c │ │ │ ├── vil21.c │ │ │ ├── vil22.c │ │ │ ├── vil23.c │ │ │ ├── vil24.c │ │ │ ├── vil25.c │ │ │ ├── vil26.c │ │ │ ├── vil27.c │ │ │ ├── vil28.c │ │ │ ├── vil29.c │ │ │ ├── vil3.c │ │ │ ├── vil30.c │ │ │ ├── vil31.c │ │ │ ├── vil32.c │ │ │ ├── vil33.c │ │ │ ├── vil34.c │ │ │ ├── vil35.c │ │ │ ├── vil36.c │ │ │ ├── vil37.c │ │ │ ├── vil38.c │ │ │ ├── vil39.c │ │ │ ├── vil4.c │ │ │ ├── vil40.c │ │ │ ├── vil41.c │ │ │ ├── vil42.c │ │ │ ├── vil43.c │ │ │ ├── vil44.c │ │ │ ├── vil45.c │ │ │ ├── vil46.c │ │ │ ├── vil47.c │ │ │ ├── vil48.c │ │ │ ├── vil49.c │ │ │ ├── vil5.c │ │ │ ├── vil50.c │ │ │ ├── vil51.c │ │ │ ├── vil52.c │ │ │ ├── vil53.c │ │ │ ├── vil54.c │ │ │ ├── vil55.c │ │ │ ├── vil56.c │ │ │ ├── vil57.c │ │ │ ├── vil58.c │ │ │ ├── vil59.c │ │ │ ├── vil6.c │ │ │ ├── vil60.c │ │ │ ├── vil61.c │ │ │ ├── vil62.c │ │ │ ├── vil63.c │ │ │ ├── vil64.c │ │ │ ├── vil65.c │ │ │ ├── vil66.c │ │ │ ├── vil67.c │ │ │ ├── vil68.c │ │ │ ├── vil69.c │ │ │ ├── vil7.c │ │ │ ├── vil70.c │ │ │ ├── vil71.c │ │ │ ├── vil72.c │ │ │ ├── vil73.c │ │ │ ├── vil74.c │ │ │ ├── vil75.c │ │ │ ├── vil76.c │ │ │ ├── vil77.c │ │ │ ├── vil78.c │ │ │ ├── vil79.c │ │ │ ├── vil8.c │ │ │ ├── vil80.c │ │ │ ├── vil81.c │ │ │ ├── vil82.c │ │ │ ├── vil83.c │ │ │ ├── vil84.c │ │ │ ├── vil85.c │ │ │ ├── vil86.c │ │ │ ├── vil87.c │ │ │ ├── vil88.c │ │ │ ├── vil89.c │ │ │ ├── vil9.c │ │ │ └── well.c │ └── volcania │ │ ├── jungle │ │ ├── jungle1.c │ │ ├── jungle10.c │ │ ├── jungle11.c │ │ ├── jungle12.c │ │ ├── jungle13.c │ │ ├── jungle14.c │ │ ├── jungle15.c │ │ ├── jungle16.c │ │ ├── jungle2.c │ │ ├── jungle3.c │ │ ├── jungle4.c │ │ ├── jungle5.c │ │ ├── jungle6.c │ │ ├── jungle7.c │ │ ├── jungle8.c │ │ └── jungle9.c │ │ ├── jungleRoom.c │ │ ├── volcania.h │ │ └── volcanoRoom.c ├── khalian │ └── stresa │ │ ├── cicatrice │ │ ├── room1.c │ │ ├── room10.c │ │ ├── room100.c │ │ ├── room101.c │ │ ├── room102.c │ │ ├── room103.c │ │ ├── room104.c │ │ ├── room105.c │ │ ├── room106.c │ │ ├── room107.c │ │ ├── room108.c │ │ ├── room109.c │ │ ├── room11.c │ │ ├── room110.c │ │ ├── room111.c │ │ ├── room112.c │ │ ├── room113.c │ │ ├── room114.c │ │ ├── room115.c │ │ ├── room116.c │ │ ├── room117.c │ │ ├── room118.c │ │ ├── room119.c │ │ ├── room12.c │ │ ├── room120.c │ │ ├── room121.c │ │ ├── room122.c │ │ ├── room123.c │ │ ├── room124.c │ │ ├── room125.c │ │ ├── room126.c │ │ ├── room127.c │ │ ├── room128.c │ │ ├── room129.c │ │ ├── room13.c │ │ ├── room130.c │ │ ├── room131.c │ │ ├── room132.c │ │ ├── room133.c │ │ ├── room134.c │ │ ├── room14.c │ │ ├── room15.c │ │ ├── room16.c │ │ ├── room17.c │ │ ├── room18.c │ │ ├── room19.c │ │ ├── room2.c │ │ ├── room20.c │ │ ├── room21.c │ │ ├── room22.c │ │ ├── room23.c │ │ ├── room24.c │ │ ├── room25.c │ │ ├── room26.c │ │ ├── room27.c │ │ ├── room28.c │ │ ├── room29.c │ │ ├── room3.c │ │ ├── room30.c │ │ ├── room31.c │ │ ├── room32.c │ │ ├── room33.c │ │ ├── room34.c │ │ ├── room35.c │ │ ├── room36.c │ │ ├── room37.c │ │ ├── room38.c │ │ ├── room39.c │ │ ├── room4.c │ │ ├── room40.c │ │ ├── room41.c │ │ ├── room42.c │ │ ├── room43.c │ │ ├── room44.c │ │ ├── room45.c │ │ ├── room46.c │ │ ├── room47.c │ │ ├── room48.c │ │ ├── room49.c │ │ ├── room5.c │ │ ├── room50.c │ │ ├── room51.c │ │ ├── room52.c │ │ ├── room53.c │ │ ├── room54.c │ │ ├── room55.c │ │ ├── room56.c │ │ ├── room57.c │ │ ├── room58.c │ │ ├── room59.c │ │ ├── room6.c │ │ ├── room60.c │ │ ├── room61.c │ │ ├── room62.c │ │ ├── room63.c │ │ ├── room64.c │ │ ├── room65.c │ │ ├── room66.c │ │ ├── room67.c │ │ ├── room68.c │ │ ├── room69.c │ │ ├── room7.c │ │ ├── room70.c │ │ ├── room71.c │ │ ├── room72.c │ │ ├── room73.c │ │ ├── room74.c │ │ ├── room75.c │ │ ├── room76.c │ │ ├── room77.c │ │ ├── room78.c │ │ ├── room79.c │ │ ├── room8.c │ │ ├── room80.c │ │ ├── room81.c │ │ ├── room82.c │ │ ├── room83.c │ │ ├── room84.c │ │ ├── room85.c │ │ ├── room86.c │ │ ├── room87.c │ │ ├── room88.c │ │ ├── room89.c │ │ ├── room9.c │ │ ├── room90.c │ │ ├── room91.c │ │ ├── room92.c │ │ ├── room93.c │ │ ├── room94.c │ │ ├── room95.c │ │ ├── room96.c │ │ ├── room97.c │ │ ├── room98.c │ │ └── room99.c │ │ └── mon │ │ ├── g_tick.c │ │ └── lammasu.c ├── koenig │ ├── armor │ │ ├── acheck.log │ │ ├── buckler.c │ │ ├── chain.c │ │ ├── coif.c │ │ ├── helm.c │ │ ├── hide.c │ │ ├── leather.c │ │ ├── mshield.c │ │ ├── plate.c │ │ ├── protring.c │ │ ├── ring.c │ │ ├── robe.c │ │ ├── scale.c │ │ ├── shield.c │ │ ├── sshield.c │ │ └── studded.c │ ├── cave1.c │ ├── caves │ │ ├── caves1.c │ │ ├── caves10.c │ │ ├── caves2.c │ │ ├── caves3.c │ │ ├── caves4.c │ │ ├── caves5.c │ │ ├── caves6.c │ │ ├── caves7.c │ │ └── caves8.c │ ├── fields │ │ ├── arm │ │ │ ├── kobold_clothes.c │ │ │ └── mhelm.c │ │ ├── fields_inherit.c │ │ ├── mon │ │ │ ├── bunny.c │ │ │ ├── dagger.c │ │ │ ├── giant_fly.c │ │ │ ├── insect.c │ │ │ ├── kobold.c │ │ │ ├── large_rat.c │ │ │ ├── medium_rat.c │ │ │ ├── mlong_sword.c │ │ │ ├── mouse.c │ │ │ ├── small_rat.c │ │ │ ├── sword.c │ │ │ └── two_sword.c │ │ ├── room │ │ │ ├── field1.c │ │ │ ├── field10.c │ │ │ ├── field11.c │ │ │ ├── field12.c │ │ │ ├── field13.c │ │ │ ├── field14.c │ │ │ ├── field15.c │ │ │ ├── field16.c │ │ │ ├── field17.c │ │ │ ├── field18.c │ │ │ ├── field19.c │ │ │ ├── field2.c │ │ │ ├── field20.c │ │ │ ├── field3.c │ │ │ ├── field4.c │ │ │ ├── field5.c │ │ │ ├── field6.c │ │ │ ├── field7.c │ │ │ ├── field8.c │ │ │ ├── field9.c │ │ │ ├── house1.c │ │ │ ├── house2.c │ │ │ ├── house3.c │ │ │ └── house4.c │ │ └── weap │ │ │ ├── mlong_sword.c │ │ │ ├── sword.c │ │ │ └── two_sword.c │ ├── hideout │ │ ├── room1.c │ │ ├── room10.c │ │ ├── room11.c │ │ ├── room12.c │ │ ├── room13.c │ │ ├── room14.c │ │ ├── room15.c │ │ ├── room16.c │ │ ├── room17.c │ │ ├── room18.c │ │ ├── room19.c │ │ ├── room2.c │ │ ├── room20.c │ │ ├── room3.c │ │ ├── room4.c │ │ ├── room5.c │ │ ├── room6.c │ │ ├── room7.c │ │ ├── room8.c │ │ └── room9.c │ ├── inherit │ │ ├── caves.c │ │ ├── caves2.c │ │ ├── k_road.c │ │ ├── path.c │ │ ├── trail.c │ │ └── village_road.c │ ├── kai.h │ ├── koenig.h │ ├── mon │ │ ├── alonso.c │ │ ├── bat.c │ │ ├── giantbat.c │ │ ├── goblin.c │ │ ├── goblincaptain.c │ │ ├── hobgoblin.c │ │ ├── hobgoblincaptain.c │ │ ├── k_goblin.c │ │ ├── kobold.c │ │ ├── kobold1.c │ │ ├── koboldcaptain.c │ │ ├── lizard.c │ │ ├── melnmarn.h │ │ ├── newt.c │ │ ├── ogremage.c │ │ ├── ogrew.c │ │ ├── orc.c │ │ ├── orcadept.c │ │ ├── orcarcher.c │ │ ├── orccaptain.c │ │ ├── orcguard.c │ │ ├── orcmage.c │ │ ├── orcofficer.c │ │ ├── rat.c │ │ ├── rattlesnake.c │ │ ├── salamander.c │ │ ├── skeleton.c │ │ ├── tolo.c │ │ ├── water_elem.c │ │ └── zombie.c │ ├── nereid.h │ ├── obj │ │ ├── entrails.c │ │ ├── koenig_gem.c │ │ ├── newteye.c │ │ ├── salabelt.c │ │ ├── salafood.c │ │ ├── signpost.c │ │ ├── water_earrings.c │ │ └── yellowrobe.c │ ├── riddle │ │ ├── inherits │ │ │ ├── anger_dark.c │ │ │ ├── anger_detect.c │ │ │ ├── anger_light.c │ │ │ ├── boots_inherit.c │ │ │ ├── bow_inherit.c │ │ │ ├── calm_detect.c │ │ │ ├── calm_light.c │ │ │ ├── hat_inherit.c │ │ │ ├── hide_inherit.c │ │ │ ├── lance_inherit.c │ │ │ ├── mage_robes.c │ │ │ ├── new_hat_inherit.c │ │ │ ├── rally_dark.c │ │ │ ├── rally_detect.c │ │ │ ├── rally_light.c │ │ │ ├── shield_inherit.c │ │ │ ├── weapon_inherit.c │ │ │ └── wood_inherit.c │ │ ├── nereid.c │ │ ├── rewards │ │ │ ├── b_bard.c │ │ │ ├── bard_akadi.c │ │ │ ├── bard_anhur.c │ │ │ ├── bard_auppenser.c │ │ │ ├── bard_auril.c │ │ │ ├── bard_bane.c │ │ │ ├── bard_beshaba.c │ │ │ ├── bard_cyric.c │ │ │ ├── bard_eldath.c │ │ │ ├── bard_grumbar.c │ │ │ ├── bard_helm.c │ │ │ ├── bard_istishia.c │ │ │ ├── bard_kelemvor.c │ │ │ ├── bard_kossuth.c │ │ │ ├── bard_lathander.c │ │ │ ├── bard_loviatar.c │ │ │ ├── bard_malar.c │ │ │ ├── bard_mask.c │ │ │ ├── bard_mielikki.c │ │ │ ├── bard_mystra.c │ │ │ ├── bard_oghma.c │ │ │ ├── bard_selune.c │ │ │ ├── bard_shar.c │ │ │ ├── bard_shaundakul.c │ │ │ ├── bard_silvanus.c │ │ │ ├── bard_sune.c │ │ │ ├── bard_talos.c │ │ │ ├── bard_tempus.c │ │ │ ├── bard_torm.c │ │ │ ├── bard_tymora.c │ │ │ ├── bard_tyr.c │ │ │ ├── bard_xvim.c │ │ │ ├── c_bard.c │ │ │ ├── cav_auppenser.c │ │ │ ├── cav_auril.c │ │ │ ├── cav_bane.c │ │ │ ├── cav_default.c │ │ │ ├── cav_grumbar.c │ │ │ ├── cav_helm.c │ │ │ ├── cav_kelemvor.c │ │ │ ├── cav_kossuth.c │ │ │ ├── cav_lathander.c │ │ │ ├── cav_loviatar.c │ │ │ ├── cav_mystra.c │ │ │ ├── cav_selune.c │ │ │ ├── cav_shar.c │ │ │ ├── cav_sune.c │ │ │ ├── cav_torm.c │ │ │ ├── cav_tyr.c │ │ │ ├── cav_xvim.c │ │ │ ├── cleric_akadi.c │ │ │ ├── cleric_anhur.c │ │ │ ├── cleric_auppenser.c │ │ │ ├── cleric_auril.c │ │ │ ├── cleric_bane.c │ │ │ ├── cleric_beshaba.c │ │ │ ├── cleric_cyric.c │ │ │ ├── cleric_default.c │ │ │ ├── cleric_eldath.c │ │ │ ├── cleric_grumbar.c │ │ │ ├── cleric_helm.c │ │ │ ├── cleric_istishia.c │ │ │ ├── cleric_kelemvor.c │ │ │ ├── cleric_kossuth.c │ │ │ ├── cleric_lathander.c │ │ │ ├── cleric_loviatar.c │ │ │ ├── cleric_malar.c │ │ │ ├── cleric_mask.c │ │ │ ├── cleric_mielikki.c │ │ │ ├── cleric_mystra.c │ │ │ ├── cleric_oghma.c │ │ │ ├── cleric_selune.c │ │ │ ├── cleric_shar.c │ │ │ ├── cleric_shaundakul.c │ │ │ ├── cleric_silvanus.c │ │ │ ├── cleric_sune.c │ │ │ ├── cleric_talos.c │ │ │ ├── cleric_tempus.c │ │ │ ├── cleric_torm.c │ │ │ ├── cleric_tymora.c │ │ │ ├── cleric_tyr.c │ │ │ ├── cleric_xvim.c │ │ │ ├── druid_akadi.c │ │ │ ├── druid_auril.c │ │ │ ├── druid_default.c │ │ │ ├── druid_grumbar.c │ │ │ ├── druid_istishia.c │ │ │ ├── druid_kossuth.c │ │ │ ├── druid_malar.c │ │ │ ├── druid_mielikki.c │ │ │ ├── druid_silvanus.c │ │ │ ├── druid_talos.c │ │ │ ├── fighter_akadi.c │ │ │ ├── fighter_anhur.c │ │ │ ├── fighter_auppenser.c │ │ │ ├── fighter_auril.c │ │ │ ├── fighter_bane.c │ │ │ ├── fighter_beshaba.c │ │ │ ├── fighter_cyric.c │ │ │ ├── fighter_default.c │ │ │ ├── fighter_eldath.c │ │ │ ├── fighter_grumbar.c │ │ │ ├── fighter_helm.c │ │ │ ├── fighter_istishia.c │ │ │ ├── fighter_kelemvor.c │ │ │ ├── fighter_kossuth.c │ │ │ ├── fighter_lathander.c │ │ │ ├── fighter_loviatar.c │ │ │ ├── fighter_malar.c │ │ │ ├── fighter_mask.c │ │ │ ├── fighter_mielikki.c │ │ │ ├── fighter_mystra.c │ │ │ ├── fighter_oghma.c │ │ │ ├── fighter_selune.c │ │ │ ├── fighter_shar.c │ │ │ ├── fighter_shaundakul.c │ │ │ ├── fighter_silvanus.c │ │ │ ├── fighter_sune.c │ │ │ ├── fighter_talos.c │ │ │ ├── fighter_tempus.c │ │ │ ├── fighter_torm.c │ │ │ ├── fighter_tymora.c │ │ │ ├── fighter_tyr.c │ │ │ ├── fighter_xvim.c │ │ │ ├── mage_akadi.c │ │ │ ├── mage_anhur.c │ │ │ ├── mage_auppenser.c │ │ │ ├── mage_auril.c │ │ │ ├── mage_bane.c │ │ │ ├── mage_beshaba.c │ │ │ ├── mage_cyric.c │ │ │ ├── mage_default.c │ │ │ ├── mage_eldath.c │ │ │ ├── mage_grumbar.c │ │ │ ├── mage_helm.c │ │ │ ├── mage_istishia.c │ │ │ ├── mage_kelemvor.c │ │ │ ├── mage_kossuth.c │ │ │ ├── mage_lathander.c │ │ │ ├── mage_loviatar.c │ │ │ ├── mage_malar.c │ │ │ ├── mage_mask.c │ │ │ ├── mage_mielikki.c │ │ │ ├── mage_mystra.c │ │ │ ├── mage_oghma.c │ │ │ ├── mage_selune.c │ │ │ ├── mage_shar.c │ │ │ ├── mage_shaundakul.c │ │ │ ├── mage_silvanus.c │ │ │ ├── mage_sune.c │ │ │ ├── mage_talos.c │ │ │ ├── mage_tempus.c │ │ │ ├── mage_torm.c │ │ │ ├── mage_tymora.c │ │ │ ├── mage_tyr.c │ │ │ ├── mage_xvim.c │ │ │ ├── ranger_akadi.c │ │ │ ├── ranger_anhur.c │ │ │ ├── ranger_auppenser.c │ │ │ ├── ranger_auril.c │ │ │ ├── ranger_bane.c │ │ │ ├── ranger_beshaba.c │ │ │ ├── ranger_cyric.c │ │ │ ├── ranger_default.c │ │ │ ├── ranger_eldath.c │ │ │ ├── ranger_grumbar.c │ │ │ ├── ranger_helm.c │ │ │ ├── ranger_istishia.c │ │ │ ├── ranger_kelemvor.c │ │ │ ├── ranger_kossuth.c │ │ │ ├── ranger_lathander.c │ │ │ ├── ranger_loviatar.c │ │ │ ├── ranger_malar.c │ │ │ ├── ranger_mask.c │ │ │ ├── ranger_mielikki.c │ │ │ ├── ranger_mystra.c │ │ │ ├── ranger_oghma.c │ │ │ ├── ranger_selune.c │ │ │ ├── ranger_shar.c │ │ │ ├── ranger_shaundakul.c │ │ │ ├── ranger_sune.c │ │ │ ├── ranger_talos.c │ │ │ ├── ranger_tempus.c │ │ │ ├── ranger_torm.c │ │ │ ├── ranger_tymora.c │ │ │ ├── ranger_tyr.c │ │ │ ├── thief_akadi.c │ │ │ ├── thief_anhur.c │ │ │ ├── thief_auppenser.c │ │ │ ├── thief_auril.c │ │ │ ├── thief_bane.c │ │ │ ├── thief_beshaba.c │ │ │ ├── thief_cyric.c │ │ │ ├── thief_default.c │ │ │ ├── thief_eldath.c │ │ │ ├── thief_grumbar.c │ │ │ ├── thief_helm.c │ │ │ ├── thief_istishia.c │ │ │ ├── thief_kelemvor.c │ │ │ ├── thief_kossuth.c │ │ │ ├── thief_lathander.c │ │ │ ├── thief_loviatar.c │ │ │ ├── thief_malar.c │ │ │ ├── thief_mask.c │ │ │ ├── thief_mielikki.c │ │ │ ├── thief_mystra.c │ │ │ ├── thief_oghma.c │ │ │ ├── thief_selune.c │ │ │ ├── thief_shar.c │ │ │ ├── thief_shaundakul.c │ │ │ ├── thief_silvanus.c │ │ │ ├── thief_sune.c │ │ │ ├── thief_talos.c │ │ │ ├── thief_tempus.c │ │ │ ├── thief_torm.c │ │ │ ├── thief_tymora.c │ │ │ ├── thief_tyr.c │ │ │ └── thief_xvim.c │ │ ├── riddle_quest.c │ │ └── water_weird.c │ ├── road │ │ ├── grizrm.c │ │ ├── mon │ │ │ ├── banshee1.c │ │ │ ├── fwolf.c │ │ │ ├── grizzly1.c │ │ │ └── wolf.c │ │ ├── room1.c │ │ ├── room2.c │ │ ├── room3.c │ │ ├── room4.c │ │ ├── room5.c │ │ └── wolfrm.c │ ├── streams │ │ ├── camp1.c │ │ ├── camp2.c │ │ ├── cr1.c │ │ ├── cr11.c │ │ ├── cr2.c │ │ ├── cr3.c │ │ ├── cr4.c │ │ ├── cr5.c │ │ ├── cr6.c │ │ ├── cr7.c │ │ ├── cr8.c │ │ ├── ford.c │ │ ├── grotto1.c │ │ ├── grotto2.c │ │ ├── path1.c │ │ ├── path10.c │ │ ├── path11.c │ │ ├── path12.c │ │ ├── path13.c │ │ ├── path14.c │ │ ├── path15.c │ │ ├── path16.c │ │ ├── path17.c │ │ ├── path18.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── path4.c │ │ ├── path5.c │ │ ├── path6.c │ │ ├── path7.c │ │ ├── path8.c │ │ ├── path9.c │ │ ├── sr1.c │ │ ├── stream01.c │ │ ├── stream02.c │ │ ├── stream03.c │ │ ├── stream04.c │ │ ├── stream05.c │ │ ├── stream06.c │ │ ├── stream07.c │ │ ├── stream08.c │ │ ├── stream09.c │ │ ├── stream10.c │ │ ├── stream11.c │ │ ├── stream12.c │ │ ├── stream13.c │ │ ├── stream14.c │ │ ├── stream15.c │ │ ├── stream16.c │ │ ├── stream17.c │ │ ├── stream18.c │ │ ├── stream19.c │ │ ├── stream20.c │ │ ├── stream21.c │ │ ├── stream22.c │ │ ├── stream23.c │ │ ├── stream24.c │ │ ├── stream25.c │ │ ├── tr1.c │ │ ├── trail1.c │ │ ├── trail2.c │ │ ├── trail3.c │ │ ├── trail4.c │ │ ├── trail5.c │ │ ├── trail6.c │ │ ├── trail7.c │ │ └── trail8.c │ ├── town │ │ ├── bar1.c │ │ ├── board1.c │ │ ├── board2.c │ │ ├── closet.c │ │ ├── crypt.h │ │ ├── crypt1.c │ │ ├── crypt10.c │ │ ├── crypt11.c │ │ ├── crypt12.c │ │ ├── crypt13.c │ │ ├── crypt14.c │ │ ├── crypt15.c │ │ ├── crypt16.c │ │ ├── crypt17.c │ │ ├── crypt18.c │ │ ├── crypt2.c │ │ ├── crypt3.c │ │ ├── crypt4.c │ │ ├── crypt5.c │ │ ├── crypt6.c │ │ ├── crypt7.c │ │ ├── crypt8.c │ │ ├── crypt9.c │ │ ├── dungeon1.c │ │ ├── dungeon2.c │ │ ├── dungeon3.c │ │ ├── dungeon4.c │ │ ├── fall1.c │ │ ├── fall2.c │ │ ├── fall3.c │ │ ├── general1.c │ │ ├── grave1.c │ │ ├── gs_storage.c │ │ ├── herb_storage.c │ │ ├── herbshop1.c │ │ ├── house1.c │ │ ├── house10.c │ │ ├── house2.c │ │ ├── house3.c │ │ ├── house4.c │ │ ├── house5.c │ │ ├── house6.c │ │ ├── house7.c │ │ ├── house8.c │ │ ├── house9.c │ │ ├── items │ │ │ ├── boulder.c │ │ │ ├── boy.c │ │ │ ├── bushchest.c │ │ │ ├── chair.c │ │ │ ├── chest.c │ │ │ ├── cloak_p2.c │ │ │ ├── coif.c │ │ │ ├── cryptkey.c │ │ │ ├── cryptkey2.c │ │ │ ├── cure.c │ │ │ ├── deatharmor.c │ │ │ ├── dungeonkey.c │ │ │ ├── dust.c │ │ │ ├── figure1.c │ │ │ ├── goldkey.c │ │ │ ├── goldpouch.c │ │ │ ├── heal1.c │ │ │ ├── heal2.c │ │ │ ├── healing.c │ │ │ ├── jadespider.c │ │ │ ├── jewelbx1.c │ │ │ ├── jewelbx2.c │ │ │ ├── ldeatharmor.c │ │ │ ├── leatherpack.c │ │ │ ├── leatherpouch.c │ │ │ ├── mirror.c │ │ │ ├── organ.c │ │ │ ├── paper1.c │ │ │ ├── paper2.c │ │ │ ├── paper3.c │ │ │ ├── paper4.c │ │ │ ├── pedastal1.c │ │ │ ├── poolchest.c │ │ │ ├── raging_heal.c │ │ │ ├── rug.c │ │ │ ├── spbox.c │ │ │ ├── tapchest.c │ │ │ └── twrchest.c │ │ ├── kitchen1.c │ │ ├── kitchen2.c │ │ ├── kitchen3.c │ │ ├── kitchen4.c │ │ ├── maiden.c │ │ ├── mon │ │ │ ├── asscook.c │ │ │ ├── asstocook.c │ │ │ ├── asstocook1.c │ │ │ ├── assunder1.c │ │ │ ├── assunder2.c │ │ │ ├── atbloodrose.c │ │ │ ├── bhut.c │ │ │ ├── bhutmstolo.c │ │ │ ├── bhuttolo.c │ │ │ ├── blkbloodrose.c │ │ │ ├── bloodrose.c │ │ │ ├── bugsy.c │ │ │ ├── butler.c │ │ │ ├── concubine.c │ │ │ ├── cryptkeeper.c │ │ │ ├── crysmon1.c │ │ │ ├── deathknight.c │ │ │ ├── decapus.c │ │ │ ├── donner.c │ │ │ ├── dragonfish.c │ │ │ ├── drunk.c │ │ │ ├── drunk2.c │ │ │ ├── fbhut.c │ │ │ ├── fpiranhabird.c │ │ │ ├── gatekeeper1.c │ │ │ ├── gatekeeper2.c │ │ │ ├── gentleman.c │ │ │ ├── geonid.c │ │ │ ├── girl2.c │ │ │ ├── gith1.c │ │ │ ├── gremishka.c │ │ │ ├── gremishko.c │ │ │ ├── gskeleton1.c │ │ │ ├── guard1.c │ │ │ ├── guard2.c │ │ │ ├── headcook.c │ │ │ ├── hyena.c │ │ │ ├── hyena1.c │ │ │ ├── hyena2.c │ │ │ ├── knight.c │ │ │ ├── magglerak.c │ │ │ ├── maid.c │ │ │ ├── maiden.c │ │ │ ├── mansnake.c │ │ │ ├── mstolo.c │ │ │ ├── mystra.c │ │ │ ├── mystra2.c │ │ │ ├── ogreguard.c │ │ │ ├── peasant.c │ │ │ ├── piranhabird.c │ │ │ ├── pkbloodrose.c │ │ │ ├── redbloodrose.c │ │ │ ├── scarlet.c │ │ │ ├── scarlet2.c │ │ │ ├── skelcat.c │ │ │ ├── skeleton1.c │ │ │ ├── skeleton2.c │ │ │ ├── skeleton3.c │ │ │ ├── skeleton4.c │ │ │ ├── skelhound.c │ │ │ ├── slacker.c │ │ │ ├── spectre.c │ │ │ ├── spider.c │ │ │ ├── tanner.c │ │ │ ├── thess.c │ │ │ ├── tolo.c │ │ │ ├── toodles.c │ │ │ ├── topi.c │ │ │ ├── unicorn.c │ │ │ ├── vexia.c │ │ │ ├── weapons │ │ │ │ ├── bonedagger.c │ │ │ │ ├── bonelong.c │ │ │ │ ├── bonesword.c │ │ │ │ ├── butknife.c │ │ │ │ ├── carvknife.c │ │ │ │ ├── claws1.c │ │ │ │ ├── claws2.c │ │ │ │ ├── claymore.c │ │ │ │ ├── claymore2.c │ │ │ │ ├── darksword.c │ │ │ │ ├── darksword0.c │ │ │ │ ├── deathdagger.c │ │ │ │ ├── deathsword.c │ │ │ │ ├── deathsword0.c │ │ │ │ ├── fangs1.c │ │ │ │ ├── fangs2.c │ │ │ │ ├── giantclub.c │ │ │ │ ├── hooks1.c │ │ │ │ ├── horn.c │ │ │ │ ├── jaws1.c │ │ │ │ ├── kitknife.c │ │ │ │ ├── pclaws1.c │ │ │ │ ├── pclaws2.c │ │ │ │ ├── rattle.c │ │ │ │ ├── spear.c │ │ │ │ ├── starbone1.c │ │ │ │ ├── stinger.c │ │ │ │ └── waraxe.c │ │ │ ├── welemental.c │ │ │ ├── whbloodrose.c │ │ │ ├── wonder.c │ │ │ ├── ywbloodrose.c │ │ │ └── zombie.c │ │ ├── mounts │ │ │ ├── draft1.c │ │ │ ├── heavy1.c │ │ │ ├── horse1.c │ │ │ ├── light1.c │ │ │ ├── medium1.c │ │ │ ├── pony1.c │ │ │ └── steppe1.c │ │ ├── obj │ │ │ └── fishspike.c │ │ ├── os1.c │ │ ├── os10.c │ │ ├── os11.c │ │ ├── os12.c │ │ ├── os13.c │ │ ├── os14.c │ │ ├── os2.c │ │ ├── os3.c │ │ ├── os4.c │ │ ├── os5.c │ │ ├── os6.c │ │ ├── os7.c │ │ ├── os8.c │ │ ├── os9.c │ │ ├── pantry.c │ │ ├── pantry1.c │ │ ├── pool1.c │ │ ├── pool2.c │ │ ├── pool3.c │ │ ├── pool4.c │ │ ├── private.c │ │ ├── rest1.c │ │ ├── room1.c │ │ ├── room11.c │ │ ├── room12.c │ │ ├── room3.c │ │ ├── room4.c │ │ ├── room5.c │ │ ├── room6.c │ │ ├── room7.c │ │ ├── room8.c │ │ ├── sister.c │ │ ├── snakeman.c │ │ ├── stable1.c │ │ ├── stable2.c │ │ ├── store2.c │ │ ├── tapestry3.c │ │ ├── testcrypt1.c │ │ ├── testcrypt10.c │ │ ├── tower1.c │ │ ├── tower10.c │ │ ├── tower11.c │ │ ├── tower12.c │ │ ├── tower13.c │ │ ├── tower14.c │ │ ├── tower15.c │ │ ├── tower16.c │ │ ├── tower17.c │ │ ├── tower18.c │ │ ├── tower19.c │ │ ├── tower2.c │ │ ├── tower20.c │ │ ├── tower21.c │ │ ├── tower22.c │ │ ├── tower23.c │ │ ├── tower24.c │ │ ├── tower25.c │ │ ├── tower26.c │ │ ├── tower27.c │ │ ├── tower28.c │ │ ├── tower29.c │ │ ├── tower3.c │ │ ├── tower30.c │ │ ├── tower31.c │ │ ├── tower32.c │ │ ├── tower33.c │ │ ├── tower34.c │ │ ├── tower4.c │ │ ├── tower5.c │ │ ├── tower6.c │ │ ├── tower7.c │ │ ├── tower8.c │ │ ├── tower9.c │ │ ├── tunnel1.c │ │ ├── tunnel2.c │ │ ├── tunnel3.c │ │ ├── tunnel4.c │ │ ├── tunnel5.c │ │ ├── unicorn.c │ │ └── wp_ac_storage.c │ ├── village │ │ ├── apothecary.c │ │ ├── dusty1.c │ │ ├── dusty2.c │ │ ├── dusty3.c │ │ ├── dusty4.c │ │ ├── dusty5.c │ │ ├── dusty6.c │ │ ├── dusty7.c │ │ ├── genstore.c │ │ ├── house1.c │ │ ├── house2.c │ │ ├── k_road01.c │ │ ├── k_road02.c │ │ ├── k_road03.c │ │ ├── k_road04.c │ │ ├── k_road05.c │ │ ├── k_road06.c │ │ ├── k_road07.c │ │ ├── k_road08.c │ │ ├── k_road09.c │ │ ├── k_road10.c │ │ ├── k_road11.c │ │ ├── kai.h │ │ ├── ruins1.c │ │ └── ruins2.c │ └── weapon │ │ ├── broad.c │ │ ├── club.c │ │ ├── dagger.c │ │ ├── flail.c │ │ ├── halberd.c │ │ ├── knife.c │ │ ├── longsword.c │ │ ├── morningstar.c │ │ ├── pick.c │ │ ├── quarter_staff.c │ │ ├── rsword.c │ │ ├── shortsword.c │ │ ├── tdagger.c │ │ ├── two_sword.c │ │ └── warhammer.c ├── kravor │ ├── arm │ │ ├── rhelm.c │ │ └── rplate.c │ ├── kravor.h │ ├── mon │ │ ├── dguard1.c │ │ ├── kravor.h │ │ └── temp.c │ ├── room │ │ ├── barracks.c │ │ ├── bhall.c │ │ ├── entrance.c │ │ ├── keep1.c │ │ ├── keep2.c │ │ ├── keep3.c │ │ ├── keep4.c │ │ ├── keep5.c │ │ ├── keep6.c │ │ ├── keep7.c │ │ ├── keep8.c │ │ ├── keep9.c │ │ ├── kkitch.c │ │ ├── kmap.txt │ │ ├── kravor.h │ │ ├── stable.c │ │ ├── temp.c │ │ └── troom.c │ └── weap │ │ └── lsword.c ├── laerad │ ├── ISLAND │ ├── NewMap │ ├── asgard.c │ ├── asgard_keep │ │ ├── rooms │ │ │ ├── hallway1.c │ │ │ ├── hallway2.c │ │ │ └── tailor.c │ │ └── storage │ │ │ └── hallway.c │ ├── bugreports.c │ ├── cavern1 │ │ ├── cav001.c │ │ ├── cav002.c │ │ ├── cav003.c │ │ ├── cav004.c │ │ ├── cav005.c │ │ ├── cav006.c │ │ ├── cav007.c │ │ ├── cav008.c │ │ ├── cav009.c │ │ ├── cav010.c │ │ ├── cav011.c │ │ ├── cav012.c │ │ ├── cav013.c │ │ ├── cav014.c │ │ ├── cav015.c │ │ ├── cav016.c │ │ ├── cav017.c │ │ ├── cav018.c │ │ ├── cav019.c │ │ ├── cav020.c │ │ ├── cav021.c │ │ ├── cav022.c │ │ ├── cav023.c │ │ ├── cav024.c │ │ ├── cav025.c │ │ ├── cav026.c │ │ ├── cav027.c │ │ ├── cav028.c │ │ ├── cav029.c │ │ ├── cav030.c │ │ ├── cav031.c │ │ ├── cav032.c │ │ ├── cav033.c │ │ ├── cav034.c │ │ ├── cav035.c │ │ ├── cav036.c │ │ ├── cav037.c │ │ ├── cav038.c │ │ ├── cav039.c │ │ ├── cav040.c │ │ ├── cav041.c │ │ ├── cav042.c │ │ ├── cav043.c │ │ ├── cav044.c │ │ ├── cav045.c │ │ ├── cav046.c │ │ ├── cav047.c │ │ ├── cav048.c │ │ ├── cav049.c │ │ ├── cav050.c │ │ ├── cav051.c │ │ ├── cav052.c │ │ ├── cav053.c │ │ ├── cav054.c │ │ ├── cav055.c │ │ ├── cav056.c │ │ ├── cav057.c │ │ ├── cav058.c │ │ ├── cav059.c │ │ ├── cav060.c │ │ ├── cav061.c │ │ ├── cav062.c │ │ ├── cav063.c │ │ ├── cav064.c │ │ ├── cav065.c │ │ ├── cav066.c │ │ ├── cav067.c │ │ ├── cav068.c │ │ ├── cav069.c │ │ ├── cav070.c │ │ ├── cav071.c │ │ ├── cav072.c │ │ ├── cav073.c │ │ ├── cav074.c │ │ ├── cav075.c │ │ ├── cav076.c │ │ ├── cav077.c │ │ ├── cav078.c │ │ ├── cav079.c │ │ ├── cav080.c │ │ ├── cav081.c │ │ ├── cav082.c │ │ ├── cav083.c │ │ ├── cav084.c │ │ ├── cav085.c │ │ ├── cav086.c │ │ ├── cav087.c │ │ ├── cav088.c │ │ ├── cav089.c │ │ ├── cav090.c │ │ ├── cav091.c │ │ ├── cav092.c │ │ ├── cav093.c │ │ ├── cav094.c │ │ ├── cav095.c │ │ ├── cav096.c │ │ ├── cav097.c │ │ ├── cav098.c │ │ ├── cav099.c │ │ ├── cav100.c │ │ ├── cav101.c │ │ ├── cav102.c │ │ ├── cav103.c │ │ ├── cav104.c │ │ ├── cav105.c │ │ ├── cav106.c │ │ ├── cav107.c │ │ ├── cav108.c │ │ ├── cav109.c │ │ ├── cav110.c │ │ ├── cav111.c │ │ ├── cav112.c │ │ ├── cav113.c │ │ ├── cav114.c │ │ ├── cav115.c │ │ ├── cav116.c │ │ ├── cav117.c │ │ ├── cav118.c │ │ ├── cav119.c │ │ ├── cav120.c │ │ ├── cav121.c │ │ ├── cav122.c │ │ ├── cav123.c │ │ ├── cav124.c │ │ ├── cav125.c │ │ ├── cav126.c │ │ ├── cav127.c │ │ ├── cav128.c │ │ ├── cav129.c │ │ ├── cave.c │ │ └── special │ │ │ ├── cavern.c │ │ │ ├── croom_cavern.c │ │ │ └── note.c │ ├── cavern2 │ │ ├── cav01.c │ │ ├── cav02.c │ │ ├── cav03.c │ │ ├── cav04.c │ │ ├── cav05.c │ │ ├── cav06.c │ │ ├── cav07.c │ │ ├── cav08.c │ │ ├── cav09.c │ │ ├── cav10.c │ │ ├── cav11.c │ │ ├── cav12.c │ │ ├── cav13.c │ │ ├── cav14.c │ │ ├── cav15.c │ │ ├── cav16.c │ │ ├── cav17.c │ │ ├── cav18.c │ │ ├── cav19.c │ │ ├── cav20.c │ │ ├── cav21.c │ │ ├── cav22.c │ │ ├── cav23.c │ │ ├── cav24.c │ │ ├── cav25.c │ │ ├── cav26.c │ │ ├── cav27.c │ │ ├── cav28.c │ │ ├── cav29.c │ │ ├── cav30.c │ │ ├── cav31.c │ │ ├── cav32.c │ │ ├── cav33.c │ │ ├── cav34.c │ │ ├── cav35.c │ │ ├── cav36.c │ │ ├── cav37.c │ │ ├── cav38.c │ │ ├── cav39.c │ │ ├── cav40.c │ │ ├── cav41.c │ │ ├── lair.c │ │ └── special │ │ │ ├── cavern.c │ │ │ ├── phylactery.c │ │ │ └── tooth.c │ ├── dojo │ │ ├── dojo.h │ │ ├── mon │ │ │ ├── akasha.c │ │ │ ├── bhumi.c │ │ │ ├── jala.c │ │ │ ├── pavan.c │ │ │ ├── tattva.c │ │ │ └── tejas.c │ │ ├── obj │ │ │ ├── airtoken.c │ │ │ ├── bostaff.c │ │ │ ├── chainwhip.c │ │ │ ├── earthtoken.c │ │ │ ├── firetoken.c │ │ │ ├── gladius.c │ │ │ ├── shield.c │ │ │ ├── silenceobj.c │ │ │ ├── spellorb.c │ │ │ ├── spirittoken.c │ │ │ ├── tonfa.c │ │ │ └── watertoken.c │ │ └── rooms │ │ │ ├── centre.c │ │ │ ├── east.c │ │ │ ├── garden.c │ │ │ ├── north.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── south.c │ │ │ ├── spirit.c │ │ │ ├── stairs.c │ │ │ └── west.c │ ├── inherits │ │ └── greater_laerad.c │ ├── laerad.h │ ├── lgnolls │ │ ├── changes.txt │ │ ├── layout.txt │ │ ├── lgnoll.h │ │ ├── mobs │ │ │ ├── bloodfang.c │ │ │ ├── gnollbarb.c │ │ │ ├── gnollhunter.c │ │ │ ├── gnollpriest.c │ │ │ ├── gnollwarrior.c │ │ │ ├── golem.c │ │ │ └── wemic.c │ │ ├── obj │ │ │ ├── acid.c │ │ │ ├── asgaardshield.c │ │ │ ├── commandohammer.c │ │ │ ├── commandoplate.c │ │ │ ├── flamewhip.c │ │ │ ├── gnollbarding.c │ │ │ ├── gnollhide.c │ │ │ ├── gnollhidepaws.c │ │ │ ├── graniterobes.c │ │ │ ├── ladder.c │ │ │ ├── lantern.c │ │ │ ├── rake.c │ │ │ ├── titanbane.c │ │ │ ├── warbow.c │ │ │ └── worg_tooth.c │ │ ├── rooms │ │ │ ├── 1.c │ │ │ ├── 10.c │ │ │ ├── 11.c │ │ │ ├── 12.c │ │ │ ├── 13.c │ │ │ ├── 14.c │ │ │ ├── 15.c │ │ │ ├── 16.c │ │ │ ├── 17.c │ │ │ ├── 18.c │ │ │ ├── 19.c │ │ │ ├── 2.c │ │ │ ├── 20.c │ │ │ ├── 21.c │ │ │ ├── 22.c │ │ │ ├── 23.c │ │ │ ├── 24.c │ │ │ ├── 25.c │ │ │ ├── 26.c │ │ │ ├── 27.c │ │ │ ├── 28.c │ │ │ ├── 29.c │ │ │ ├── 3.c │ │ │ ├── 30.c │ │ │ ├── 31.c │ │ │ ├── 32.c │ │ │ ├── 33.c │ │ │ ├── 34.c │ │ │ ├── 35.c │ │ │ ├── 36.c │ │ │ ├── 37.c │ │ │ ├── 38.c │ │ │ ├── 3u.c │ │ │ ├── 4.c │ │ │ ├── 4u.c │ │ │ ├── 5.c │ │ │ ├── 6.c │ │ │ ├── 7.c │ │ │ ├── 8.c │ │ │ ├── 9.c │ │ │ ├── backyard.c │ │ │ ├── comground1.c │ │ │ ├── d1.c │ │ │ ├── d2.c │ │ │ └── hut.c │ │ └── storage │ │ │ ├── ccenter.c │ │ │ ├── common_ground.c │ │ │ └── entryt.c │ ├── loader.c │ ├── manticore.was7-03 │ ├── mon │ │ ├── anti.c │ │ ├── asgardpsicomps.c │ │ ├── assassin.c │ │ ├── backup │ │ │ ├── dragonne.c │ │ │ ├── npc.c │ │ │ └── sandling.c │ │ ├── bandit.c │ │ ├── beholder.c │ │ ├── bugbear.c │ │ ├── bugbear1.c │ │ ├── bugbear2.c │ │ ├── bulette.c │ │ ├── cactus.c │ │ ├── cdeath.c │ │ ├── chimera.c │ │ ├── cildabrin.c │ │ ├── citizen.c │ │ ├── cockatrice.c │ │ ├── commando.c │ │ ├── commando.was │ │ ├── dar.c │ │ ├── dbeetle.c │ │ ├── dreamshadow.c │ │ ├── drohch.c │ │ ├── dwolf.c │ │ ├── edrake.c │ │ ├── estal.c │ │ ├── faith_warrior.c │ │ ├── farg.c │ │ ├── fiend.c │ │ ├── fiend2.c │ │ ├── flailer.c │ │ ├── flsnail.c │ │ ├── fungus.c │ │ ├── gbear.c │ │ ├── gboar.c │ │ ├── gearth.c │ │ ├── gfeyr.c │ │ ├── ghast.c │ │ ├── guard.c │ │ ├── guard1.c │ │ ├── guard2.c │ │ ├── hangman_tree.c │ │ ├── hassimith.c │ │ ├── hook_horror.c │ │ ├── hordling.c │ │ ├── hydra10.c │ │ ├── hydra12.c │ │ ├── hydra6.c │ │ ├── hydra8.c │ │ ├── hyena.c │ │ ├── illithid.c │ │ ├── illithid2.c │ │ ├── jabbar.c │ │ ├── jaguar.c │ │ ├── junk │ │ ├── knight.c │ │ ├── lepra.c │ │ ├── leucrotta.c │ │ ├── lich.c │ │ ├── lwall.c │ │ ├── magnus.c │ │ ├── manticore.c │ │ ├── mara.c │ │ ├── natalia.c │ │ ├── neptune.c │ │ ├── obj │ │ │ ├── 2sword.c │ │ │ ├── chi_dteeth.c │ │ │ ├── chi_lteeth.c │ │ │ ├── chiclaw.c │ │ │ ├── chihorn.c │ │ │ ├── cilpincer.c │ │ │ ├── cilstinger.c │ │ │ ├── dance.c │ │ │ ├── dummy.c │ │ │ ├── dwhip.c │ │ │ ├── mantclaw.c │ │ │ ├── mantteeth.c │ │ │ ├── maraclaw.c │ │ │ ├── marateeth.c │ │ │ ├── s_stomach.c │ │ │ ├── sclaw.c │ │ │ ├── sspear.c │ │ │ ├── tcorpse.c │ │ │ ├── tcorpse1.c │ │ │ ├── tcorpsem.c │ │ │ ├── tcorpses.c │ │ │ ├── tcorpset.c │ │ │ ├── tcorpsew.c │ │ │ ├── thriclaw.c │ │ │ ├── thriteeth.c │ │ │ ├── ubclaw.c │ │ │ └── ubhorns.c │ │ ├── paladin.c │ │ ├── panther.c │ │ ├── peasant.c │ │ ├── peasant1.c │ │ ├── pixie.c │ │ ├── quickling.c │ │ ├── rguard.c │ │ ├── runner.c │ │ ├── runner2.c │ │ ├── sage.c │ │ ├── scarecrow.c │ │ ├── shambling_mound.c │ │ ├── skuz.c │ │ ├── smoon.c │ │ ├── spawn.c │ │ ├── spider.c │ │ ├── srohch.c │ │ ├── stag.c │ │ ├── tendriculos.c │ │ ├── thri_kreen.c │ │ ├── titan.c │ │ ├── tlin1.c │ │ ├── tlin2.c │ │ ├── tlin3.c │ │ ├── tlin4.c │ │ ├── tlin5.c │ │ ├── tlininherit.c │ │ ├── troll1.c │ │ ├── troll2.c │ │ ├── trollg2.c │ │ ├── trollm.c │ │ ├── trollm2.c │ │ ├── trollm3.c │ │ ├── trollp1.c │ │ ├── trolls.c │ │ ├── trollt.c │ │ ├── trollt2.c │ │ ├── trshaman.c │ │ ├── tshala.c │ │ ├── umber_hulk.c │ │ ├── undead_beast.c │ │ ├── urchin.c │ │ ├── vampill.c │ │ ├── vendor.c │ │ ├── wander │ │ │ ├── asswander.c │ │ │ ├── bbwander.c │ │ │ ├── bewander.c │ │ │ ├── bugwander.c │ │ │ ├── cwander.c │ │ │ ├── cwander.was │ │ │ ├── gwander.c │ │ │ ├── illwander.c │ │ │ ├── liwander.c │ │ │ ├── pwander.c │ │ │ ├── swwander.c │ │ │ ├── swwander2.c │ │ │ ├── tgwander.c │ │ │ ├── ttwander.c │ │ │ ├── wander.c │ │ │ ├── wander2.c │ │ │ ├── wander3.c │ │ │ └── wander4.c │ │ ├── wight.c │ │ ├── wild_gen.c │ │ ├── wisp.c │ │ ├── wolf.c │ │ ├── wolverine.c │ │ ├── wraith.c │ │ ├── wrhino.c │ │ ├── wspider.c │ │ └── ximiz.c │ ├── obj │ │ ├── alert_rod.c │ │ ├── bag.c │ │ ├── beads_f.c │ │ ├── bhelm.c │ │ ├── boots_speed.c │ │ ├── bracelet.c │ │ ├── bracers.c │ │ ├── bracers1.c │ │ ├── bracers2.c │ │ ├── bracers3.c │ │ ├── bracers4.c │ │ ├── bracers5.c │ │ ├── bracers6.c │ │ ├── bracers7.c │ │ ├── bracers8.c │ │ ├── chalice.c │ │ ├── cstaff.c │ │ ├── dlance.c │ │ ├── frostreaver.c │ │ ├── globe.c │ │ ├── globe2.c │ │ ├── glove.c │ │ ├── gythka.c │ │ ├── harness.c │ │ ├── ice_dagger.c │ │ ├── ice_dagger2.c │ │ ├── jade_short.c │ │ ├── javelin.c │ │ ├── kstatue.c │ │ ├── llance.c │ │ ├── lstealer.c │ │ ├── net.c │ │ ├── pallyplate.c │ │ ├── ragnarok.c │ │ ├── ring_invis.c │ │ ├── ring_of_detection.c │ │ ├── ring_regen.c │ │ ├── ring_stars.c │ │ ├── soul_staff.c │ │ ├── staff_of_vitality.c │ │ ├── sun_star.c │ │ ├── thri_head.c │ │ ├── tl_staff.c │ │ ├── trident.c │ │ ├── universe.c │ │ ├── universe.redo │ │ ├── wand_conj.c │ │ ├── wand_fear.c │ │ ├── wand_l.c │ │ ├── wand_para.c │ │ └── whdragonplate.c │ ├── outpost │ │ ├── mobs │ │ │ ├── anton.c │ │ │ ├── dalvin.c │ │ │ ├── gateguard.c │ │ │ ├── healer.c │ │ │ ├── outpostguard.c │ │ │ └── worker.c │ │ ├── obj │ │ │ ├── Mspear+1.c │ │ │ ├── sledgehammer.c │ │ │ ├── torm_bracers.c │ │ │ ├── torm_leather.c │ │ │ ├── torm_scalemail.c │ │ │ ├── torm_shield.c │ │ │ └── torm_sword.c │ │ ├── outpost.h │ │ ├── rooms │ │ │ ├── 1.c │ │ │ ├── 10.c │ │ │ ├── 11.c │ │ │ ├── 2.c │ │ │ ├── 3.c │ │ │ ├── 4.c │ │ │ ├── 5.c │ │ │ ├── 6.c │ │ │ ├── 7.c │ │ │ ├── 8.c │ │ │ ├── 9.c │ │ │ ├── alexandria.c │ │ │ ├── clinic.c │ │ │ └── office.c │ │ ├── storage │ │ │ ├── coastline.c │ │ │ └── road.c │ │ └── wsland.essy │ ├── parnelli │ │ ├── asgard │ │ │ ├── as01.c │ │ │ ├── as02.c │ │ │ ├── as03.c │ │ │ ├── as04.c │ │ │ ├── as05.c │ │ │ ├── as06.c │ │ │ ├── as07.c │ │ │ ├── as08.c │ │ │ ├── as09.c │ │ │ ├── as10.c │ │ │ ├── as11.c │ │ │ ├── as12.c │ │ │ ├── as13.c │ │ │ ├── as14.c │ │ │ ├── as15.c │ │ │ ├── as16.c │ │ │ ├── as17.c │ │ │ ├── as18.c │ │ │ ├── as19.c │ │ │ ├── as20.c │ │ │ ├── as21.c │ │ │ ├── as22.c │ │ │ ├── as23.c │ │ │ ├── as24.c │ │ │ ├── as25.c │ │ │ ├── as26.c │ │ │ ├── as27.c │ │ │ ├── as28.c │ │ │ ├── as29.c │ │ │ ├── as30.c │ │ │ ├── as31.c │ │ │ ├── as32.c │ │ │ ├── as33.c │ │ │ ├── as34.c │ │ │ ├── as35.c │ │ │ ├── as36.c │ │ │ ├── as37.c │ │ │ ├── as38.c │ │ │ ├── as39.c │ │ │ ├── as40.c │ │ │ ├── as41.c │ │ │ ├── as42.c │ │ │ ├── as43.c │ │ │ ├── as44.c │ │ │ ├── as45.c │ │ │ ├── as46.c │ │ │ ├── as47.c │ │ │ ├── as48.c │ │ │ ├── as49.c │ │ │ ├── as50.c │ │ │ ├── as51.c │ │ │ ├── as52.c │ │ │ ├── as53.c │ │ │ ├── as54.c │ │ │ ├── as55.c │ │ │ ├── as56.c │ │ │ ├── as57.c │ │ │ ├── as58.c │ │ │ ├── as59.c │ │ │ ├── as60.c │ │ │ ├── as61.c │ │ │ ├── as62.c │ │ │ ├── as63.c │ │ │ ├── as64.c │ │ │ ├── as65.c │ │ │ ├── as66.c │ │ │ ├── as67.c │ │ │ ├── as68.c │ │ │ ├── as69.c │ │ │ ├── as70.c │ │ │ ├── as71.c │ │ │ ├── as72.c │ │ │ ├── as73.c │ │ │ ├── as74.c │ │ │ ├── as75.c │ │ │ ├── as76.c │ │ │ ├── as77.c │ │ │ ├── as78.c │ │ │ ├── as79.c │ │ │ ├── as80.c │ │ │ ├── as81.c │ │ │ ├── as82.c │ │ │ ├── as83.c │ │ │ ├── as84.c │ │ │ ├── as85.c │ │ │ ├── as86.c │ │ │ ├── as87.c │ │ │ ├── as88.c │ │ │ ├── as89.c │ │ │ ├── as90.c │ │ │ ├── asgard.c │ │ │ ├── asgardpsicomps.c │ │ │ ├── asgardworkroom.c │ │ │ ├── castle │ │ │ │ ├── castle01.c │ │ │ │ ├── castle02.c │ │ │ │ ├── castle03.c │ │ │ │ ├── castle04.c │ │ │ │ ├── castle05.c │ │ │ │ ├── castle06.c │ │ │ │ ├── castle07.c │ │ │ │ ├── castle08.c │ │ │ │ ├── castle09.c │ │ │ │ ├── castle10.c │ │ │ │ ├── castle11.c │ │ │ │ ├── castle12.c │ │ │ │ ├── castle13.c │ │ │ │ ├── castle14.c │ │ │ │ ├── castle15.c │ │ │ │ ├── castle16.c │ │ │ │ ├── castle17.c │ │ │ │ ├── castle18.c │ │ │ │ ├── castle19.c │ │ │ │ ├── castle20.c │ │ │ │ ├── castle21.c │ │ │ │ ├── castle22.c │ │ │ │ ├── castle23.c │ │ │ │ ├── daemon │ │ │ │ │ ├── bane.h │ │ │ │ │ └── overseer.c │ │ │ │ └── guards │ │ │ │ │ ├── crown.c │ │ │ │ │ ├── guard1.c │ │ │ │ │ ├── guard2.c │ │ │ │ │ ├── guard3.c │ │ │ │ │ ├── king.c │ │ │ │ │ └── mage.c │ │ │ ├── gen_storage.c │ │ │ ├── laerad.h │ │ │ ├── portal.c │ │ │ ├── secret_stor.c │ │ │ ├── sewer │ │ │ │ ├── deep1.c │ │ │ │ ├── deep2.c │ │ │ │ ├── deep3.c │ │ │ │ ├── lizard.h │ │ │ │ ├── lizroom.c │ │ │ │ ├── mons │ │ │ │ │ ├── lking.c │ │ │ │ │ ├── lman.c │ │ │ │ │ ├── lman_youth.c │ │ │ │ │ ├── nwlman.c │ │ │ │ │ ├── nwplead.c │ │ │ │ │ ├── nwwarlead.c │ │ │ │ │ ├── plead.c │ │ │ │ │ ├── troggy.c │ │ │ │ │ ├── warlead.c │ │ │ │ │ └── wlizard.c │ │ │ │ ├── mush.c │ │ │ │ ├── obj │ │ │ │ │ ├── bone_ring.c │ │ │ │ │ ├── green_key.c │ │ │ │ │ ├── lsboots.c │ │ │ │ │ ├── mushroom.c │ │ │ │ │ └── wcloak.c │ │ │ │ ├── obj_ │ │ │ │ ├── rooms │ │ │ │ │ ├── dw10.c │ │ │ │ │ ├── dw10d.c │ │ │ │ │ ├── dw18.c │ │ │ │ │ ├── dw18d.c │ │ │ │ │ ├── dw18dd.c │ │ │ │ │ ├── dw19.c │ │ │ │ │ ├── dw19d.c │ │ │ │ │ ├── dw19dd.c │ │ │ │ │ ├── dw20.c │ │ │ │ │ ├── dw20d.c │ │ │ │ │ ├── dw27.c │ │ │ │ │ ├── dw27d.c │ │ │ │ │ ├── dw28.c │ │ │ │ │ ├── dw28d.c │ │ │ │ │ ├── dw28dd.c │ │ │ │ │ ├── dw29.c │ │ │ │ │ ├── dw29d.c │ │ │ │ │ ├── dw32.c │ │ │ │ │ ├── dw32d.c │ │ │ │ │ ├── dw33.c │ │ │ │ │ ├── dw33d.c │ │ │ │ │ ├── dw34.c │ │ │ │ │ ├── dw34d.c │ │ │ │ │ ├── dw34dd.c │ │ │ │ │ ├── dw9.c │ │ │ │ │ ├── dw9d.c │ │ │ │ │ ├── l1.c │ │ │ │ │ ├── l10.c │ │ │ │ │ ├── l11.c │ │ │ │ │ ├── l12.c │ │ │ │ │ ├── l13.c │ │ │ │ │ ├── l14.c │ │ │ │ │ ├── l15.c │ │ │ │ │ ├── l16.c │ │ │ │ │ ├── l17.c │ │ │ │ │ ├── l18.c │ │ │ │ │ ├── l2.c │ │ │ │ │ ├── l3.c │ │ │ │ │ ├── l4.c │ │ │ │ │ ├── l5.c │ │ │ │ │ ├── l6.c │ │ │ │ │ ├── l7.c │ │ │ │ │ ├── l8.c │ │ │ │ │ ├── l9.c │ │ │ │ │ ├── lk1.c │ │ │ │ │ ├── lk10.c │ │ │ │ │ ├── lk11.c │ │ │ │ │ ├── lk12.c │ │ │ │ │ ├── lk13.c │ │ │ │ │ ├── lk14.c │ │ │ │ │ ├── lk15.c │ │ │ │ │ ├── lk16.c │ │ │ │ │ ├── lk2.c │ │ │ │ │ ├── lk3.c │ │ │ │ │ ├── lk4.c │ │ │ │ │ ├── lk5.c │ │ │ │ │ ├── lk6.c │ │ │ │ │ ├── lk7.c │ │ │ │ │ ├── lk8.c │ │ │ │ │ ├── lk9.c │ │ │ │ │ ├── m1.c │ │ │ │ │ ├── m10.c │ │ │ │ │ ├── m11.c │ │ │ │ │ ├── m12.c │ │ │ │ │ ├── m13.c │ │ │ │ │ ├── m14.c │ │ │ │ │ ├── m15.c │ │ │ │ │ ├── m16.c │ │ │ │ │ ├── m17.c │ │ │ │ │ ├── m18.c │ │ │ │ │ ├── m19.c │ │ │ │ │ ├── m2.c │ │ │ │ │ ├── m20.c │ │ │ │ │ ├── m21.c │ │ │ │ │ ├── m22.c │ │ │ │ │ ├── m23.c │ │ │ │ │ ├── m24.c │ │ │ │ │ ├── m25.c │ │ │ │ │ ├── m3.c │ │ │ │ │ ├── m4.c │ │ │ │ │ ├── m5.c │ │ │ │ │ ├── m6.c │ │ │ │ │ ├── m7.c │ │ │ │ │ ├── m8.c │ │ │ │ │ ├── m9.c │ │ │ │ │ ├── p1.c │ │ │ │ │ ├── sw1.c │ │ │ │ │ ├── sw2.c │ │ │ │ │ ├── sw3.c │ │ │ │ │ ├── sw4.c │ │ │ │ │ ├── sw5.c │ │ │ │ │ ├── sw6.c │ │ │ │ │ ├── sw7.c │ │ │ │ │ ├── sw8.c │ │ │ │ │ ├── sw9.c │ │ │ │ │ ├── w1.c │ │ │ │ │ ├── w11.c │ │ │ │ │ ├── w12.c │ │ │ │ │ ├── w13.c │ │ │ │ │ ├── w14.c │ │ │ │ │ ├── w15.c │ │ │ │ │ ├── w16.c │ │ │ │ │ ├── w17.c │ │ │ │ │ ├── w2.c │ │ │ │ │ ├── w21.c │ │ │ │ │ ├── w22.c │ │ │ │ │ ├── w23.c │ │ │ │ │ ├── w24.c │ │ │ │ │ ├── w25.c │ │ │ │ │ ├── w26.c │ │ │ │ │ ├── w3.c │ │ │ │ │ ├── w30.c │ │ │ │ │ ├── w31.c │ │ │ │ │ ├── w35.c │ │ │ │ │ ├── w36.c │ │ │ │ │ ├── w37.c │ │ │ │ │ ├── w4.c │ │ │ │ │ ├── w5.c │ │ │ │ │ ├── w6.c │ │ │ │ │ ├── w7.c │ │ │ │ │ └── w8.c │ │ │ │ ├── watroom.c │ │ │ │ └── weapons │ │ │ │ │ ├── flamemace.c │ │ │ │ │ ├── flamessword.c │ │ │ │ │ ├── flamesword.c │ │ │ │ │ ├── flamesword_garrett_test.c │ │ │ │ │ ├── flamethsword.c │ │ │ │ │ └── hurricane.c │ │ │ ├── tower1.c │ │ │ ├── tower10.c │ │ │ ├── tower11.c │ │ │ ├── tower12.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── tower5.c │ │ │ ├── tower6.c │ │ │ ├── tower7.c │ │ │ ├── tower8.c │ │ │ └── tower9.c │ │ ├── cguild │ │ │ └── assassin │ │ │ │ ├── aguild1.c │ │ │ │ ├── aguild2.c │ │ │ │ ├── aguild3.c │ │ │ │ ├── ass_stor.c │ │ │ │ ├── bounty.c │ │ │ │ ├── entrance.c │ │ │ │ ├── hynth.c │ │ │ │ ├── rings │ │ │ │ ├── aring.c │ │ │ │ ├── aring0.c │ │ │ │ ├── aring1.c │ │ │ │ ├── aring10.c │ │ │ │ ├── aring11.c │ │ │ │ ├── aring12.c │ │ │ │ ├── aring13.c │ │ │ │ ├── aring14.c │ │ │ │ ├── aring15.c │ │ │ │ ├── aring2.c │ │ │ │ ├── aring3.c │ │ │ │ ├── aring4.c │ │ │ │ ├── aring5.c │ │ │ │ ├── aring6.c │ │ │ │ ├── aring7.c │ │ │ │ ├── aring8.c │ │ │ │ └── aring9.c │ │ │ │ └── shack.c │ │ ├── doc │ │ │ └── rose.c │ │ ├── forest │ │ │ ├── carr1.c │ │ │ ├── carr3.c │ │ │ ├── carriage_ride │ │ │ │ ├── carr2.c │ │ │ │ └── carr4.c │ │ │ ├── for001i.c │ │ │ ├── for002.c │ │ │ ├── for003.c │ │ │ ├── for004.c │ │ │ ├── for005.c │ │ │ ├── for006.c │ │ │ ├── for007.c │ │ │ ├── for008.c │ │ │ ├── for009.c │ │ │ ├── for010.c │ │ │ ├── for011.c │ │ │ ├── for012.c │ │ │ ├── for013.c │ │ │ ├── for014.c │ │ │ ├── for015.c │ │ │ ├── for016.c │ │ │ ├── for017.c │ │ │ ├── for018.c │ │ │ ├── for019.c │ │ │ ├── for020.c │ │ │ ├── for021.c │ │ │ ├── for022.c │ │ │ ├── for023.c │ │ │ ├── for024.c │ │ │ ├── for025.c │ │ │ ├── for026.c │ │ │ ├── for027.c │ │ │ ├── for028.c │ │ │ ├── for029.c │ │ │ ├── for030.c │ │ │ ├── for031.c │ │ │ ├── for032.c │ │ │ ├── for033.c │ │ │ ├── for034.c │ │ │ ├── for035.c │ │ │ ├── for036.c │ │ │ ├── for037.c │ │ │ ├── for038.c │ │ │ ├── for039.c │ │ │ ├── for040.c │ │ │ ├── for041.c │ │ │ ├── for042.c │ │ │ ├── for043.c │ │ │ ├── for044.c │ │ │ ├── for045.c │ │ │ ├── for046.c │ │ │ ├── for047.c │ │ │ ├── for048.c │ │ │ ├── for049.c │ │ │ ├── for050.c │ │ │ ├── for051.c │ │ │ ├── for052.c │ │ │ ├── for053.c │ │ │ ├── for054.c │ │ │ ├── for055.c │ │ │ ├── for056.c │ │ │ ├── for057.c │ │ │ ├── for058.c │ │ │ ├── for059.c │ │ │ ├── for060.c │ │ │ ├── for061.c │ │ │ ├── for062.c │ │ │ ├── for063.c │ │ │ ├── for064.c │ │ │ ├── for065.c │ │ │ ├── for066.c │ │ │ ├── for067.c │ │ │ ├── for068.c │ │ │ ├── for069.c │ │ │ ├── for070.c │ │ │ ├── for071.c │ │ │ ├── for072.c │ │ │ ├── for073.c │ │ │ ├── for074.c │ │ │ ├── for075.c │ │ │ ├── for076.c │ │ │ ├── for077.c │ │ │ ├── for078.c │ │ │ ├── for079.c │ │ │ ├── for080.c │ │ │ ├── for081.c │ │ │ ├── for082.c │ │ │ ├── for083.c │ │ │ ├── for084.c │ │ │ ├── for085.c │ │ │ ├── for086.c │ │ │ ├── for087.c │ │ │ ├── for088.c │ │ │ ├── for089.c │ │ │ ├── for090.c │ │ │ ├── for091.c │ │ │ ├── for092.c │ │ │ ├── for093.c │ │ │ ├── for094.c │ │ │ ├── for095.c │ │ │ ├── for096.c │ │ │ ├── for097.c │ │ │ ├── for098.c │ │ │ ├── for099.c │ │ │ ├── for100.c │ │ │ ├── for101.c │ │ │ ├── for102.c │ │ │ ├── for103.c │ │ │ ├── for104.c │ │ │ ├── for105.c │ │ │ ├── for106.c │ │ │ ├── for107.c │ │ │ ├── for108.c │ │ │ ├── for109.c │ │ │ ├── for110.c │ │ │ ├── for111.c │ │ │ ├── for112.c │ │ │ ├── for113.c │ │ │ ├── for114.c │ │ │ ├── for115.c │ │ │ ├── for116.c │ │ │ ├── for117.c │ │ │ ├── for118.c │ │ │ ├── for119.c │ │ │ ├── for120.c │ │ │ ├── for121.c │ │ │ ├── for122.c │ │ │ ├── for123.c │ │ │ ├── for124.c │ │ │ ├── for125.c │ │ │ ├── for126.c │ │ │ ├── for127.c │ │ │ ├── for128.c │ │ │ ├── for129.c │ │ │ ├── for130.c │ │ │ ├── for131.c │ │ │ ├── for132.c │ │ │ ├── for133.c │ │ │ ├── for134.c │ │ │ ├── for135.c │ │ │ ├── for136.c │ │ │ ├── for137.c │ │ │ ├── for138.c │ │ │ ├── for139.c │ │ │ ├── for140.c │ │ │ ├── for141.c │ │ │ ├── for142.c │ │ │ ├── for143.c │ │ │ ├── for144.c │ │ │ ├── for145.c │ │ │ ├── for146.c │ │ │ ├── for147.c │ │ │ ├── for148.c │ │ │ ├── for149.c │ │ │ ├── hut.c │ │ │ ├── pittrap1.c │ │ │ └── pittrap2.c │ │ └── systyquah │ │ │ ├── citadel │ │ │ ├── daemon │ │ │ │ ├── bane2.h │ │ │ │ └── overseer.c │ │ │ └── guards │ │ │ │ ├── trollg.c │ │ │ │ ├── trollm.c │ │ │ │ └── trollt.c │ │ │ ├── gen_storage.c │ │ │ ├── hut01.c │ │ │ ├── hut02.c │ │ │ ├── hut03.c │ │ │ ├── hut04.c │ │ │ ├── hut05.c │ │ │ ├── hut06.c │ │ │ ├── hut07.c │ │ │ ├── hut08.c │ │ │ ├── hut09.c │ │ │ ├── hut10.c │ │ │ ├── hut11.c │ │ │ ├── hut12.c │ │ │ ├── hut13.c │ │ │ ├── hut14.c │ │ │ ├── hut15.c │ │ │ ├── hut16.c │ │ │ ├── hut17.c │ │ │ ├── mounts │ │ │ ├── bear.c │ │ │ ├── boar.c │ │ │ ├── cheetah.c │ │ │ ├── tyrg.c │ │ │ └── wolf.c │ │ │ ├── portal.c │ │ │ ├── sys001.c │ │ │ ├── sys002.c │ │ │ ├── sys003.c │ │ │ ├── sys004.c │ │ │ ├── sys005.c │ │ │ ├── sys006.c │ │ │ ├── sys007.c │ │ │ ├── sys008.c │ │ │ ├── sys009.c │ │ │ ├── sys010.c │ │ │ ├── sys011.c │ │ │ ├── sys012.c │ │ │ ├── sys013.c │ │ │ ├── sys014.c │ │ │ ├── sys015.c │ │ │ ├── sys016.c │ │ │ ├── sys017.c │ │ │ ├── sys018.c │ │ │ ├── sys019.c │ │ │ ├── sys020.c │ │ │ ├── sys021.c │ │ │ ├── sys022.c │ │ │ ├── sys023.c │ │ │ ├── sys024.c │ │ │ ├── sys025.c │ │ │ ├── sys026.c │ │ │ ├── sys027.c │ │ │ ├── sys028.c │ │ │ ├── sys029.c │ │ │ ├── sys030.c │ │ │ ├── sys031.c │ │ │ ├── sys032.c │ │ │ ├── sys033.c │ │ │ ├── sys034.c │ │ │ ├── sys035.c │ │ │ ├── sys036.c │ │ │ ├── sys037.c │ │ │ ├── sys038.c │ │ │ ├── sys039.c │ │ │ ├── sys040.c │ │ │ ├── sys041.c │ │ │ ├── sys042.c │ │ │ ├── sys043.c │ │ │ ├── sys044.c │ │ │ ├── sys045.c │ │ │ ├── sys046.c │ │ │ ├── sys047.c │ │ │ ├── sys048.c │ │ │ ├── sys049.c │ │ │ ├── sys050.c │ │ │ ├── sys051.c │ │ │ ├── sys052.c │ │ │ ├── sys053.c │ │ │ ├── sys054.c │ │ │ ├── sys055.c │ │ │ ├── sys056.c │ │ │ ├── sys057.c │ │ │ ├── sys058.c │ │ │ ├── sys059.c │ │ │ ├── sys060.c │ │ │ ├── sys061.c │ │ │ ├── sys062.c │ │ │ ├── sys063.c │ │ │ ├── sys064.c │ │ │ ├── sys065.c │ │ │ ├── sys066.c │ │ │ ├── sys067.c │ │ │ ├── sys068.c │ │ │ ├── sys069.c │ │ │ ├── sys070.c │ │ │ ├── sys071.c │ │ │ ├── sys072.c │ │ │ ├── sys073.c │ │ │ ├── sys074.c │ │ │ ├── sys075.c │ │ │ ├── sys076.c │ │ │ ├── sys077.c │ │ │ ├── sys078.c │ │ │ ├── sys079.c │ │ │ ├── sys080.c │ │ │ ├── sys081.c │ │ │ ├── sys082.c │ │ │ ├── sys083.c │ │ │ ├── sys084.c │ │ │ ├── sys085.c │ │ │ ├── sys086.c │ │ │ ├── sys087.c │ │ │ ├── sys088.c │ │ │ ├── sys089.c │ │ │ ├── sys090.c │ │ │ ├── sys091.c │ │ │ ├── sys092.c │ │ │ ├── sys093.c │ │ │ ├── sys094.c │ │ │ ├── sys095.c │ │ │ ├── sys096.c │ │ │ ├── sys097.c │ │ │ ├── sys098.c │ │ │ ├── sys099.c │ │ │ ├── sys100.c │ │ │ ├── sys101.c │ │ │ ├── sys102.c │ │ │ ├── sys103.c │ │ │ ├── sys104.c │ │ │ ├── sys105.c │ │ │ ├── sys106.c │ │ │ ├── sys107.c │ │ │ ├── sys108.c │ │ │ ├── sys109.c │ │ │ ├── sys110.c │ │ │ ├── sys111.c │ │ │ ├── sys112.c │ │ │ ├── sys113.c │ │ │ ├── sys114.c │ │ │ ├── sys115.c │ │ │ ├── sys116.c │ │ │ ├── sys117.c │ │ │ └── sys118.c │ ├── plains │ │ ├── plains1.c │ │ ├── plains10.c │ │ ├── plains11.c │ │ ├── plains12.c │ │ ├── plains13.c │ │ ├── plains14.c │ │ ├── plains15.c │ │ ├── plains16.c │ │ ├── plains17.c │ │ ├── plains18.c │ │ ├── plains19.c │ │ ├── plains2.c │ │ ├── plains20.c │ │ ├── plains21.c │ │ ├── plains22.c │ │ ├── plains23.c │ │ ├── plains24.c │ │ ├── plains25.c │ │ ├── plains26.c │ │ ├── plains27.c │ │ ├── plains28.c │ │ ├── plains29.c │ │ ├── plains3.c │ │ ├── plains30.c │ │ ├── plains31.c │ │ ├── plains32.c │ │ ├── plains33.c │ │ ├── plains34.c │ │ ├── plains35.c │ │ ├── plains36.c │ │ ├── plains37.c │ │ ├── plains38.c │ │ ├── plains39.c │ │ ├── plains4.c │ │ ├── plains40.c │ │ ├── plains41.c │ │ ├── plains42.c │ │ ├── plains43.c │ │ ├── plains44.c │ │ ├── plains45.c │ │ ├── plains46.c │ │ ├── plains47.c │ │ ├── plains48.c │ │ ├── plains49.c │ │ ├── plains5.c │ │ ├── plains50.c │ │ ├── plains51.c │ │ ├── plains52.c │ │ ├── plains53.c │ │ ├── plains54.c │ │ ├── plains55.c │ │ ├── plains56.c │ │ ├── plains57.c │ │ ├── plains58.c │ │ ├── plains59.c │ │ ├── plains6.c │ │ ├── plains60.c │ │ ├── plains61.c │ │ ├── plains62.c │ │ ├── plains63.c │ │ ├── plains64.c │ │ ├── plains65.c │ │ ├── plains66.c │ │ ├── plains67.c │ │ ├── plains68.c │ │ ├── plains69.c │ │ ├── plains7.c │ │ ├── plains70.c │ │ ├── plains71.c │ │ ├── plains72.c │ │ ├── plains73.c │ │ ├── plains74.c │ │ ├── plains75.c │ │ ├── plains76.c │ │ ├── plains77.c │ │ ├── plains78.c │ │ ├── plains8.c │ │ ├── plains9.c │ │ └── special │ │ │ └── loader.c │ ├── plains_base.c │ ├── plains_mobs.c │ ├── plan_room.c │ ├── swamp │ │ ├── special │ │ │ ├── base.c │ │ │ └── quicksand.c │ │ ├── swamp01.c │ │ ├── swamp02.c │ │ ├── swamp03.c │ │ ├── swamp04.c │ │ ├── swamp05.c │ │ ├── swamp06.c │ │ ├── swamp07.c │ │ ├── swamp08.c │ │ ├── swamp09.c │ │ ├── swamp10.c │ │ ├── swamp11.c │ │ ├── swamp12.c │ │ ├── swamp13.c │ │ ├── swamp14.c │ │ ├── swamp15.c │ │ ├── swamp16.c │ │ ├── swamp17.c │ │ ├── swamp18.c │ │ ├── swamp19.c │ │ ├── swamp20.c │ │ ├── swamp21.c │ │ ├── swamp22.c │ │ ├── swamp23.c │ │ ├── swamp24.c │ │ ├── swamp25.c │ │ ├── swamp26.c │ │ ├── swamp27.c │ │ ├── swamp28.c │ │ ├── swamp29.c │ │ ├── swamp30.c │ │ ├── swamp31.c │ │ ├── swamp32.c │ │ ├── swamp33.c │ │ ├── swamp34.c │ │ ├── swamp35.c │ │ ├── swamp36.c │ │ ├── swamp37.c │ │ ├── swamp38.c │ │ ├── swamp39.c │ │ ├── swamp40.c │ │ ├── swamp41.c │ │ ├── swamp42.c │ │ ├── swamp43.c │ │ ├── swamp44.c │ │ ├── swamp45.c │ │ ├── swamp46.c │ │ ├── swamp47.c │ │ ├── swamp48.c │ │ ├── swamp49.c │ │ ├── swamp50.c │ │ ├── swamp51.c │ │ ├── swamp52.c │ │ ├── swamp53.c │ │ ├── swamp54.c │ │ ├── swamp55.c │ │ ├── swamp56.c │ │ ├── swamp57.c │ │ ├── swamp58.c │ │ ├── swamp59.c │ │ ├── swamp60.c │ │ ├── swamp61.c │ │ ├── swamp62.c │ │ ├── swamp63.c │ │ ├── swamp64.c │ │ ├── swamp65.c │ │ ├── swamp66.c │ │ ├── swamp67.c │ │ ├── swamp68.c │ │ ├── swamp69.c │ │ ├── swamp70.c │ │ ├── swamp71.c │ │ ├── swamp72.c │ │ ├── swamp73.c │ │ ├── swamp74.c │ │ ├── swamp75.c │ │ ├── swamp76.c │ │ ├── swamp77.c │ │ ├── swamp78.c │ │ ├── swamp79.c │ │ ├── swamp80.c │ │ ├── swamp81.c │ │ ├── swamp82.c │ │ ├── swamp83.c │ │ └── swamp84.c │ ├── typos.c │ ├── wasteland │ │ ├── waste1.c │ │ ├── waste10.c │ │ ├── waste100.c │ │ ├── waste101.c │ │ ├── waste102.c │ │ ├── waste103.c │ │ ├── waste11.c │ │ ├── waste12.c │ │ ├── waste13.c │ │ ├── waste14.c │ │ ├── waste15.c │ │ ├── waste16.c │ │ ├── waste17.c │ │ ├── waste18.c │ │ ├── waste19.c │ │ ├── waste2.c │ │ ├── waste20.c │ │ ├── waste21.c │ │ ├── waste22.c │ │ ├── waste23.c │ │ ├── waste24.c │ │ ├── waste25.c │ │ ├── waste26.c │ │ ├── waste27.c │ │ ├── waste28.c │ │ ├── waste29.c │ │ ├── waste3.c │ │ ├── waste30.c │ │ ├── waste31.c │ │ ├── waste32.c │ │ ├── waste33.c │ │ ├── waste34.c │ │ ├── waste35.c │ │ ├── waste36.c │ │ ├── waste37.c │ │ ├── waste38.c │ │ ├── waste39.c │ │ ├── waste4.c │ │ ├── waste40.c │ │ ├── waste41.c │ │ ├── waste42.c │ │ ├── waste43.c │ │ ├── waste44.c │ │ ├── waste45.c │ │ ├── waste46.c │ │ ├── waste47.c │ │ ├── waste48.c │ │ ├── waste49.c │ │ ├── waste5.c │ │ ├── waste50.c │ │ ├── waste51.c │ │ ├── waste52.c │ │ ├── waste53.c │ │ ├── waste54.c │ │ ├── waste55.c │ │ ├── waste56.c │ │ ├── waste57.c │ │ ├── waste58.c │ │ ├── waste59.c │ │ ├── waste6.c │ │ ├── waste60.c │ │ ├── waste61.c │ │ ├── waste62.c │ │ ├── waste63.c │ │ ├── waste64.c │ │ ├── waste65.c │ │ ├── waste66.c │ │ ├── waste67.c │ │ ├── waste68.c │ │ ├── waste69.c │ │ ├── waste7.c │ │ ├── waste70.c │ │ ├── waste71.c │ │ ├── waste72.c │ │ ├── waste73.c │ │ ├── waste74.c │ │ ├── waste75.c │ │ ├── waste76.c │ │ ├── waste77.c │ │ ├── waste78.c │ │ ├── waste79.c │ │ ├── waste8.c │ │ ├── waste80.c │ │ ├── waste81.c │ │ ├── waste82.c │ │ ├── waste83.c │ │ ├── waste84.c │ │ ├── waste85.c │ │ ├── waste86.c │ │ ├── waste87.c │ │ ├── waste88.c │ │ ├── waste89.c │ │ ├── waste9.c │ │ ├── waste90.c │ │ ├── waste91.c │ │ ├── waste92.c │ │ ├── waste93.c │ │ ├── waste94.c │ │ ├── waste95.c │ │ ├── waste96.c │ │ ├── waste97.c │ │ ├── waste98.c │ │ ├── waste99.c │ │ ├── wportal1.do_not_use │ │ └── wportal2.broken │ ├── wizlounge.c │ ├── wsland.c │ └── wsland.essy ├── magic │ ├── compAccount.c │ ├── comp_bag.c │ ├── etc │ │ ├── d_robe.c │ │ ├── ffobj.c │ │ ├── fsphere.c │ │ ├── genesis_portal.c │ │ ├── genesis_room.c │ │ ├── rt_room.c │ │ ├── rt_rope.c │ │ ├── s_grasp.c │ │ ├── sanctify_gate.c │ │ ├── sanctify_room.c │ │ ├── secure_shelter.c │ │ └── shelter_room.c │ ├── immort.c │ ├── ink-vial.c │ ├── library.c │ ├── magic_book.c │ ├── manual.c │ ├── mon │ │ ├── acompanion.c │ │ ├── acompanion.old │ │ ├── amphisbaena.c │ │ ├── astral_construct.c │ │ ├── astral_defender.c │ │ ├── astral_projection.c │ │ ├── bandits.c │ │ ├── basilisk.c │ │ ├── bat.c │ │ ├── bbear.c │ │ ├── beast.c │ │ ├── behir.c │ │ ├── boa.c │ │ ├── boalisk.c │ │ ├── bonded_steed.c │ │ ├── bugbear.c │ │ ├── bulette.c │ │ ├── called_crystal.c │ │ ├── cguard.c │ │ ├── cguard2.c │ │ ├── chimera.c │ │ ├── clone.c │ │ ├── cobra.c │ │ ├── cockatrice.c │ │ ├── copperhead.c │ │ ├── cottonmouth.c │ │ ├── create_undead │ │ │ ├── _inherit.c │ │ │ ├── common.h │ │ │ ├── graveknight.c │ │ │ ├── skelemage.c │ │ │ ├── skeleton.c │ │ │ ├── vampire_knight.c │ │ │ └── vampire_spawn.c │ │ ├── crushing_hand.c │ │ ├── dark_creature.c │ │ ├── debris.c │ │ ├── eagle2.c │ │ ├── ecto_swarm.c │ │ ├── eguard.c │ │ ├── ehater.c │ │ ├── elemental_guardian.c │ │ ├── gargoyle.c │ │ ├── gboa.c │ │ ├── gboar.c │ │ ├── gen_snake.c │ │ ├── giantbat.c │ │ ├── giantrat.c │ │ ├── gnoll.c │ │ ├── gnome.c │ │ ├── goblin.c │ │ ├── goblincaptain.c │ │ ├── gpython.c │ │ ├── grattlesnake.c │ │ ├── gscorpion.c │ │ ├── hobgoblin.c │ │ ├── hobgoblincaptain.c │ │ ├── hound.c │ │ ├── hydra10.c │ │ ├── hydra12.c │ │ ├── hydra8.c │ │ ├── hyena.c │ │ ├── illusion.c │ │ ├── juju.c │ │ ├── kcobra.c │ │ ├── killer.c │ │ ├── kobold.c │ │ ├── koboldcaptain.c │ │ ├── korred.c │ │ ├── lelemental.c │ │ ├── leucrotta.c │ │ ├── mage_aelemental.c │ │ ├── mage_eelemental.c │ │ ├── mage_felemental.c │ │ ├── mage_welemental.c │ │ ├── manticore.c │ │ ├── mounts │ │ │ ├── bonded │ │ │ │ ├── descs.h │ │ │ │ └── divine_mount.c │ │ │ ├── bonded_steed.c │ │ │ ├── skelehorse.c │ │ │ ├── spectral.c │ │ │ └── travel.c │ │ ├── naturesally │ │ │ ├── ape.c │ │ │ ├── arrowhawk.c │ │ │ ├── blackbear.c │ │ │ ├── brownbear.c │ │ │ ├── constrictor.c │ │ │ ├── crocodile.c │ │ │ ├── deinonychus.c │ │ │ ├── direape.c │ │ │ ├── direbadger.c │ │ │ ├── direbat.c │ │ │ ├── direbear.c │ │ │ ├── direboar.c │ │ │ ├── direlion.c │ │ │ ├── direrat.c │ │ │ ├── diretiger.c │ │ │ ├── direweasel.c │ │ │ ├── direwolf.c │ │ │ ├── direwolverine.c │ │ │ ├── eagle.c │ │ │ ├── elderelemental.c │ │ │ ├── elephant.c │ │ │ ├── giantcrocodile.c │ │ │ ├── gianteagle.c │ │ │ ├── giantowl.c │ │ │ ├── girallon.c │ │ │ ├── greater_satyr.c │ │ │ ├── greaterelemental.c │ │ │ ├── griffon.c │ │ │ ├── hippogriff.c │ │ │ ├── hugeelemental.c │ │ │ ├── hugeviper.c │ │ │ ├── janni.c │ │ │ ├── largeviper.c │ │ │ ├── lion.c │ │ │ ├── mediumviper.c │ │ │ ├── megaraptor.c │ │ │ ├── monkey.c │ │ │ ├── natureally.c │ │ │ ├── nixie.c │ │ │ ├── owl.c │ │ │ ├── polarbear.c │ │ │ ├── rhinoceros.c │ │ │ ├── roc.c │ │ │ ├── salamander.c │ │ │ ├── salamandernoble.c │ │ │ ├── satyr.c │ │ │ ├── smallviper.c │ │ │ ├── tiger.c │ │ │ ├── tojanidaelder.c │ │ │ ├── triceratops.c │ │ │ ├── tyrannosaurus.c │ │ │ ├── unicorn.c │ │ │ ├── wolf.c │ │ │ └── wolverine.c │ │ ├── ogre.c │ │ ├── ogre1.c │ │ ├── ogre2.c │ │ ├── orc.c │ │ ├── orccaptain.c │ │ ├── outsider.c │ │ ├── pack_member.c │ │ ├── pbat.c │ │ ├── pcentaur.c │ │ ├── pig.c │ │ ├── planar_ally.c │ │ ├── plant.c │ │ ├── priest_aelemental.c │ │ ├── priest_eelemental.c │ │ ├── priest_felemental.c │ │ ├── priest_ielemental.c │ │ ├── priest_welemental.c │ │ ├── psoldier.c │ │ ├── psychic_warrior.c │ │ ├── psychokinetic_weapon.c │ │ ├── python.c │ │ ├── rat.c │ │ ├── rattlesnake.c │ │ ├── riding_leopard.c │ │ ├── riding_lion.c │ │ ├── riding_wolf.c │ │ ├── satyr.c │ │ ├── secret_chest.c │ │ ├── shambler.c │ │ ├── skeleton.c │ │ ├── spectral_hound.c │ │ ├── spider.c │ │ ├── spider2.c │ │ ├── spiritual_ally.c │ │ ├── spiritual_weapon.c │ │ ├── summoned_monster.h │ │ ├── swarm.c │ │ ├── swarm_elemental.c │ │ ├── treant.c │ │ ├── treant_fall.c │ │ ├── treant_spring.c │ │ ├── treant_summer.c │ │ ├── treant_winter.c │ │ ├── troll.c │ │ ├── typan.c │ │ ├── umber_hulk.c │ │ ├── unseen_servant.c │ │ ├── vbat.c │ │ ├── warlock_greater_summons.c │ │ ├── warlock_lesser_summons.c │ │ ├── windghost.c │ │ ├── wolf.c │ │ ├── wolf2.c │ │ └── wspider.c │ ├── mscroll.c │ ├── new_book.c │ ├── newbie_scroll.c │ ├── obj.c │ ├── obj │ │ ├── _stalk.c │ │ ├── acompanion.c │ │ ├── aelemental.c │ │ ├── alarm.c │ │ ├── aobject.c │ │ ├── ashadow.c │ │ ├── astral_projection_holder.c │ │ ├── attuned_gem.c │ │ ├── barkskin.c │ │ ├── basemonster.c │ │ ├── bleeding_wound.c │ │ ├── breathob.c │ │ ├── cavern_invisob.c │ │ ├── cconstructholder.c │ │ ├── celemholder.c │ │ ├── cgenieholder.c │ │ ├── cgsymbol.c │ │ ├── chestholder.c │ │ ├── cnsymbol.c │ │ ├── commune_ob.c │ │ ├── companion.c │ │ ├── contingency.c │ │ ├── corpseremote.c │ │ ├── cplanarholder.c │ │ ├── crush_control.c │ │ ├── crystal_ball.c │ │ ├── csalholder.c │ │ ├── ctreantholder.c │ │ ├── ctreeholder.c │ │ ├── curse_breaker.c │ │ ├── dancinglights.c │ │ ├── darkness.c │ │ ├── demiplane_portal.c │ │ ├── disentangler.c │ │ ├── dragon.c │ │ ├── ecto_wall.c │ │ ├── eelemental.c │ │ ├── efreeti.c │ │ ├── eldathstatue.c │ │ ├── eldritch_effects │ │ │ ├── eldritch_brimstone.c │ │ │ ├── eldritch_frightful.c │ │ │ ├── eldritch_glacial.c │ │ │ ├── eldritch_utterdark.c │ │ │ └── eldritch_vitriolic.c │ │ ├── empowerer.c │ │ ├── exigency.c │ │ ├── exigency_gem.c │ │ ├── eye_orb.c │ │ ├── felemental.c │ │ ├── firewall.c │ │ ├── flee-image.c │ │ ├── freedom.c │ │ ├── frostcloud.c │ │ ├── gateholder.c │ │ ├── glyphofwarding.c │ │ ├── godsfavor.c │ │ ├── grease.c │ │ ├── griffon.c │ │ ├── hide.c │ │ ├── holder.c │ │ ├── holy_water.c │ │ ├── iceblade.c │ │ ├── imageremote.c │ │ ├── innereye.c │ │ ├── inv_alarm.c │ │ ├── invisob.c │ │ ├── invisobcl.c │ │ ├── invisobgreater.c │ │ ├── lelemental.c │ │ ├── lgsymbol.c │ │ ├── light.c │ │ ├── lnsymbol.c │ │ ├── lockweapons │ │ │ ├── eldritch_bow.c │ │ │ ├── eldritch_bow_beshadowed.c │ │ │ ├── eldritch_bow_binding.c │ │ │ ├── eldritch_bow_brimstone.c │ │ │ ├── eldritch_bow_frightful.c │ │ │ ├── eldritch_bow_glacial.c │ │ │ ├── eldritch_bow_lifedrinker.c │ │ │ ├── eldritch_bow_utterdark.c │ │ │ ├── eldritch_bow_vitriolic.c │ │ │ ├── eldritch_claw.c │ │ │ ├── eldritch_claw_beshadowed.c │ │ │ ├── eldritch_claw_binding.c │ │ │ ├── eldritch_claw_brimstone.c │ │ │ ├── eldritch_claw_frightful.c │ │ │ ├── eldritch_claw_glacial.c │ │ │ ├── eldritch_claw_lifedrinker.c │ │ │ ├── eldritch_claw_utterdark.c │ │ │ ├── eldritch_claw_vitriolic.c │ │ │ ├── eldritch_glaive.c │ │ │ ├── eldritch_glaive_beshadowed.c │ │ │ ├── eldritch_glaive_binding.c │ │ │ ├── eldritch_glaive_brimstone.c │ │ │ ├── eldritch_glaive_frightful.c │ │ │ ├── eldritch_glaive_glacial.c │ │ │ ├── eldritch_glaive_lifedrinker.c │ │ │ ├── eldritch_glaive_utterdark.c │ │ │ ├── eldritch_glaive_vitriolic.c │ │ │ ├── eldritch_scimitar.c │ │ │ ├── eldritch_scimitar_beshadowed.c │ │ │ ├── eldritch_scimitar_binding.c │ │ │ ├── eldritch_scimitar_brimstone.c │ │ │ ├── eldritch_scimitar_frightful.c │ │ │ ├── eldritch_scimitar_glacial.c │ │ │ ├── eldritch_scimitar_lifedrinker.c │ │ │ ├── eldritch_scimitar_utterdark.c │ │ │ └── eldritch_scimitar_vitriolic.c │ │ ├── marid.c │ │ ├── mcrystal_ball.c │ │ ├── mini_glyph.c │ │ ├── mini_snare.c │ │ ├── mirror.c │ │ ├── mmace.c │ │ ├── mmirror.c │ │ ├── monkeledevice.c │ │ ├── msword.c │ │ ├── mwhip.c │ │ ├── ngsymbol.c │ │ ├── objectremote.c │ │ ├── old │ │ │ └── weapons │ │ │ │ ├── banestar.c │ │ │ │ ├── cscythe.c │ │ │ │ ├── flameblade.c │ │ │ │ ├── flamewhip.c │ │ │ │ ├── frostwhip.c │ │ │ │ ├── moonblade.c │ │ │ │ ├── sharwhip.c │ │ │ │ ├── sunblade.c │ │ │ │ ├── waterwhip.c │ │ │ │ ├── windlash.c │ │ │ │ └── woodsword.c │ │ ├── orb_of_scrying.c │ │ ├── orb_of_scrying_device.c │ │ ├── pbat.c │ │ ├── pcentaur.c │ │ ├── pfirewall.c │ │ ├── place.c │ │ ├── prison.c │ │ ├── projectimg.c │ │ ├── pryingeyes.c │ │ ├── psi_invisob.c │ │ ├── psion_weapon.c │ │ ├── psoldier.c │ │ ├── pstatue.c │ │ ├── psychic.c │ │ ├── r_wand.c │ │ ├── races.h │ │ ├── reaving_blades.c │ │ ├── reaving_dispeller.c │ │ ├── rebirther.c │ │ ├── reequip │ │ │ ├── battle_axe.c │ │ │ ├── bracers.c │ │ │ ├── buckler.c │ │ │ ├── chain.c │ │ │ ├── claw.c │ │ │ ├── club.c │ │ │ ├── comp_bag.c │ │ │ ├── dagger.c │ │ │ ├── fan.c │ │ │ ├── field.c │ │ │ ├── flail.c │ │ │ ├── giant_club.c │ │ │ ├── giant_hammer.c │ │ │ ├── hammer_sm.c │ │ │ ├── handaxe.c │ │ │ ├── lance.c │ │ │ ├── light_rapier.c │ │ │ ├── longbow.c │ │ │ ├── longsword.c │ │ │ ├── mace.c │ │ │ ├── mclub.c │ │ │ ├── mshield.c │ │ │ ├── mspear.c │ │ │ ├── mstaff.c │ │ │ ├── psi_comp_bag.c │ │ │ ├── randrobes.c │ │ │ ├── robes.c │ │ │ ├── scythe.c │ │ │ ├── shortbow.c │ │ │ ├── shortsword.c │ │ │ ├── sling.c │ │ │ ├── spear_lg.c │ │ │ ├── spear_sm.c │ │ │ ├── studded.c │ │ │ ├── two_hand_sword.c │ │ │ ├── warhammer.c │ │ │ └── whip.c │ │ ├── reflection_object.c │ │ ├── remote.c │ │ ├── riding_leopard.c │ │ ├── riding_wolf.c │ │ ├── salamander.c │ │ ├── sclothes.c │ │ ├── sclothes_inflitrator.c │ │ ├── scompanion.c │ │ ├── scompanioncaller.c │ │ ├── scry_blocker.c │ │ ├── scry_bowl.c │ │ ├── scry_control.c │ │ ├── scry_detector.c │ │ ├── scry_object.c │ │ ├── send_ob.c │ │ ├── shadowlistener.c │ │ ├── shadowremote.c │ │ ├── shar_table.c │ │ ├── shields │ │ │ ├── auppenser.c │ │ │ ├── auril.c │ │ │ ├── bane.c │ │ │ ├── callamir.c │ │ │ ├── cevahir.c │ │ │ ├── divine_shield_inherit.c │ │ │ ├── helm.c │ │ │ ├── jarmila.c │ │ │ ├── khyron.c │ │ │ ├── kismet.c │ │ │ ├── kossuth.c │ │ │ ├── kreysneothosies.c │ │ │ ├── lathander.c │ │ │ ├── lord_shadow.c │ │ │ ├── lysara.c │ │ │ ├── mystra.c │ │ │ ├── nilith.c │ │ │ ├── nimnavanon.c │ │ │ ├── ryorik.c │ │ │ ├── seija.c │ │ │ ├── selune.c │ │ │ ├── shar.c │ │ │ ├── shaundakul.c │ │ │ ├── sune.c │ │ │ ├── the_faceless_one.c │ │ │ ├── torm.c │ │ │ └── tyr.c │ │ ├── silverwatcher.c │ │ ├── slicing_shadows.c │ │ ├── slipbonds.c │ │ ├── snare.c │ │ ├── sols_orb.c │ │ ├── sonicshield.c │ │ ├── spellstaff.c │ │ ├── staticfield.c │ │ ├── statue.c │ │ ├── store_comp.c │ │ ├── store_psi_comp.c │ │ ├── stormcone.c │ │ ├── summoning_gem.c │ │ ├── swarm.c │ │ ├── swordremote.c │ │ ├── templeward.c │ │ ├── thornwall.c │ │ ├── timemass.c │ │ ├── titan_control.c │ │ ├── titan_object.c │ │ ├── tnsymbol.c │ │ ├── trace_teleport.c │ │ ├── treant.c │ │ ├── trick_invisob.c │ │ ├── undead.c │ │ ├── undead_controller.c │ │ ├── vacuum_breathob.c │ │ ├── vaporcloud.c │ │ ├── varrdig.c │ │ ├── vestments.c │ │ ├── warlock_reply_ob.c │ │ ├── warlock_send_ob.c │ │ ├── weap_effects │ │ │ ├── acidic.c │ │ │ ├── bane.c │ │ │ ├── disruptor.c │ │ │ ├── empowered.c │ │ │ ├── resounder.c │ │ │ └── vampiric.c │ │ ├── weapons │ │ │ ├── callamir.c │ │ │ ├── cevahir.c │ │ │ ├── cevahir_knights.c │ │ │ ├── dream.c │ │ │ ├── godwpns.c │ │ │ ├── godwpns_knights.c │ │ │ ├── jarmila.c │ │ │ ├── jarmila_knights.c │ │ │ ├── khyron.c │ │ │ ├── khyron_knights.c │ │ │ ├── kismet.c │ │ │ ├── kismet_knights.c │ │ │ ├── kreysneothosies.c │ │ │ ├── kreysneothosies_knights.c │ │ │ ├── lord_shadow.c │ │ │ ├── lord_shadow_knights.c │ │ │ ├── lysara.c │ │ │ ├── lysara_knights.c │ │ │ ├── nilith.c │ │ │ ├── nilith_knights.c │ │ │ ├── nimnavanon.c │ │ │ ├── ryorik.c │ │ │ ├── seija.c │ │ │ ├── seija_knights.c │ │ │ ├── the_faceless_one.c │ │ │ └── the_faceless_one_knights.c │ │ ├── webmass.c │ │ ├── welemental.c │ │ ├── whip_of_cenetipedes.c │ │ ├── whip_of_spiders.c │ │ ├── window_viewer.c │ │ ├── wingObj.c │ │ ├── witnessob.c │ │ └── xvimmace.c │ ├── paper.c │ ├── pen.c │ ├── psiCompAccount.c │ ├── psi_comp_bag.c │ ├── psicrystal.c │ ├── rod.c │ ├── room │ │ ├── demiplane_plane.c │ │ ├── hellscape.c │ │ ├── in_prison.c │ │ ├── in_time.c │ │ ├── in_web.c │ │ ├── randroom.c │ │ ├── regen_room.c │ │ └── templeward.c │ ├── safe_scroll.c │ ├── scribed_scroll.c │ ├── scroll.c │ ├── specials_d.c │ ├── spellbook.c │ ├── spellbookx.c │ ├── store_bard_comp.c │ ├── store_comp.c │ ├── store_psi_comp.c │ ├── string_compare.c │ ├── stuff │ │ └── lightobj.c │ ├── symbols │ │ ├── callamir_symbol.c │ │ ├── eldath_symbol.c │ │ ├── holy_symbol.c │ │ ├── holy_symbol_inherit.c │ │ ├── jarmila_symbol.c │ │ ├── lysara_symbol.c │ │ └── the_faceless_one_symbol.c │ ├── temples │ │ ├── akadi_path.c │ │ ├── auppenser.c │ │ ├── beshaba.c │ │ ├── callamir │ │ │ └── callamir.c │ │ ├── cevahir │ │ │ └── cevahir.c │ │ ├── dream │ │ │ └── dream.c │ │ ├── eldath.c │ │ ├── gab │ │ │ ├── acolyte.c │ │ │ ├── alcove.c │ │ │ ├── alcove2.c │ │ │ ├── deisott.c │ │ │ ├── gath_room.c │ │ │ ├── hall.c │ │ │ ├── hall0.c │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hpriest.c │ │ │ ├── library.c │ │ │ ├── npc_acolyte.c │ │ │ ├── npc_priest.c │ │ │ ├── priests.c │ │ │ ├── stairs.c │ │ │ ├── tor_cham.c │ │ │ ├── urgoth.c │ │ │ ├── vestry.c │ │ │ └── victim.c │ │ ├── jarmila │ │ │ ├── jarmila.c │ │ │ ├── jarmilaentry.c │ │ │ ├── jarmilagarden.c │ │ │ └── old │ │ │ │ └── jarmilaentry.c │ │ ├── kelemvor.c │ │ ├── khyron │ │ │ └── khyron.c │ │ ├── kismet │ │ │ └── kismet.c │ │ ├── kreysneothosies │ │ │ └── kreysneothosies.c │ │ ├── lord_shadow │ │ │ ├── lord_shadow.c │ │ │ └── lord_shadowentry.c │ │ ├── loviatar.h │ │ ├── lysara │ │ │ └── lysara.c │ │ ├── m_ruin.c │ │ ├── main.c │ │ ├── mielikki.c │ │ ├── mielikki_center.c │ │ ├── mielikki_circle.c │ │ ├── mielikki_entrance.c │ │ ├── mielikki_garden.c │ │ ├── misc │ │ │ ├── aster.c │ │ │ ├── cevahir_chess.c │ │ │ ├── cyric_mass.c │ │ │ ├── cyric_metal_scrap_key.c │ │ │ ├── hrotha_soul.c │ │ │ ├── kossuth_monolith.c │ │ │ ├── shar_fruit.c │ │ │ ├── stormspear.c │ │ │ └── stormsword.c │ │ ├── mystra.c │ │ ├── mystra_hidden.c │ │ ├── mystra_temple3.c │ │ ├── nilith │ │ │ └── nilith.c │ │ ├── nimnavanon │ │ │ ├── hall.c │ │ │ ├── mound.c │ │ │ ├── nimnavanon.c │ │ │ ├── pond.c │ │ │ └── salmonberries.c │ │ ├── oghma.c │ │ ├── ryorik │ │ │ └── ryorik.c │ │ ├── seija │ │ │ └── seija.c │ │ ├── shar_courtyard.c │ │ ├── shar_lake.c │ │ ├── shar_path1.c │ │ ├── shar_path2.c │ │ ├── shar_path3.c │ │ ├── shar_path4.c │ │ ├── shar_path5.c │ │ ├── shar_tunnel.c │ │ ├── shar_tunnel2.c │ │ ├── shar_tunnel3.c │ │ ├── shar_tunnel4.c │ │ ├── shar_tunnel5.c │ │ ├── silvanus_old.c │ │ ├── sune.c │ │ ├── tempus.c │ │ ├── tempus_training.c │ │ ├── the_faceless_one │ │ │ ├── the_faceless_one.c │ │ │ └── the_faceless_oneentry.c │ │ └── xvim.c │ ├── test_book.c │ └── weapons ├── mine │ ├── lvl1room │ │ ├── centre.c │ │ ├── chute.c │ │ ├── enter.c │ │ ├── mine1.c │ │ ├── mine2.c │ │ ├── minee1.c │ │ ├── minee2.c │ │ ├── minee3.c │ │ ├── minen1.c │ │ ├── minen2.c │ │ ├── minew1.c │ │ ├── minew2.c │ │ ├── minew3.c │ │ ├── minexroad.c │ │ ├── track1.c │ │ ├── track2.c │ │ ├── track3.c │ │ ├── track4.c │ │ └── track5.c │ └── obj │ │ └── car.c ├── mine2 │ ├── mine.c │ ├── mon │ │ └── Makefile │ ├── obj │ │ ├── slide.c │ │ ├── workercaller.c │ │ └── workers.c │ ├── room │ ├── rooms │ │ ├── mine1.c │ │ ├── mine10.c │ │ ├── mine11.c │ │ ├── mine12.c │ │ ├── mine13.c │ │ ├── mine14.c │ │ ├── mine15.c │ │ ├── mine16.c │ │ ├── mine17.c │ │ ├── mine18.c │ │ ├── mine19.c │ │ ├── mine1b.c │ │ ├── mine2.c │ │ ├── mine20.c │ │ ├── mine21.c │ │ ├── mine22.c │ │ ├── mine23.c │ │ ├── mine24.c │ │ ├── mine25.c │ │ ├── mine26.c │ │ ├── mine3.c │ │ ├── mine4.c │ │ ├── mine5.c │ │ ├── mine6.c │ │ ├── mine7.c │ │ ├── mine8.c │ │ ├── mine9.c │ │ ├── secret1.c │ │ ├── trap1.c │ │ ├── trap2.c │ │ ├── trap3.c │ │ ├── trap4.c │ │ └── trap5.c │ ├── sandy │ │ ├── mon │ │ │ ├── coffee.c │ │ │ ├── collin.c │ │ │ ├── doctor.c │ │ │ ├── hospital.c │ │ │ ├── jeff.c │ │ │ └── waitress.c │ │ ├── room │ │ │ ├── armory.c │ │ │ ├── armory_storage.c │ │ │ ├── bank.c │ │ │ ├── boat.c │ │ │ ├── coffee.c │ │ │ ├── collin.c │ │ │ ├── dock.c │ │ │ ├── doctor.c │ │ │ ├── gs_storage.c │ │ │ ├── gs_store.c │ │ │ ├── hospital.c │ │ │ ├── jeff.c │ │ │ ├── restaurant.c │ │ │ ├── sandy1.c │ │ │ ├── sandy10.c │ │ │ ├── sandy11.c │ │ │ ├── sandy12.c │ │ │ ├── sandy13.c │ │ │ ├── sandy14.c │ │ │ ├── sandy15.c │ │ │ ├── sandy16.c │ │ │ ├── sandy17.c │ │ │ ├── sandy18.c │ │ │ ├── sandy19.c │ │ │ ├── sandy2.c │ │ │ ├── sandy20.c │ │ │ ├── sandy21.c │ │ │ ├── sandy22.c │ │ │ ├── sandy23.c │ │ │ ├── sandy24.c │ │ │ ├── sandy25.c │ │ │ ├── sandy26.c │ │ │ ├── sandy3.c │ │ │ ├── sandy4.c │ │ │ ├── sandy5.c │ │ │ ├── sandy6.c │ │ │ ├── sandy7.c │ │ │ ├── sandy8.c │ │ │ ├── sandy9.c │ │ │ ├── steve.c │ │ │ ├── tony.c │ │ │ ├── waitress.c │ │ │ ├── weaponry.c │ │ │ └── weaponry_storage.c │ │ └── rooms │ │ │ ├── armory.c │ │ │ ├── armory_storage.c │ │ │ ├── bank.c │ │ │ ├── boat.c │ │ │ ├── coffee.c │ │ │ ├── collin.c │ │ │ ├── dock.c │ │ │ ├── doctor.c │ │ │ ├── gs_storage.c │ │ │ ├── gs_store.c │ │ │ ├── hospital.c │ │ │ ├── jeff.c │ │ │ ├── map.c │ │ │ ├── restaurant.c │ │ │ ├── sandy.c │ │ │ ├── sandy1.c │ │ │ ├── sandy10.c │ │ │ ├── sandy11.c │ │ │ ├── sandy12.c │ │ │ ├── sandy13.c │ │ │ ├── sandy14.c │ │ │ ├── sandy15.c │ │ │ ├── sandy16.c │ │ │ ├── sandy17.c │ │ │ ├── sandy18.c │ │ │ ├── sandy19.c │ │ │ ├── sandy2.c │ │ │ ├── sandy20.c │ │ │ ├── sandy21.c │ │ │ ├── sandy22.c │ │ │ ├── sandy23.c │ │ │ ├── sandy24.c │ │ │ ├── sandy25.c │ │ │ ├── sandy26.c │ │ │ ├── sandy3.c │ │ │ ├── sandy4.c │ │ │ ├── sandy5.c │ │ │ ├── sandy6.c │ │ │ ├── sandy7.c │ │ │ ├── sandy8.c │ │ │ ├── sandy9.c │ │ │ ├── steve.c │ │ │ ├── tony.c │ │ │ └── waitress.c │ └── virtualocean │ │ ├── boats │ │ ├── abolitionroom.c │ │ ├── abolitionship.c │ │ ├── compship.c │ │ ├── fuse.c │ │ ├── hurrican.c │ │ ├── inven │ │ ├── oldroom │ │ ├── oldship │ │ ├── sail.c │ │ └── workship.c │ │ ├── obj │ │ ├── compship.c │ │ ├── dock.c │ │ └── storm.c │ │ ├── ocean.desc │ │ ├── ocean.exits │ │ ├── ocean.terrain │ │ ├── ocean │ │ ├── ocean.desc │ │ ├── ocean.exits │ │ └── ocean.terrain │ │ ├── ocean_daemon.c │ │ ├── ocean_server.c │ │ ├── rooms │ │ ├── cloneroom.c │ │ └── sinking.c │ │ ├── sea.desc │ │ ├── sea.exits │ │ └── sea.terrain ├── newbie │ ├── map.c │ ├── mon │ │ ├── adresa.c │ │ ├── arvanador.c │ │ ├── bank_guard.c │ │ ├── barkeep1.c │ │ ├── barkeep2.c │ │ ├── bat.c │ │ ├── breilia.c │ │ ├── caeleb.c │ │ ├── daven.c │ │ ├── doran.c │ │ ├── dulan.c │ │ ├── gleveth.c │ │ ├── gnoll.c │ │ ├── gnome1.c │ │ ├── gnome2.c │ │ ├── gnome3.c │ │ ├── gnome_leader.c │ │ ├── granstun.c │ │ ├── granstun_storage.c │ │ ├── gretam.c │ │ ├── jake.c │ │ ├── librarian.c │ │ ├── matthew.c │ │ ├── mortius.c │ │ ├── musond.c │ │ ├── nasir.c │ │ ├── nerussa.c │ │ ├── nicculis.c │ │ ├── rat.c │ │ ├── salha.c │ │ ├── selyvia.c │ │ ├── sirith.c │ │ ├── skeleton.c │ │ ├── snake.c │ │ ├── spider.c │ │ ├── taribella.c │ │ ├── vanessa.c │ │ ├── zabeth.c │ │ ├── zombie.c │ │ └── zombiem.c │ ├── newbie-precommon.h │ ├── newbie.h │ ├── obj │ │ ├── armor │ │ │ ├── leather.c │ │ │ ├── lhide.c │ │ │ ├── lleather.c │ │ │ ├── lpadded.c │ │ │ ├── lrobe.c │ │ │ ├── lstudded.c │ │ │ ├── newbie_banded.c │ │ │ ├── newbie_boots.c │ │ │ ├── newbie_bracers.c │ │ │ ├── newbie_coif.c │ │ │ ├── newbie_greaves.c │ │ │ ├── newbie_hat.c │ │ │ ├── newbie_helm.c │ │ │ ├── newbie_hide.c │ │ │ ├── newbie_horseshoes.c │ │ │ ├── newbie_leather_greaves.c │ │ │ ├── newbie_plate.c │ │ │ ├── newbie_robe.c │ │ │ ├── padded.c │ │ │ ├── shieldcrude.c │ │ │ ├── sleather.c │ │ │ ├── spadded.c │ │ │ ├── srobe.c │ │ │ ├── sstudded.c │ │ │ ├── studded.c │ │ │ └── whitecloak.c │ │ ├── clothing │ │ │ ├── belt.c │ │ │ ├── boots.c │ │ │ ├── c_bracelet.c │ │ │ ├── c_clasp.c │ │ │ ├── c_dress.c │ │ │ ├── c_gloves.c │ │ │ ├── c_hat.c │ │ │ ├── c_leggings.c │ │ │ ├── c_necklace.c │ │ │ ├── c_pants.c │ │ │ ├── c_pendant.c │ │ │ ├── c_ring.c │ │ │ ├── c_shirt.c │ │ │ ├── c_skirt.c │ │ │ ├── c_tunic.c │ │ │ ├── cloak.c │ │ │ ├── newbie_belt.c │ │ │ ├── newbie_pants.c │ │ │ ├── old.saide │ │ │ │ ├── d_bracelet.c │ │ │ │ ├── d_dress.c │ │ │ │ ├── d_gloves.c │ │ │ │ ├── d_hat.c │ │ │ │ ├── d_leggings.c │ │ │ │ ├── d_necklace.c │ │ │ │ ├── d_pants.c │ │ │ │ ├── d_pendant.c │ │ │ │ ├── d_ring.c │ │ │ │ ├── d_shirt.c │ │ │ │ ├── d_skirt.c │ │ │ │ └── d_tunic.c │ │ │ ├── quest_armbandE.c │ │ │ └── quest_armbandG.c │ │ ├── map │ │ ├── map.c │ │ ├── misc │ │ │ ├── 1sign.c │ │ │ ├── gem.c │ │ │ ├── lpouch.c │ │ │ ├── map.c │ │ │ ├── map_header.h │ │ │ ├── mining_pick.c │ │ │ ├── newbie_object.c │ │ │ ├── newbie_ring.c │ │ │ ├── p1.c │ │ │ ├── roadsign1.c │ │ │ ├── rock.c │ │ │ ├── sign1.txt │ │ │ ├── sign10.txt │ │ │ ├── sign2.txt │ │ │ ├── sign3.txt │ │ │ ├── sign4.txt │ │ │ ├── sign5.txt │ │ │ ├── sign6.txt │ │ │ ├── sign7.txt │ │ │ ├── sign8.txt │ │ │ ├── sign9.txt │ │ │ ├── towngatesign.c │ │ │ └── townsign.c │ │ └── weapons │ │ │ ├── bardiche.c │ │ │ ├── becdecorbin.c │ │ │ ├── bill-guisarme.c │ │ │ ├── glaive.c │ │ │ ├── guisarme-voulge.c │ │ │ ├── guisarme.c │ │ │ ├── halberd.c │ │ │ ├── lbattleaxe.c │ │ │ ├── lclub.c │ │ │ ├── ldagger.c │ │ │ ├── lflail.c │ │ │ ├── lucernhammer.c │ │ │ ├── mbattleaxe.c │ │ │ ├── mclub.c │ │ │ ├── mdagger.c │ │ │ ├── mflail.c │ │ │ ├── partisan.c │ │ │ ├── ranseur.c │ │ │ ├── sbattleaxe.c │ │ │ ├── sclub.c │ │ │ ├── sdagger.c │ │ │ ├── sflail.c │ │ │ ├── spetum.c │ │ │ └── voulge.c │ ├── ooc │ │ ├── abbrev │ │ ├── actions │ │ ├── advancing │ │ ├── adventure │ │ ├── assassin │ │ ├── bard │ │ ├── basics │ │ ├── basics_poster.c │ │ ├── basics_room.c │ │ ├── bugs │ │ ├── calendar │ │ ├── cavalier │ │ ├── char_poster.c │ │ ├── char_poster1 │ │ ├── char_poster1.c │ │ ├── char_poster2.c │ │ ├── char_poster3.c │ │ ├── char_room.c │ │ ├── character.c │ │ ├── cleric │ │ ├── combat │ │ ├── communication │ │ ├── deities │ │ ├── descriptions │ │ ├── equipping │ │ ├── faq │ │ ├── faq_poster.c │ │ ├── faq_room.c │ │ ├── features │ │ ├── fighter │ │ ├── general │ │ ├── golden │ │ ├── guilds │ │ ├── healing │ │ ├── hub_room.c │ │ ├── hub_room.saide.5-17-04 │ │ ├── hub_room2.c │ │ ├── hub_room3.c │ │ ├── mage │ │ ├── misc │ │ ├── multi-characters │ │ ├── newbie_d.c │ │ ├── ooc │ │ ├── overview │ │ ├── pkcont │ │ ├── pkilling │ │ ├── questing │ │ ├── quests │ │ ├── ranger │ │ ├── relationships │ │ ├── roleplay │ │ ├── rules │ │ ├── rules_room.c │ │ ├── speaking │ │ ├── speech │ │ ├── stats │ │ ├── thief │ │ ├── trainer.c │ │ └── who │ ├── roadout_warning │ ├── rooms │ │ ├── cartride │ │ │ ├── cartentry.c │ │ │ ├── off2tabor.c │ │ │ └── tabor2off.c │ │ ├── caves │ │ │ ├── alcove.c │ │ │ ├── cavern.c │ │ │ ├── drownew.h │ │ │ ├── mon │ │ │ │ ├── ndrowf.c │ │ │ │ ├── ndrowf2.c │ │ │ │ ├── ndrowfr.c │ │ │ │ └── ndrowt.c │ │ │ ├── obj │ │ │ │ ├── b_key.c │ │ │ │ ├── c_key.c │ │ │ │ ├── dchain.c │ │ │ │ ├── dstudded.c │ │ │ │ ├── i_key.c │ │ │ │ ├── olsword.c │ │ │ │ └── stonessword.c │ │ │ └── passage.c │ │ ├── drow │ │ │ ├── alcove.c │ │ │ ├── cavern.c │ │ │ ├── drownew.h │ │ │ ├── mon │ │ │ │ ├── hobgob.c │ │ │ │ ├── hobgobf.c │ │ │ │ ├── hobgobf2.c │ │ │ │ ├── hobgobfe.c │ │ │ │ ├── kobold_leader.c │ │ │ │ ├── koboldf.c │ │ │ │ ├── koboldf1.c │ │ │ │ ├── koboldf2.c │ │ │ │ ├── koboldf3.c │ │ │ │ ├── ndrowf.c │ │ │ │ ├── ndrowf2.c │ │ │ │ ├── ndrowfr.c │ │ │ │ └── ndrowt.c │ │ │ ├── obj │ │ │ │ ├── b_key.c │ │ │ │ ├── dchain.c │ │ │ │ ├── dcoif.c │ │ │ │ ├── dleather.c │ │ │ │ ├── dstudded.c │ │ │ │ ├── dwhip.c │ │ │ │ ├── i_key.c │ │ │ │ ├── odagger.c │ │ │ │ ├── olsword.c │ │ │ │ └── ossword.c │ │ │ ├── old │ │ │ │ ├── alcove.c │ │ │ │ ├── cavern.c │ │ │ │ ├── drownew.h │ │ │ │ ├── forest.h │ │ │ │ ├── passage.c │ │ │ │ └── updated.c │ │ │ ├── passage.c │ │ │ ├── rooms │ │ │ │ ├── dn0.c │ │ │ │ ├── dn1.c │ │ │ │ ├── dn10.c │ │ │ │ ├── dn11.c │ │ │ │ ├── dn12.c │ │ │ │ ├── dn13.c │ │ │ │ ├── dn14.c │ │ │ │ ├── dn15.c │ │ │ │ ├── dn16.c │ │ │ │ ├── dn17.c │ │ │ │ ├── dn18.c │ │ │ │ ├── dn19.c │ │ │ │ ├── dn2.c │ │ │ │ ├── dn20.c │ │ │ │ ├── dn21.c │ │ │ │ ├── dn22.c │ │ │ │ ├── dn23.c │ │ │ │ ├── dn24.c │ │ │ │ ├── dn25.c │ │ │ │ ├── dn26.c │ │ │ │ ├── dn27.c │ │ │ │ ├── dn28.c │ │ │ │ ├── dn29.c │ │ │ │ ├── dn3.c │ │ │ │ ├── dn30.c │ │ │ │ ├── dn4.c │ │ │ │ ├── dn5.c │ │ │ │ ├── dn6.c │ │ │ │ ├── dn7.c │ │ │ │ ├── dn8.c │ │ │ │ ├── dn9.c │ │ │ │ ├── old │ │ │ │ │ ├── dn0.c │ │ │ │ │ ├── dn1.c │ │ │ │ │ ├── dn10.c │ │ │ │ │ ├── dn11.c │ │ │ │ │ ├── dn12.c │ │ │ │ │ ├── dn13.c │ │ │ │ │ ├── dn14.c │ │ │ │ │ ├── dn15.c │ │ │ │ │ ├── dn16.c │ │ │ │ │ ├── dn17.c │ │ │ │ │ ├── dn18.c │ │ │ │ │ ├── dn19.c │ │ │ │ │ ├── dn2.c │ │ │ │ │ ├── dn20.c │ │ │ │ │ ├── dn21.c │ │ │ │ │ ├── dn22.c │ │ │ │ │ ├── dn23.c │ │ │ │ │ ├── dn24.c │ │ │ │ │ ├── dn25.c │ │ │ │ │ ├── dn26.c │ │ │ │ │ ├── dn27.c │ │ │ │ │ ├── dn28.c │ │ │ │ │ ├── dn29.c │ │ │ │ │ ├── dn3.c │ │ │ │ │ ├── dn30.c │ │ │ │ │ ├── dn4.c │ │ │ │ │ ├── dn5.c │ │ │ │ │ ├── dn6.c │ │ │ │ │ ├── dn7.c │ │ │ │ │ ├── dn8.c │ │ │ │ │ ├── dn9.c │ │ │ │ │ ├── pit0.c │ │ │ │ │ └── pit1.c │ │ │ │ ├── pit0.c │ │ │ │ └── pit1.c │ │ │ └── updated.c │ │ ├── forest │ │ │ ├── forest.h │ │ │ ├── forest1.c │ │ │ ├── forest10.c │ │ │ ├── forest11.c │ │ │ ├── forest12.c │ │ │ ├── forest13.c │ │ │ ├── forest14.c │ │ │ ├── forest15.c │ │ │ ├── forest16.c │ │ │ ├── forest17.c │ │ │ ├── forest18.c │ │ │ ├── forest19.c │ │ │ ├── forest2.c │ │ │ ├── forest20.c │ │ │ ├── forest21.c │ │ │ ├── forest22.c │ │ │ ├── forest23.c │ │ │ ├── forest24.c │ │ │ ├── forest25.c │ │ │ ├── forest26.c │ │ │ ├── forest27.c │ │ │ ├── forest28.c │ │ │ ├── forest29.c │ │ │ ├── forest3.c │ │ │ ├── forest30.c │ │ │ ├── forest31.c │ │ │ ├── forest32.c │ │ │ ├── forest33.c │ │ │ ├── forest34.c │ │ │ ├── forest35.c │ │ │ ├── forest36.c │ │ │ ├── forest37.c │ │ │ ├── forest38.c │ │ │ ├── forest39.c │ │ │ ├── forest4.c │ │ │ ├── forest40.c │ │ │ ├── forest41.c │ │ │ ├── forest42.c │ │ │ ├── forest43.c │ │ │ ├── forest44.c │ │ │ ├── forest45.c │ │ │ ├── forest46.c │ │ │ ├── forest47.c │ │ │ ├── forest48.c │ │ │ ├── forest49.c │ │ │ ├── forest5.c │ │ │ ├── forest50.c │ │ │ ├── forest51.c │ │ │ ├── forest52.c │ │ │ ├── forest53.c │ │ │ ├── forest54.c │ │ │ ├── forest55.c │ │ │ ├── forest56.c │ │ │ ├── forest57.c │ │ │ ├── forest58.c │ │ │ ├── forest59.c │ │ │ ├── forest6.c │ │ │ ├── forest60.c │ │ │ ├── forest61.c │ │ │ ├── forest62.c │ │ │ ├── forest63.c │ │ │ ├── forest64.c │ │ │ ├── forest65.c │ │ │ ├── forest66.c │ │ │ ├── forest67.c │ │ │ ├── forest68.c │ │ │ ├── forest69.c │ │ │ ├── forest7.c │ │ │ ├── forest70.c │ │ │ ├── forest71.c │ │ │ ├── forest72.c │ │ │ ├── forest72a.c │ │ │ ├── forest72b.c │ │ │ ├── forest72c.c │ │ │ ├── forest73.c │ │ │ ├── forest8.c │ │ │ ├── forest9.c │ │ │ ├── forest9a.c │ │ │ ├── forest9b.c │ │ │ ├── forest9c.c │ │ │ ├── inherit │ │ │ │ ├── forestberries.c │ │ │ │ ├── forestedge.c │ │ │ │ ├── forestlake.c │ │ │ │ ├── forestmain.c │ │ │ │ ├── forestpaths.c │ │ │ │ └── forestridge.c │ │ │ ├── mon │ │ │ │ ├── bear.c │ │ │ │ ├── beegk.c │ │ │ │ ├── bugbear.c │ │ │ │ ├── bugbearch.c │ │ │ │ ├── bugbearg.c │ │ │ │ ├── bugbearh.c │ │ │ │ ├── bugbeark.c │ │ │ │ ├── centipede.c │ │ │ │ ├── centipede2.c │ │ │ │ ├── gfrog.c │ │ │ │ ├── hobgob.c │ │ │ │ ├── hobgobf.c │ │ │ │ ├── hobgobf2.c │ │ │ │ ├── hobgobfe.c │ │ │ │ ├── koboldf.c │ │ │ │ ├── koboldf1.c │ │ │ │ ├── koboldf2.c │ │ │ │ ├── koboldf3.c │ │ │ │ ├── orc.c │ │ │ │ ├── orcf.c │ │ │ │ ├── orcm.c │ │ │ │ ├── rattlesnake.c │ │ │ │ └── spidertd.c │ │ │ ├── rooms - Shortcut.lnk │ │ │ └── stuff │ │ │ │ ├── berries.c │ │ │ │ ├── centdagger.c │ │ │ │ ├── deadrat.c │ │ │ │ ├── journal.c │ │ │ │ ├── kobvest.c │ │ │ │ ├── page_1 │ │ │ │ ├── page_2 │ │ │ │ ├── page_3 │ │ │ │ ├── page_4 │ │ │ │ ├── page_5 │ │ │ │ ├── page_6 │ │ │ │ ├── page_7 │ │ │ │ ├── page_8 │ │ │ │ ├── page_9 │ │ │ │ └── snakemeat.c │ │ ├── graveyard │ │ │ ├── cemetery.c │ │ │ ├── cemetery1.c │ │ │ ├── cemetery2.c │ │ │ ├── cemetery3.c │ │ │ ├── cemetery4.c │ │ │ ├── cemetery5.c │ │ │ ├── cemetery6.c │ │ │ ├── cemetery7.c │ │ │ ├── cemetery8.c │ │ │ ├── graveyard.h │ │ │ ├── mon │ │ │ │ ├── rashan.c │ │ │ │ ├── skeleton.c │ │ │ │ ├── wraith.c │ │ │ │ ├── zombie.c │ │ │ │ └── zombiem.c │ │ │ ├── obj │ │ │ │ ├── axe.c │ │ │ │ ├── boots.c │ │ │ │ ├── ring.c │ │ │ │ └── shield.c │ │ │ ├── tomb.c │ │ │ ├── tomb1.c │ │ │ ├── tomb2.c │ │ │ ├── tomb3.c │ │ │ └── tomb4.c │ │ ├── hill │ │ │ ├── OLD │ │ │ │ ├── hill1.c │ │ │ │ ├── hill10.c │ │ │ │ ├── hill11.c │ │ │ │ ├── hill12.c │ │ │ │ ├── hill13.c │ │ │ │ ├── hill14.c │ │ │ │ ├── hill15.c │ │ │ │ ├── hill16.c │ │ │ │ ├── hill17.c │ │ │ │ ├── hill18.c │ │ │ │ ├── hill19.c │ │ │ │ ├── hill2.c │ │ │ │ ├── hill20.c │ │ │ │ ├── hill21.c │ │ │ │ ├── hill22.c │ │ │ │ ├── hill23.c │ │ │ │ ├── hill24.c │ │ │ │ ├── hill25.c │ │ │ │ ├── hill26.c │ │ │ │ ├── hill27.c │ │ │ │ ├── hill28.c │ │ │ │ ├── hill29.c │ │ │ │ ├── hill3.c │ │ │ │ ├── hill30.c │ │ │ │ ├── hill31.c │ │ │ │ ├── hill31a.c │ │ │ │ ├── hill31b.c │ │ │ │ ├── hill32.c │ │ │ │ ├── hill33.c │ │ │ │ ├── hill4.c │ │ │ │ ├── hill5.c │ │ │ │ ├── hill6.c │ │ │ │ ├── hill7.c │ │ │ │ ├── hill8.c │ │ │ │ ├── hill9.c │ │ │ │ ├── mine1.c │ │ │ │ ├── mine10.c │ │ │ │ ├── mine11.c │ │ │ │ ├── mine12.c │ │ │ │ ├── mine13.c │ │ │ │ ├── mine14.c │ │ │ │ ├── mine15.c │ │ │ │ ├── mine16.c │ │ │ │ ├── mine17.c │ │ │ │ ├── mine18.c │ │ │ │ ├── mine19.c │ │ │ │ ├── mine2.c │ │ │ │ ├── mine20.c │ │ │ │ ├── mine21.c │ │ │ │ ├── mine22.c │ │ │ │ ├── mine23.c │ │ │ │ ├── mine24.c │ │ │ │ ├── mine25.c │ │ │ │ ├── mine26.c │ │ │ │ ├── mine27.c │ │ │ │ ├── mine3.c │ │ │ │ ├── mine4.c │ │ │ │ ├── mine5.c │ │ │ │ ├── mine6.c │ │ │ │ ├── mine7.c │ │ │ │ ├── mine8.c │ │ │ │ ├── mine9.c │ │ │ │ └── tent1.c │ │ │ ├── cart │ │ │ │ ├── off2muul.c │ │ │ │ └── off2tabor.c │ │ │ ├── inherit │ │ │ │ └── mine.c │ │ │ ├── mine1.c │ │ │ ├── mine10.c │ │ │ ├── mine11.c │ │ │ ├── mine12.c │ │ │ ├── mine13.c │ │ │ ├── mine14.c │ │ │ ├── mine15.c │ │ │ ├── mine16.c │ │ │ ├── mine17.c │ │ │ ├── mine18.c │ │ │ ├── mine19.c │ │ │ ├── mine2.c │ │ │ ├── mine20.c │ │ │ ├── mine21.c │ │ │ ├── mine22.c │ │ │ ├── mine23.c │ │ │ ├── mine24.c │ │ │ ├── mine25.c │ │ │ ├── mine26.c │ │ │ ├── mine27.c │ │ │ ├── mine3.c │ │ │ ├── mine4.c │ │ │ ├── mine5.c │ │ │ ├── mine6.c │ │ │ ├── mine7.c │ │ │ ├── mine8.c │ │ │ ├── mine9.c │ │ │ └── mon │ │ │ │ ├── dratharm.c │ │ │ │ ├── dwarf1.c │ │ │ │ ├── gnometent.c │ │ │ │ ├── gnometentf.c │ │ │ │ ├── halfling.c │ │ │ │ └── halflingf.c │ │ ├── inherit │ │ │ ├── hilltents.c │ │ │ ├── keep.h │ │ │ ├── keephall.c │ │ │ ├── keephall2.c │ │ │ ├── keepmove.c │ │ │ ├── keepupper.c │ │ │ ├── road_out_middle.c │ │ │ ├── road_out_north1.c │ │ │ ├── road_out_north2.c │ │ │ ├── road_out_south.c │ │ │ ├── road_out_south1.c │ │ │ ├── road_out_south2.c │ │ │ ├── roadrats.c │ │ │ ├── ruins.c │ │ │ ├── tentob.c │ │ │ ├── town_wlight.c │ │ │ └── townmove.c │ │ ├── keep │ │ │ ├── basement1.c │ │ │ ├── basement2.c │ │ │ ├── basement3.c │ │ │ ├── basement4.c │ │ │ ├── bed1.c │ │ │ ├── crawler.c │ │ │ ├── floor1.c │ │ │ ├── floor2.c │ │ │ ├── floor3.c │ │ │ ├── floor4.c │ │ │ ├── floor5.c │ │ │ ├── floor6.c │ │ │ ├── floor7.c │ │ │ ├── floor8.c │ │ │ ├── halfogre1.c │ │ │ ├── halfogre2.c │ │ │ ├── hidden1.c │ │ │ ├── hidden2.c │ │ │ ├── hidden3.c │ │ │ ├── hidden4.c │ │ │ ├── keep.h │ │ │ ├── keep1.c │ │ │ ├── keep10.c │ │ │ ├── keep11.c │ │ │ ├── keep12.c │ │ │ ├── keep13.c │ │ │ ├── keep14.c │ │ │ ├── keep15.c │ │ │ ├── keep16.c │ │ │ ├── keep17.c │ │ │ ├── keep18.c │ │ │ ├── keep19.c │ │ │ ├── keep2.c │ │ │ ├── keep20.c │ │ │ ├── keep3.c │ │ │ ├── keep4.c │ │ │ ├── keep5.c │ │ │ ├── keep6.c │ │ │ ├── keep7.c │ │ │ ├── keep8.c │ │ │ ├── keep9.c │ │ │ ├── mon │ │ │ │ ├── crawler.c │ │ │ │ ├── halfogre.c │ │ │ │ ├── imephit.c │ │ │ │ ├── jessa.c │ │ │ │ ├── mephit.c │ │ │ │ ├── old │ │ │ │ │ ├── crawler.c │ │ │ │ │ ├── halfogre.c │ │ │ │ │ ├── imephit.c │ │ │ │ │ ├── jessa.c │ │ │ │ │ ├── mephit.c │ │ │ │ │ ├── rat.c │ │ │ │ │ ├── spider.c │ │ │ │ │ ├── xvart.c │ │ │ │ │ └── xvarts.c │ │ │ │ ├── rat.c │ │ │ │ ├── spider.c │ │ │ │ ├── xvart.c │ │ │ │ └── xvarts.c │ │ │ ├── obj │ │ │ │ ├── cloak.c │ │ │ │ ├── gem.c │ │ │ │ ├── key.c │ │ │ │ ├── lclub.c │ │ │ │ ├── lrobe.c │ │ │ │ ├── old │ │ │ │ │ ├── staffbands.c │ │ │ │ │ ├── staffdragon.c │ │ │ │ │ ├── stafforb.c │ │ │ │ │ └── staffstave.c │ │ │ │ ├── pants.c │ │ │ │ ├── pouch.c │ │ │ │ ├── quest_staff.c │ │ │ │ ├── robe.c │ │ │ │ ├── spices.c │ │ │ │ ├── srobe.c │ │ │ │ ├── srobe2.c │ │ │ │ ├── sstaff.c │ │ │ │ ├── staff.c │ │ │ │ ├── staffbands.c │ │ │ │ ├── staffdragon.c │ │ │ │ ├── stafforb.c │ │ │ │ ├── staffstave.c │ │ │ │ └── stone.c │ │ │ ├── old │ │ │ │ ├── basement1.c │ │ │ │ ├── basement2.c │ │ │ │ ├── basement3.c │ │ │ │ ├── basement4.c │ │ │ │ ├── basement5.c │ │ │ │ ├── floor1.c │ │ │ │ ├── floor2.c │ │ │ │ ├── floor3.c │ │ │ │ ├── floor4.c │ │ │ │ ├── floor5.c │ │ │ │ ├── floor6.c │ │ │ │ ├── floor7.c │ │ │ │ ├── floor8.c │ │ │ │ ├── keep.h │ │ │ │ ├── keep1.c │ │ │ │ ├── keep10.c │ │ │ │ ├── keep11.c │ │ │ │ ├── keep12.c │ │ │ │ ├── keep13.c │ │ │ │ ├── keep14.c │ │ │ │ ├── keep15.c │ │ │ │ ├── keep16.c │ │ │ │ ├── keep17.c │ │ │ │ ├── keep18.c │ │ │ │ ├── keep19.c │ │ │ │ ├── keep2.c │ │ │ │ ├── keep20.c │ │ │ │ ├── keep21.c │ │ │ │ ├── keep22.c │ │ │ │ ├── keep23.c │ │ │ │ ├── keep24.c │ │ │ │ ├── keep25.c │ │ │ │ ├── keep26.c │ │ │ │ ├── keep27.c │ │ │ │ ├── keep28.c │ │ │ │ ├── keep29.c │ │ │ │ ├── keep3.c │ │ │ │ ├── keep30.c │ │ │ │ ├── keep31.c │ │ │ │ ├── keep32.c │ │ │ │ ├── keep33.c │ │ │ │ ├── keep34.c │ │ │ │ ├── keep35.c │ │ │ │ ├── keep36.c │ │ │ │ ├── keep37.c │ │ │ │ ├── keep38.c │ │ │ │ ├── keep39.c │ │ │ │ ├── keep4.c │ │ │ │ ├── keep40.c │ │ │ │ ├── keep41.c │ │ │ │ ├── keep5.c │ │ │ │ ├── keep6.c │ │ │ │ ├── keep7.c │ │ │ │ ├── keep8.c │ │ │ │ ├── keep9.c │ │ │ │ ├── map │ │ │ │ ├── mon │ │ │ │ │ ├── carrion.c │ │ │ │ │ ├── halfogre.c │ │ │ │ │ ├── mephit.c │ │ │ │ │ ├── rat.c │ │ │ │ │ ├── spider.c │ │ │ │ │ ├── xvart.c │ │ │ │ │ └── xvarts.c │ │ │ │ ├── obj │ │ │ │ │ ├── gem.c │ │ │ │ │ ├── key.c │ │ │ │ │ ├── lrobe.c │ │ │ │ │ ├── pouch.c │ │ │ │ │ ├── srobe.c │ │ │ │ │ ├── srobe2.c │ │ │ │ │ ├── sstaff.c │ │ │ │ │ ├── staff.c │ │ │ │ │ └── stone.c │ │ │ │ ├── stair1.c │ │ │ │ └── stair2.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── saideold │ │ │ │ └── path4.c │ │ │ ├── stair1.c │ │ │ ├── stair2.c │ │ │ ├── storage.c │ │ │ ├── storage2.c │ │ │ └── storage3.c │ │ ├── lake │ │ │ ├── acorn.c │ │ │ ├── atomie.c │ │ │ ├── atomiecrown.c │ │ │ ├── bufo.c │ │ │ ├── frog.c │ │ │ ├── lake1.c │ │ │ ├── lake2.c │ │ │ ├── lake3.c │ │ │ ├── lake4.c │ │ │ ├── lake5.c │ │ │ ├── lake6.c │ │ │ ├── lake7.c │ │ │ ├── lake8.c │ │ │ ├── lake9.c │ │ │ ├── lakeinherit.c │ │ │ ├── lakelog.c │ │ │ ├── spritereed.c │ │ │ └── spriterobe.c │ │ ├── meadow │ │ │ ├── inherits │ │ │ │ ├── meadow.c │ │ │ │ ├── meadoweast.c │ │ │ │ ├── meadownorth.c │ │ │ │ ├── meadownortheast.c │ │ │ │ ├── meadownorthwest.c │ │ │ │ ├── meadowsouth.c │ │ │ │ ├── meadowsoutheast.c │ │ │ │ ├── meadowsouthwest.c │ │ │ │ └── meadowwest.c │ │ │ ├── meadow.h │ │ │ ├── meadow1.c │ │ │ ├── meadow10.c │ │ │ ├── meadow11.c │ │ │ ├── meadow12.c │ │ │ ├── meadow13.c │ │ │ ├── meadow14.c │ │ │ ├── meadow15.c │ │ │ ├── meadow16.c │ │ │ ├── meadow2.c │ │ │ ├── meadow3.c │ │ │ ├── meadow4.c │ │ │ ├── meadow5.c │ │ │ ├── meadow6.c │ │ │ ├── meadow7.c │ │ │ ├── meadow8.c │ │ │ ├── meadow9.c │ │ │ ├── mon │ │ │ │ ├── dog.c │ │ │ │ ├── rat.c │ │ │ │ └── snake.c │ │ │ └── ob │ │ │ │ └── newbie_gem.c │ │ ├── road │ │ │ ├── froad.c │ │ │ ├── froad1.c │ │ │ ├── froad10.c │ │ │ ├── froad11.c │ │ │ ├── froad12.c │ │ │ ├── froad13.c │ │ │ ├── froad14.c │ │ │ ├── froad15.c │ │ │ ├── froad16.c │ │ │ ├── froad17.c │ │ │ ├── froad18.c │ │ │ ├── froad19.c │ │ │ ├── froad2.c │ │ │ ├── froad20.c │ │ │ ├── froad3.c │ │ │ ├── froad4.c │ │ │ ├── froad5.c │ │ │ ├── froad6.c │ │ │ ├── froad7.c │ │ │ ├── froad8.c │ │ │ ├── froad9.c │ │ │ └── old │ │ │ │ ├── cemetery1.c │ │ │ │ ├── cemetery2.c │ │ │ │ ├── cemetery3.c │ │ │ │ ├── cemetery4.c │ │ │ │ ├── cemetery5.c │ │ │ │ ├── cemetery6.c │ │ │ │ ├── efroad1.c │ │ │ │ ├── efroad2.c │ │ │ │ ├── efroad3.c │ │ │ │ ├── efroad4.c │ │ │ │ ├── path1.c │ │ │ │ ├── path10.c │ │ │ │ ├── path11.c │ │ │ │ ├── path12.c │ │ │ │ ├── path13.c │ │ │ │ ├── path2.c │ │ │ │ ├── path3.c │ │ │ │ ├── path4.c │ │ │ │ ├── path5.c │ │ │ │ ├── path6.c │ │ │ │ ├── path7.c │ │ │ │ ├── path8.c │ │ │ │ ├── path9.c │ │ │ │ ├── road1.c │ │ │ │ ├── road10.c │ │ │ │ ├── road11.c │ │ │ │ ├── road12.c │ │ │ │ ├── road13.c │ │ │ │ ├── road14.c │ │ │ │ ├── road15.c │ │ │ │ ├── road16.c │ │ │ │ ├── road17.c │ │ │ │ ├── road18.c │ │ │ │ ├── road19.c │ │ │ │ ├── road2.c │ │ │ │ ├── road20.c │ │ │ │ ├── road21.c │ │ │ │ ├── road22.c │ │ │ │ ├── road23.c │ │ │ │ ├── road24.c │ │ │ │ ├── road25.c │ │ │ │ ├── road26.c │ │ │ │ ├── road27.c │ │ │ │ ├── road28.c │ │ │ │ ├── road29.c │ │ │ │ ├── road3.c │ │ │ │ ├── road30.c │ │ │ │ ├── road31.c │ │ │ │ ├── road32.c │ │ │ │ ├── road33.c │ │ │ │ ├── road34.c │ │ │ │ ├── road35.c │ │ │ │ ├── road36.c │ │ │ │ ├── road37.c │ │ │ │ ├── road38.c │ │ │ │ ├── road39.c │ │ │ │ ├── road4.c │ │ │ │ ├── road40.c │ │ │ │ ├── road41.c │ │ │ │ ├── road42.c │ │ │ │ ├── road43.c │ │ │ │ ├── road44.c │ │ │ │ ├── road45.c │ │ │ │ ├── road46.c │ │ │ │ ├── road47.c │ │ │ │ ├── road48.c │ │ │ │ ├── road49.c │ │ │ │ ├── road5.c │ │ │ │ ├── road50.c │ │ │ │ ├── road51.c │ │ │ │ ├── road52.c │ │ │ │ ├── road6.c │ │ │ │ ├── road7.c │ │ │ │ ├── road8.c │ │ │ │ ├── road9.c │ │ │ │ ├── sfroad1.c │ │ │ │ ├── sfroad2.c │ │ │ │ ├── square.c │ │ │ │ ├── wfroad1.c │ │ │ │ ├── wfroad2.c │ │ │ │ ├── wfroad3.c │ │ │ │ ├── wfroad4.c │ │ │ │ ├── wfroad5.c │ │ │ │ ├── wfroad6.c │ │ │ │ └── wfroad7.c │ │ ├── roadout │ │ │ ├── mtnroad1.c │ │ │ ├── mtnroad10.c │ │ │ ├── mtnroad11.c │ │ │ ├── mtnroad12.c │ │ │ ├── mtnroad13.c │ │ │ ├── mtnroad14.c │ │ │ ├── mtnroad15.c │ │ │ ├── mtnroad16.c │ │ │ ├── mtnroad17.c │ │ │ ├── mtnroad18.c │ │ │ ├── mtnroad19.c │ │ │ ├── mtnroad2.c │ │ │ ├── mtnroad20.c │ │ │ ├── mtnroad21.c │ │ │ ├── mtnroad22.c │ │ │ ├── mtnroad23.c │ │ │ ├── mtnroad24.c │ │ │ ├── mtnroad25.c │ │ │ ├── mtnroad26.c │ │ │ ├── mtnroad27.c │ │ │ ├── mtnroad28.c │ │ │ ├── mtnroad29.c │ │ │ ├── mtnroad3.c │ │ │ ├── mtnroad30.c │ │ │ ├── mtnroad31.c │ │ │ ├── mtnroad32.c │ │ │ ├── mtnroad33.c │ │ │ ├── mtnroad34.c │ │ │ ├── mtnroad35.c │ │ │ ├── mtnroad36.c │ │ │ ├── mtnroad37.c │ │ │ ├── mtnroad38.c │ │ │ ├── mtnroad39.c │ │ │ ├── mtnroad4.c │ │ │ ├── mtnroad40.c │ │ │ ├── mtnroad41.c │ │ │ ├── mtnroad42.c │ │ │ ├── mtnroad43.c │ │ │ ├── mtnroad44.c │ │ │ ├── mtnroad45.c │ │ │ ├── mtnroad46.c │ │ │ ├── mtnroad47.c │ │ │ ├── mtnroad48.c │ │ │ ├── mtnroad49.c │ │ │ ├── mtnroad5.c │ │ │ ├── mtnroad6.c │ │ │ ├── mtnroad7.c │ │ │ ├── mtnroad8.c │ │ │ ├── mtnroad9.c │ │ │ └── obj │ │ │ │ └── gatesign.c │ │ ├── ruins │ │ │ ├── armor.c │ │ │ ├── bar1.c │ │ │ ├── bar2.c │ │ │ ├── bpath.c │ │ │ ├── church.c │ │ │ ├── church2.c │ │ │ ├── empty1.c │ │ │ ├── empty2.c │ │ │ ├── empty3.c │ │ │ ├── empty4.c │ │ │ ├── eroad1.c │ │ │ ├── eroad2.c │ │ │ ├── eroad3.c │ │ │ ├── eroad4.c │ │ │ ├── eroad5.c │ │ │ ├── eroad6.c │ │ │ ├── eroad7.c │ │ │ ├── gpath1.c │ │ │ ├── gpath2.c │ │ │ ├── gpath3.c │ │ │ ├── gpath4.c │ │ │ ├── gpath5.c │ │ │ ├── gstore.c │ │ │ ├── healer.c │ │ │ ├── inn.c │ │ │ ├── ipath1.c │ │ │ ├── ipath2.c │ │ │ ├── magic.c │ │ │ ├── road1.c │ │ │ ├── road2.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ ├── road9.c │ │ │ ├── weapon.c │ │ │ ├── wroad1.c │ │ │ ├── wroad2.c │ │ │ ├── wroad3.c │ │ │ ├── wroad4.c │ │ │ ├── wroad5.c │ │ │ ├── wroad6.c │ │ │ └── wroad7.c │ │ ├── special │ │ │ ├── arch1.c │ │ │ ├── arch2.c │ │ │ ├── arch3.c │ │ │ ├── arch4.c │ │ │ ├── arch5.c │ │ │ ├── arch6.c │ │ │ ├── armor_storage.c │ │ │ ├── dwarftrader_storage.c │ │ │ ├── general_storage.c │ │ │ ├── instrument_storage.c │ │ │ ├── jeweler_storage.c │ │ │ ├── scroll_shop.c │ │ │ ├── tailor_storage.c │ │ │ └── weapon_storage.c │ │ ├── square.hints │ │ ├── square2.c │ │ ├── temples │ │ │ ├── akadi.c │ │ │ ├── anhur.c │ │ │ ├── auppenser.c │ │ │ ├── auril.c │ │ │ ├── bane.c │ │ │ ├── beshaba.c │ │ │ ├── cyric.c │ │ │ ├── cyric_inh.c │ │ │ ├── grumbar.c │ │ │ ├── helm.c │ │ │ ├── istishia.c │ │ │ ├── kelemvor.c │ │ │ ├── kossuth.c │ │ │ ├── lathander.c │ │ │ ├── malar.c │ │ │ ├── mask.c │ │ │ ├── mielikki.c │ │ │ ├── mystra.c │ │ │ ├── npc │ │ │ │ ├── p_akadi.c │ │ │ │ ├── p_anhur.c │ │ │ │ ├── p_auppenser.c │ │ │ │ ├── p_auril.c │ │ │ │ ├── p_bane.c │ │ │ │ ├── p_beshaba.c │ │ │ │ ├── p_cyric.c │ │ │ │ ├── p_eldath.c │ │ │ │ ├── p_grumbar.c │ │ │ │ ├── p_helm.c │ │ │ │ ├── p_istishia.c │ │ │ │ ├── p_kelemvor.c │ │ │ │ ├── p_kossuth.c │ │ │ │ ├── p_lathander.c │ │ │ │ ├── p_loviatar.c │ │ │ │ ├── p_malar.c │ │ │ │ ├── p_mask.c │ │ │ │ ├── p_mielikki.c │ │ │ │ ├── p_mystra.c │ │ │ │ ├── p_oghma.c │ │ │ │ ├── p_selune.c │ │ │ │ ├── p_shar.c │ │ │ │ ├── p_shaundakul.c │ │ │ │ ├── p_silvanus.c │ │ │ │ ├── p_sune.c │ │ │ │ ├── p_talos.c │ │ │ │ ├── p_temp.c │ │ │ │ ├── p_tempus.c │ │ │ │ ├── p_torm.c │ │ │ │ ├── p_tymora.c │ │ │ │ ├── p_tyr.c │ │ │ │ └── p_xvim.c │ │ │ ├── oghma.c │ │ │ ├── selune.c │ │ │ ├── shar.c │ │ │ ├── shaundakul.c │ │ │ ├── silvanus.c │ │ │ ├── sune.c │ │ │ ├── talos.c │ │ │ ├── tempus.c │ │ │ ├── torm.c │ │ │ ├── tymora.c │ │ │ └── tyr.c │ │ └── town │ │ │ ├── armor.c │ │ │ ├── bank.c │ │ │ ├── bardcomps.c │ │ │ ├── church.c │ │ │ ├── clothing.c │ │ │ ├── estreet1.c │ │ │ ├── estreet2.c │ │ │ ├── estreet3.c │ │ │ ├── fencer.c │ │ │ ├── general.c │ │ │ ├── healer.c │ │ │ ├── instruments.c │ │ │ ├── library.c │ │ │ ├── magic.c │ │ │ ├── mtower1.c │ │ │ ├── mtower3.c │ │ │ ├── mtower4.c │ │ │ ├── mtower5.c │ │ │ ├── nstreet1.c │ │ │ ├── nstreet2.c │ │ │ ├── nstreet3.c │ │ │ ├── old │ │ │ ├── archery.c │ │ │ ├── armor.c │ │ │ ├── bank.c │ │ │ ├── bardcomps.c │ │ │ ├── boards1.closed │ │ │ ├── boards2.closed │ │ │ ├── boards3.closed │ │ │ ├── church.c │ │ │ ├── clothing.c │ │ │ ├── clothing_test.c │ │ │ ├── ebar.c │ │ │ ├── ehouse1.c │ │ │ ├── ehouse2.c │ │ │ ├── ehouse3.c │ │ │ ├── ehouse4.c │ │ │ ├── ehouse5.c │ │ │ ├── eroad1.c │ │ │ ├── eroad2.c │ │ │ ├── eroad3.c │ │ │ ├── eroad4.c │ │ │ ├── eroad5.c │ │ │ ├── eroad6.c │ │ │ ├── erstreet1.c │ │ │ ├── erstreet2.c │ │ │ ├── erstreet3.c │ │ │ ├── erstreet4.c │ │ │ ├── erstreet5.c │ │ │ ├── erstreet6.c │ │ │ ├── erstreet7.c │ │ │ ├── erstreet8.c │ │ │ ├── erstreet9.c │ │ │ ├── estreet1.c │ │ │ ├── estreet2.c │ │ │ ├── estreet3.c │ │ │ ├── estreet4.c │ │ │ ├── fencer.c │ │ │ ├── general.c │ │ │ ├── healer.c │ │ │ ├── healer.circe6-6-07 │ │ │ ├── inn.c │ │ │ ├── instruments.c │ │ │ ├── jeweler.c │ │ │ ├── library.c │ │ │ ├── magic.c │ │ │ ├── mtower1.c │ │ │ ├── mtower2.c │ │ │ ├── mtower3.c │ │ │ ├── mtower4.c │ │ │ ├── mtower5.c │ │ │ ├── newbie_healer.c │ │ │ ├── nstreet1.c │ │ │ ├── nstreet2.c │ │ │ ├── nstreet3.c │ │ │ ├── nstreet4.c │ │ │ ├── nstreet5.c │ │ │ ├── nstreet6.c │ │ │ ├── nstreet7.c │ │ │ ├── park1.c │ │ │ ├── park2.c │ │ │ ├── park3.c │ │ │ ├── park4.c │ │ │ ├── park5.c │ │ │ ├── park6.c │ │ │ ├── park7.c │ │ │ ├── park8.c │ │ │ ├── park9.c │ │ │ ├── portals │ │ │ ├── portals.c │ │ │ ├── psicomps.c │ │ │ ├── psifoyer.c │ │ │ ├── psilounge.c │ │ │ ├── psistore.c │ │ │ ├── scribe.c │ │ │ ├── square.c │ │ │ ├── square.gar.2 │ │ │ ├── sstreet1.c │ │ │ ├── sstreet2.c │ │ │ ├── sstreet3.c │ │ │ ├── stable.c │ │ │ ├── tether.c │ │ │ ├── trainer.c │ │ │ ├── wbar.c │ │ │ ├── weapon.c │ │ │ ├── whouse1.c │ │ │ ├── whouse2.c │ │ │ ├── whouse3.c │ │ │ ├── whouse4.c │ │ │ ├── whouse5.c │ │ │ ├── wroad1.c │ │ │ ├── wroad2.c │ │ │ ├── wroad3.c │ │ │ ├── wroad4.c │ │ │ ├── wroad5.c │ │ │ ├── wroad6.c │ │ │ ├── wrstreet1.c │ │ │ ├── wrstreet2.c │ │ │ ├── wrstreet3.c │ │ │ ├── wrstreet4.c │ │ │ ├── wrstreet5.c │ │ │ ├── wrstreet6.c │ │ │ ├── wrstreet7.c │ │ │ ├── wrstreet8.c │ │ │ ├── wrstreet9.c │ │ │ ├── wstreet1.c │ │ │ ├── wstreet2.c │ │ │ ├── wstreet3.c │ │ │ └── wstreet4.c │ │ │ ├── portals.c │ │ │ ├── psicomps.c │ │ │ ├── psifoyer.c │ │ │ ├── psistore.c │ │ │ ├── scribe.c │ │ │ ├── square.c │ │ │ ├── sstreet1.c │ │ │ ├── sstreet2.c │ │ │ ├── sstreet3.c │ │ │ ├── stable.c │ │ │ ├── tether.c │ │ │ ├── wbar.c │ │ │ ├── weapon.c │ │ │ ├── wstreet1.c │ │ │ ├── wstreet2.c │ │ │ └── wstreet3.c │ └── tutorial │ │ ├── defs.h │ │ ├── mon │ │ ├── tutorial1.c │ │ ├── tutorial2.c │ │ ├── tutorial3.c │ │ ├── tutorial4.c │ │ └── tutorial5.c │ │ ├── mypotion.c │ │ └── rooms │ │ ├── room2.c │ │ ├── room3.c │ │ ├── room4.c │ │ └── room5.c ├── noload │ ├── noload_000.c │ ├── noload_001.c │ ├── noload_002.c │ ├── noload_003.c │ ├── noload_004.c │ ├── noload_005.c │ ├── noload_006.c │ ├── noload_007.c │ ├── noload_008.c │ └── noload_009.c ├── npc │ ├── QNPC.c │ ├── aldera.c │ ├── alinbar.c │ ├── ash.c │ ├── billeas.c │ ├── brunson.c │ ├── calcistor.c │ ├── celastral.c │ ├── crier.c │ ├── cutter.c │ ├── deku_cloth.c │ ├── deku_metal.c │ ├── deku_psychic.c │ ├── deku_wood.c │ ├── delorn.c │ ├── dionysus.c │ ├── effram.c │ ├── finane.c │ ├── ginaratha.c │ ├── glarrina.c │ ├── grumblecuss.c │ ├── kenuric.c │ ├── kolito.c │ ├── madelyn.c │ ├── needlia.c │ ├── netil.c │ ├── nulipseas.c │ ├── obj │ │ ├── rolloemblist.c │ │ ├── rollokit.c │ │ └── rollorates.c │ ├── ookla.c │ ├── rollo.c │ ├── rollo.h │ ├── rt.c │ ├── sarlen.c │ ├── shiper.c │ ├── simic.c │ ├── skeet.c │ ├── skinkpuss.c │ ├── storage │ │ ├── billeas_storage.c │ │ ├── brunson_storage.c │ │ ├── cutter_storage.c │ │ ├── deku_cloth_storage.c │ │ ├── deku_metal_storage.c │ │ ├── deku_wood_storage.c │ │ ├── effram_storage.c │ │ ├── finane_storage.c │ │ ├── ginaratha_storage.c │ │ ├── glarrina_storage.c │ │ ├── needlia_storage.c │ │ ├── nulipseas_storage.c │ │ ├── swarmani_storage.c │ │ ├── veric_storage.c │ │ └── whitson_storage.c │ ├── swarmani.c │ ├── teles.c │ ├── ternia.c │ ├── testNPC.c │ ├── thrance.c │ ├── ticio.c │ ├── trainer_deku.c │ ├── trainer_newbie.c │ ├── trainer_seneca.c │ ├── trainer_tabor.c │ ├── veric.c │ └── whitson.c ├── obj │ ├── armour │ │ ├── banded.c │ │ ├── basinet.c │ │ ├── brigadine.c │ │ ├── bronze.c │ │ ├── buckler.c │ │ ├── chain.c │ │ ├── coif.c │ │ ├── field.c │ │ ├── fullplate.c │ │ ├── helm.c │ │ ├── hide.c │ │ ├── leather.c │ │ ├── mshield.c │ │ ├── padded.c │ │ ├── plate.c │ │ ├── ring.c │ │ ├── robe.c │ │ ├── scale.c │ │ ├── shield.c │ │ ├── splint.c │ │ ├── sshield.c │ │ └── studded.c │ ├── castle.c │ ├── hm_room.c │ ├── mob_maker.c │ ├── online09d2.c │ └── room_maker.c ├── player.village │ ├── architect.c │ ├── archnote.c │ ├── doornote.c │ ├── doorwizard.c │ ├── house.c │ ├── housebook.c │ ├── housebook │ │ ├── page1 │ │ ├── page2 │ │ ├── page3 │ │ ├── page4 │ │ └── page5 │ ├── housecontract.c │ ├── housenote.c │ ├── item.c │ ├── itemnote.c │ ├── itemwizard.c │ ├── key.c │ ├── lockoffice.c │ ├── nroad1.c │ ├── office.c │ ├── phouse.c │ ├── pvillage.h │ ├── road.c │ └── village │ │ ├── melnmarn.c │ │ ├── mroad1.c │ │ ├── mroad2.c │ │ ├── mroad3.c │ │ ├── mroad4.c │ │ ├── mroad5.c │ │ ├── mroad6.c │ │ ├── mroad7.c │ │ ├── mroad8.c │ │ ├── mroad9.c │ │ ├── nroad1.c │ │ ├── nroad2.c │ │ ├── nroad3.c │ │ ├── nroad4.c │ │ ├── nroad5.c │ │ ├── nroad6.c │ │ ├── nroad7.c │ │ ├── nroad8.c │ │ ├── nroad9.c │ │ ├── pvroad1.c │ │ ├── pvroad2.c │ │ ├── pvroad3.c │ │ ├── pvroad4.c │ │ ├── pvroad5.c │ │ ├── pvroad6.c │ │ ├── pvroad7.c │ │ ├── pvroad8.c │ │ ├── pvroad9.c │ │ ├── sroad1.c │ │ ├── sroad2.c │ │ ├── sroad3.c │ │ ├── sroad4.c │ │ ├── sroad5.c │ │ ├── sroad6.c │ │ ├── sroad7.c │ │ ├── sroad8.c │ │ └── sroad9.c ├── player_houses │ ├── abrahil │ │ ├── bedroom.c │ │ ├── kitchen.c │ │ ├── main.c │ │ ├── meeting.c │ │ ├── trail6.c │ │ └── yard.c │ ├── alzar │ │ ├── atrium.c │ │ ├── cobblestone-pathway.c │ │ ├── conference-room.c │ │ ├── corridor.c │ │ ├── entrance-to-atrium.c │ │ ├── hallway.c │ │ ├── library.c │ │ ├── magi-laboratory.c │ │ ├── recycling-facility.c │ │ └── torture-chamber.c │ ├── amberly │ │ ├── amberly.h │ │ ├── obj │ │ │ └── food.c │ │ └── rooms │ │ │ ├── garden.c │ │ │ ├── grotto.c │ │ │ └── pond.c │ ├── aunuit │ │ ├── aunuit.h │ │ ├── bathroom.c │ │ ├── bedroom.c │ │ ├── chamber_of_reckoning.c │ │ ├── dining_hall.c │ │ ├── downward_spiral.c │ │ ├── downward_spiral_2.c │ │ ├── dragons_landing.c │ │ ├── gates.c │ │ ├── grotto.c │ │ ├── guest_room_1.c │ │ ├── guest_room_2.c │ │ ├── maw.c │ │ ├── midnight_river.c │ │ ├── obj │ │ │ ├── draconic_sentinel.c │ │ │ ├── house_sigil.c │ │ │ └── thief_obj.c │ │ ├── pool.c │ │ ├── shadow1.c │ │ ├── shadow10.c │ │ ├── shadow11.c │ │ ├── shadow12.c │ │ ├── shadow13.c │ │ ├── shadow14.c │ │ ├── shadow15.c │ │ ├── shadow2.c │ │ ├── shadow3.c │ │ ├── shadow4.c │ │ ├── shadow5.c │ │ ├── shadow6.c │ │ ├── shadow7.c │ │ ├── shadow8.c │ │ ├── shadow9.c │ │ ├── shadow_vault.c │ │ ├── staff │ │ │ └── enkahut.c │ │ ├── storage │ │ │ ├── room_inherit.c │ │ │ └── shadow_maze.c │ │ ├── tunnel01.c │ │ ├── tunnel02.c │ │ ├── tunnel03.c │ │ ├── tunnel04.c │ │ ├── tunnel05.c │ │ ├── tunnel200.c │ │ ├── tunnel201.c │ │ ├── tunnel202.c │ │ ├── tunnel203.c │ │ ├── tunnel204.c │ │ ├── tunnel205.c │ │ ├── tunnel206.c │ │ ├── tunnel207.c │ │ ├── tunnel208.c │ │ ├── tunnel209.c │ │ ├── tunnel210.c │ │ ├── tunnel211.c │ │ ├── tunnel212.c │ │ ├── tunnel213.c │ │ ├── tunnel214.c │ │ ├── tunnel215.c │ │ ├── tunnel216.c │ │ ├── upper_landing.c │ │ ├── vic_room.c │ │ └── west_wing.c │ ├── belendithas │ │ ├── defs.h │ │ └── old │ │ │ ├── dithasimage.c │ │ │ ├── foyer.c │ │ │ ├── lava.c │ │ │ ├── pawnforge.c │ │ │ └── pawnshop.c │ ├── daelmas │ │ ├── NOTE │ │ ├── daelmas.h │ │ ├── mons │ │ │ ├── chez.c │ │ │ ├── fenegal.c │ │ │ └── rubin.c │ │ ├── obj │ │ │ ├── calamari.c │ │ │ ├── fish_sandwich.c │ │ │ ├── fish_stew.c │ │ │ ├── gruel.c │ │ │ ├── istea.c │ │ │ ├── marble_key.c │ │ │ ├── salad.c │ │ │ ├── shark_steak.c │ │ │ └── twater.c │ │ └── rooms │ │ │ ├── balc.c │ │ │ ├── dael_room.c │ │ │ ├── dp0.c │ │ │ ├── dp1.c │ │ │ ├── dp2.c │ │ │ ├── dp3.c │ │ │ ├── dp4.c │ │ │ ├── dp5.c │ │ │ ├── dungeon.c │ │ │ ├── foyer.c │ │ │ ├── gab_room.c │ │ │ ├── garden.c │ │ │ ├── hblood0.c │ │ │ ├── hblood1.c │ │ │ ├── hblood2.c │ │ │ ├── hblood3.c │ │ │ ├── kitchen.c │ │ │ ├── land2.c │ │ │ ├── land3.c │ │ │ ├── land4.c │ │ │ ├── land5.c │ │ │ ├── land6.c │ │ │ ├── mast_room.c │ │ │ ├── rskulls.c │ │ │ ├── sitting.c │ │ │ ├── study.c │ │ │ ├── torture.c │ │ │ ├── twall.c │ │ │ └── wash_room.c │ ├── death │ │ ├── obj │ │ │ └── soul_scry_orb.c │ │ └── vic_storage.c │ ├── defines.h │ ├── drille │ │ ├── drille.h │ │ ├── obj │ │ │ ├── key.c │ │ │ └── mirror.c │ │ └── rooms │ │ │ ├── balcony.c │ │ │ ├── bathroom.c │ │ │ ├── bed1.c │ │ │ ├── bed2.c │ │ │ ├── forge.c │ │ │ ├── foyer.c │ │ │ ├── kitchen.c │ │ │ ├── living.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── platform.c │ │ │ └── yard.c │ ├── girruuth │ │ ├── bedroom.c │ │ ├── forge.c │ │ ├── repairs.c │ │ ├── sell.c │ │ ├── shop.c │ │ └── training.tobe │ ├── innaeli │ │ ├── defs.h │ │ ├── mon │ │ │ ├── bsbbartender.c │ │ │ └── marcos.c │ │ ├── obj │ │ │ └── bsbrubyring.c │ │ └── rooms │ │ │ ├── bsb1.c │ │ │ ├── bsb2.c │ │ │ ├── bsb3.c │ │ │ ├── bsb4.c │ │ │ ├── bsb5.c │ │ │ ├── bsb6.c │ │ │ ├── bsb7.c │ │ │ ├── bsb8.c │ │ │ └── bsb9.c │ ├── isaiah │ │ ├── isaiah.h │ │ ├── rooms │ │ │ ├── iscliff.c │ │ │ ├── iscom.c │ │ │ ├── isscry.c │ │ │ ├── istree.c │ │ │ └── istreed.c │ │ └── stuff │ │ │ ├── istea.c │ │ │ └── woodkey.c │ ├── kiervalan │ │ ├── forge.c │ │ ├── kier.h │ │ ├── obj │ │ │ └── key.c │ │ ├── repairs.c │ │ ├── rooms │ │ │ ├── barn.c │ │ │ ├── bathroom.c │ │ │ ├── bedroom.c │ │ │ ├── lobby.c │ │ │ ├── path.c │ │ │ └── rooftop.c │ │ ├── sell.c │ │ └── shop.c │ ├── kiya │ │ ├── defs.h │ │ ├── inh │ │ │ ├── forest.c │ │ │ ├── memories.c │ │ │ └── path.c │ │ ├── memories.h │ │ ├── memories2.h │ │ ├── obj │ │ │ ├── flowers.c │ │ │ ├── food.c │ │ │ └── pond.c │ │ └── rooms │ │ │ ├── bridge.c │ │ │ ├── forest1.c │ │ │ ├── forest2.c │ │ │ ├── forest3.c │ │ │ ├── forest4.c │ │ │ ├── house1.c │ │ │ ├── house2.c │ │ │ ├── house3.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ └── plateau.c │ ├── lahnna │ │ ├── bedroom.c │ │ ├── lodge.c │ │ ├── misc │ │ │ └── bnuts.c │ │ ├── road90.c │ │ └── yard.c │ ├── lea │ │ ├── lea.h │ │ ├── rooms │ │ │ ├── lea1.c │ │ │ ├── leabalc.c │ │ │ ├── leabath.c │ │ │ ├── leabed1.c │ │ │ ├── leabed2.c │ │ │ ├── leadine.c │ │ │ ├── leahall.c │ │ │ ├── leakitch.c │ │ │ ├── leap0.c │ │ │ ├── leap1.c │ │ │ ├── leap2.c │ │ │ ├── leasit.c │ │ │ ├── leastudy.c │ │ │ └── leauphall.c │ │ └── stuff │ │ │ ├── brass_key.c │ │ │ ├── bread.c │ │ │ ├── cheese.c │ │ │ ├── fruit.c │ │ │ ├── gold_key.c │ │ │ ├── page1.c │ │ │ ├── page10.c │ │ │ ├── page11.c │ │ │ ├── page12.c │ │ │ ├── page13.c │ │ │ ├── page14.c │ │ │ ├── page15.c │ │ │ ├── page16.c │ │ │ ├── page17.c │ │ │ ├── page2.c │ │ │ ├── page3.c │ │ │ ├── page4.c │ │ │ ├── page5.c │ │ │ ├── page6.c │ │ │ ├── page7.c │ │ │ ├── page8.c │ │ │ └── page9.c │ ├── lusell │ │ ├── bazaar3.c │ │ ├── hall.c │ │ ├── keep_map.gif │ │ ├── lusell-keep │ │ ├── lusell-office │ │ ├── lusell.h │ │ ├── mon │ │ │ ├── captain.c │ │ │ ├── corporal.c │ │ │ ├── lusell_wench.c │ │ │ ├── private.c │ │ │ ├── private_nm.c │ │ │ ├── sergeant.c │ │ │ └── sergeant_nm.c │ │ ├── obj │ │ │ ├── lusell_appetizer.c │ │ │ ├── lusell_brandy.c │ │ │ ├── lusell_dinner.c │ │ │ ├── lusell_water.c │ │ │ ├── ruby_clasp.c │ │ │ └── ruby_key.c │ │ ├── post.c │ │ ├── repairs.c │ │ ├── rooms │ │ │ ├── armory.c │ │ │ ├── barracks.c │ │ │ ├── bridge.c │ │ │ ├── dining.c │ │ │ ├── drill_yard.c │ │ │ ├── dungeon.c │ │ │ ├── entry.c │ │ │ ├── g_room.c │ │ │ ├── hall0.c │ │ │ ├── hall1.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hall4.c │ │ │ ├── hall5.c │ │ │ ├── hall6.c │ │ │ ├── hall7.c │ │ │ ├── hall8.c │ │ │ ├── kitchen.c │ │ │ ├── lusell.c │ │ │ ├── officerq.c │ │ │ ├── post0.c │ │ │ ├── post1.c │ │ │ ├── post2.c │ │ │ ├── post3.c │ │ │ ├── post4.c │ │ │ ├── post5.c │ │ │ ├── post6.c │ │ │ ├── sanctuary.c │ │ │ ├── shop.c │ │ │ ├── shop_closet.c │ │ │ ├── shop_entrance.c │ │ │ ├── smithy.c │ │ │ ├── stable.c │ │ │ ├── storage.c │ │ │ ├── tethering.c │ │ │ ├── to_tonovi.c │ │ │ ├── tower1.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── tower5.c │ │ │ ├── tower6.c │ │ │ ├── tower7.c │ │ │ ├── wall0.c │ │ │ ├── wall1.c │ │ │ ├── wall10.c │ │ │ ├── wall11.c │ │ │ ├── wall12.c │ │ │ ├── wall13.c │ │ │ ├── wall14.c │ │ │ ├── wall15.c │ │ │ ├── wall16.c │ │ │ ├── wall17.c │ │ │ ├── wall18.c │ │ │ ├── wall19.c │ │ │ ├── wall2.c │ │ │ ├── wall20.c │ │ │ ├── wall21.c │ │ │ ├── wall22.c │ │ │ ├── wall3.c │ │ │ ├── wall4.c │ │ │ ├── wall5.c │ │ │ ├── wall6.c │ │ │ ├── wall7.c │ │ │ ├── wall8.c │ │ │ ├── wall9.c │ │ │ ├── yard0.c │ │ │ ├── yard1.c │ │ │ ├── yard2.c │ │ │ ├── yard3.c │ │ │ └── yard4.c │ │ ├── sell.c │ │ ├── tower.c │ │ ├── wall.c │ │ └── yard.c │ ├── melic │ │ ├── melic.h │ │ ├── mons │ │ │ ├── gdog.c │ │ │ ├── igolem.c │ │ │ ├── jubal.c │ │ │ ├── oldhalfelf.c │ │ │ ├── shound.c │ │ │ ├── shoundd.c │ │ │ └── tiger.c │ │ ├── rooms │ │ │ ├── mel0.c │ │ │ ├── mel1.c │ │ │ ├── mel2.c │ │ │ ├── mel3.c │ │ │ ├── mel4.c │ │ │ ├── mel5.c │ │ │ ├── mel6.c │ │ │ ├── mel7.c │ │ │ ├── mel8.c │ │ │ ├── mel8d.c │ │ │ ├── mel8d2.c │ │ │ ├── mel8u.c │ │ │ ├── mela.c │ │ │ ├── melaa.c │ │ │ ├── melad.c │ │ │ ├── melbar.c │ │ │ ├── melbed1.c │ │ │ ├── melbed2.c │ │ │ ├── melbed3.c │ │ │ ├── melbed4.c │ │ │ ├── meld1.c │ │ │ ├── meldh1.c │ │ │ ├── meldun.c │ │ │ ├── melgua.c │ │ │ ├── melm.c │ │ │ ├── melpit.c │ │ │ ├── mels.c │ │ │ ├── melsup.c │ │ │ ├── meltout.c │ │ │ ├── melup1.c │ │ │ ├── melup2.c │ │ │ ├── meluph1.c │ │ │ ├── meluph2.c │ │ │ └── mely.c │ │ └── stuff │ │ │ ├── mithril_key.c │ │ │ └── tstatue.c │ ├── mithras │ │ ├── defs.h │ │ ├── obj │ │ │ ├── cello.c │ │ │ ├── coat.c │ │ │ ├── eldathynward.c │ │ │ ├── robe.c │ │ │ ├── smokescreen.c │ │ │ └── strawberries.c │ │ └── rooms │ │ │ ├── ledge.c │ │ │ ├── meadow.c │ │ │ ├── path1.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── tree.c │ │ │ ├── upstairs.c │ │ │ └── workroom.c │ ├── mons │ │ ├── door_knocker.c │ │ ├── door_mat.c │ │ ├── guardian.c │ │ ├── kiyadryad.c │ │ ├── raphael.c │ │ ├── rubicant_guard.c │ │ ├── saradin_guard.c │ │ ├── shry_butterfly.c │ │ ├── shry_fairy.c │ │ ├── stef_periot.c │ │ ├── stefano_guard.c │ │ └── stefano_imp.c │ ├── morganus │ │ ├── mon │ │ │ └── gax.c │ │ ├── morganus.h │ │ ├── obj │ │ │ └── key.c │ │ └── rooms │ │ │ ├── bar.c │ │ │ ├── bedroom.c │ │ │ ├── bunkhouse.c │ │ │ ├── foyer.c │ │ │ └── shrines.c │ ├── obj │ │ ├── abrahil_food.c │ │ ├── abrahil_key.c │ │ ├── bracers.c │ │ ├── gir_key.c │ │ ├── idol.c │ │ ├── lusell_shop_key.c │ │ ├── rune_key.c │ │ ├── shry_berries.c │ │ ├── shry_flowers.c │ │ ├── shry_fruit_platter.c │ │ ├── shry_nectar.c │ │ ├── shry_pendant.c │ │ ├── shry_twig_key.c │ │ ├── silesse_pants.c │ │ ├── stef_brandy.c │ │ ├── stef_conjuror.c │ │ ├── stef_sorcerer.c │ │ ├── stef_water.c │ │ ├── stefano_food.c │ │ ├── stefano_key.c │ │ ├── vic_black_shirt.c │ │ ├── vic_chardonnay.c │ │ ├── vic_feywine.c │ │ ├── vic_noir.c │ │ ├── vic_pants.c │ │ ├── vic_red_shirt.c │ │ ├── vic_shiraz.c │ │ └── vic_white_shirt.c │ ├── ramius │ │ ├── obj │ │ │ ├── basin.c │ │ │ ├── rfeywine.c │ │ │ ├── tea.c │ │ │ ├── violin.c │ │ │ ├── whiskey.c │ │ │ └── wood_key.c │ │ ├── ramius.h │ │ └── rooms │ │ │ ├── lab.c │ │ │ ├── ram1.c │ │ │ ├── ram2.c │ │ │ ├── ram3.c │ │ │ ├── ram4.c │ │ │ └── ram5.c │ ├── rheyn │ │ └── sapling.c │ ├── rufus │ │ ├── bedroom.c │ │ ├── cfloor.c │ │ ├── chapel.c │ │ ├── entry.c │ │ ├── entry.was │ │ ├── entry2.notused │ │ ├── hall.c │ │ ├── lab.notused │ │ ├── labratory.c │ │ ├── labx.notused │ │ └── library.c │ ├── saradin │ │ ├── obj │ │ │ ├── scrim_rod.c │ │ │ └── skel_key.c │ │ ├── rooms │ │ │ ├── bath.c │ │ │ ├── bedroom.c │ │ │ ├── behind_boxes.closed │ │ │ ├── cell.c │ │ │ ├── hall.c │ │ │ ├── hall0.c │ │ │ ├── hall1.c │ │ │ ├── hallway.c │ │ │ ├── living_area.c │ │ │ └── torture.c │ │ └── saradin.h │ ├── shopclerks │ │ ├── girruuth_clerk.c │ │ ├── lusell_clerk.c │ │ └── stefano_clerk.c │ ├── shrydelhi │ │ ├── bedroom.c │ │ ├── dining_room.c │ │ ├── living_room.c │ │ ├── meadow.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── platform.c │ │ └── shry.h │ ├── silesse │ │ ├── beach1.c │ │ ├── beach2.c │ │ ├── cage.c │ │ ├── cave.c │ │ ├── clearing.c │ │ ├── dungeon.c │ │ ├── forest1.c │ │ ├── forest2.c │ │ ├── forest3.c │ │ ├── forest4.c │ │ ├── forest5.c │ │ ├── forest6.c │ │ ├── forest7.c │ │ ├── forest8.c │ │ ├── ivorybuilding.c │ │ ├── obj │ │ │ ├── aunuit.c │ │ │ ├── cagelistener.c │ │ │ ├── constellations │ │ │ ├── dungeonlistener.c │ │ │ ├── flame.c │ │ │ ├── ivorykey.c │ │ │ ├── mint.c │ │ │ ├── ryzan.c │ │ │ ├── silesse_dragon.c │ │ │ ├── silesse_dress.c │ │ │ ├── silesse_pants.c │ │ │ ├── vic_black_shirt.c │ │ │ ├── vic_bloodwine.c │ │ │ ├── vic_chardonnay.c │ │ │ ├── vic_emoter.c │ │ │ ├── vic_feywine.c │ │ │ ├── vic_noir.c │ │ │ ├── vic_pants.c │ │ │ ├── vic_red_shirt.c │ │ │ ├── vic_shiraz.c │ │ │ ├── vic_ulaver.c │ │ │ ├── vic_white_shirt.c │ │ │ └── wildstrawberries.c │ │ ├── sil.h │ │ └── sil_forest.c │ ├── slore │ │ ├── backroom.c │ │ ├── bedroom.c │ │ ├── comp_store.c │ │ ├── lab.c │ │ ├── library.c │ │ └── misc │ │ │ ├── dean_npc.c │ │ │ └── sgolem.c │ ├── solaren │ │ ├── solaren1.c │ │ ├── solaren10.c │ │ ├── solaren11.c │ │ ├── solaren2.c │ │ ├── solaren3.c │ │ ├── solaren4.c │ │ ├── solaren5.c │ │ ├── solaren6.c │ │ ├── solaren7.c │ │ ├── solaren8.c │ │ └── solaren9.c │ ├── stefano │ │ ├── bathhouse.c │ │ ├── bedroom.c │ │ ├── cog_room.c │ │ ├── cottagemain.c │ │ ├── dining.c │ │ ├── drawing.c │ │ ├── entrancehall.c │ │ ├── garden1.c │ │ ├── garden2.c │ │ ├── guardian.c │ │ ├── guestroom.c │ │ ├── kitchen.c │ │ ├── lab.c │ │ ├── landing.c │ │ ├── ledge.c │ │ ├── library.c │ │ ├── path.c │ │ ├── stefano.h │ │ ├── stefano_entry.c │ │ ├── summoning.c │ │ └── tower_lounge.c │ ├── tigger │ │ ├── tigger1.c │ │ ├── tigger2.c │ │ ├── tigger3.c │ │ └── tigger4.c │ ├── valas │ │ ├── defs.h │ │ ├── mon │ │ │ ├── bgolem.c │ │ │ ├── bgolem2.c │ │ │ └── weapon.c │ │ ├── obj │ │ │ ├── statue1.c │ │ │ ├── statue2.c │ │ │ └── statue3.c │ │ └── rooms │ │ │ ├── basement.c │ │ │ ├── bedroom.c │ │ │ ├── entrance.c │ │ │ ├── garden1.c │ │ │ ├── garden2.c │ │ │ ├── garden3.c │ │ │ ├── garden4.c │ │ │ ├── garden5.c │ │ │ ├── tower.c │ │ │ ├── tower1.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ └── tower4.c │ ├── verbannon │ │ ├── defs.h │ │ ├── mon │ │ │ └── airelemental.c │ │ ├── obj │ │ │ ├── energydrink.c │ │ │ ├── jerky.c │ │ │ ├── limejuice.c │ │ │ ├── paperglider.c │ │ │ ├── rations.c │ │ │ ├── verbieward.c │ │ │ └── water.c │ │ └── rooms │ │ │ ├── cluttered.c │ │ │ ├── kitchen.c │ │ │ ├── lab.c │ │ │ ├── library.c │ │ │ ├── precipice.c │ │ │ ├── sleeping.c │ │ │ └── workarea.c │ └── yuki │ │ ├── mobs │ │ ├── crow_soldier.c │ │ ├── hitokiri.c │ │ └── kiera.c │ │ ├── obj │ │ └── key.c │ │ ├── rooms │ │ ├── barn.c │ │ ├── c1.c │ │ ├── c2.c │ │ ├── c3.c │ │ ├── c4.c │ │ ├── gate.c │ │ ├── h1.c │ │ ├── h2.c │ │ ├── h3.c │ │ ├── kill.c │ │ ├── meet.c │ │ ├── priv1.c │ │ ├── scry.c │ │ ├── sec1.c │ │ ├── sec2.c │ │ ├── summon.c │ │ └── tree.c │ │ ├── storage │ │ ├── court.c │ │ ├── hallway.c │ │ └── secret.c │ │ └── yuki.h ├── player_stores │ ├── clerks │ │ ├── girruuth_shop.c │ │ ├── gwen_scribe.c │ │ ├── kiervalan.c │ │ ├── po_se_shadow.c │ │ ├── po_shadow.c │ │ └── rubicant_shop.c │ ├── mons │ │ ├── po_imp.c │ │ ├── poguard_shad.c │ │ └── poguard_shad2.c │ ├── obj │ │ ├── po_shadow_key.c │ │ └── rubicant_shop_key.c │ ├── poffices │ │ ├── shadow.c │ │ ├── shadow_br.c │ │ ├── shadow_sewer.c │ │ ├── shadowstorage.c │ │ └── taborstorage.c │ └── rubicant │ │ ├── bedroom.c │ │ ├── fitting.c │ │ ├── laboratory.c │ │ ├── office.c │ │ ├── repairs.c │ │ ├── sell.c │ │ ├── shop_main.c │ │ └── workshop.c ├── priest │ ├── abilities │ │ ├── dacquire.c │ │ ├── dhelp.c │ │ ├── dlevel.c │ │ ├── fill_in.c │ │ ├── fix.c │ │ ├── is_allowed.c │ │ ├── is_druid.c │ │ ├── logging.c │ │ └── max_allowed_rank.c │ ├── backup │ │ ├── mistletoe.970122 │ │ ├── mistletoe.c │ │ ├── mistletoe.h │ │ └── mistletoe_allow.h │ ├── books │ │ ├── book_newbie.c │ │ └── book_ranks.c │ ├── docs │ │ ├── C_amulet.newbie │ │ ├── C_arcanedruic.help │ │ ├── C_arcanedruid.help │ │ ├── C_circle_map.newbie │ │ ├── C_circledruid.help │ │ ├── C_druid.help │ │ ├── C_druidmaster.help │ │ ├── C_druidranks.help │ │ ├── C_herbaldruid.help │ │ ├── C_hierophant.help │ │ ├── C_mistletoe.newbie │ │ ├── C_rankindex.help │ │ ├── C_reach_circle.newbie │ │ ├── C_spells.newbie │ │ ├── allowed.help │ │ ├── book_ranks.c │ │ ├── compare.help │ │ ├── druids.help │ │ ├── druids.txt │ │ ├── forest.txt │ │ ├── forsight.help │ │ ├── index.2-1 │ │ ├── index.newbie │ │ ├── meditate.help │ │ ├── mistletoe1.help │ │ ├── mistletoe2.help │ │ ├── mistletoe3.help │ │ ├── smokescreen.help │ │ ├── spells.help │ │ └── x.help │ ├── mistletoe.1257 │ ├── mistletoe.1312 │ ├── mistletoe.c │ ├── mistletoe.h │ ├── mistletoe │ │ └── backup │ │ │ └── makoto │ ├── mistletoe_allow.h │ └── obj │ │ └── d_amulet.c ├── ptalkin │ ├── items │ │ ├── benches.c │ │ ├── c_box.c │ │ ├── candycane.c │ │ ├── chocolates.c │ │ ├── chocopeach.c │ │ ├── chocorose.c │ │ ├── chocotree.c │ │ ├── christcard.c │ │ ├── cross.c │ │ ├── eggnog.c │ │ ├── emerald.c │ │ ├── eveningstars.c │ │ ├── flowersign.c │ │ ├── gingerbread.c │ │ ├── gslippers.c │ │ ├── highelfsign.c │ │ ├── necklace.c │ │ ├── ruby.c │ │ ├── sapphire.c │ │ ├── stocking.c │ │ ├── sylvanelfsign.c │ │ ├── table.c │ │ ├── teddybear.c │ │ ├── toque.c │ │ ├── torque.c │ │ └── wroses.c │ ├── mid │ │ ├── midtavern.c │ │ ├── room100.c │ │ ├── room101.c │ │ ├── room102.c │ │ ├── room103.c │ │ ├── room104.c │ │ ├── room105.c │ │ ├── room106.c │ │ ├── room107.c │ │ ├── room108.c │ │ ├── room109.c │ │ ├── room110.c │ │ ├── room111.c │ │ ├── room112.c │ │ ├── room113.c │ │ ├── room114.c │ │ ├── room115.c │ │ ├── room116.c │ │ ├── room117.c │ │ ├── room118.c │ │ ├── room119.c │ │ ├── room120.c │ │ ├── room121.c │ │ ├── room122.c │ │ ├── room122.cv │ │ ├── room123.c │ │ ├── room124.c │ │ ├── room125.c │ │ ├── room126.c │ │ ├── room127.c │ │ ├── room128.c │ │ ├── room129.c │ │ ├── room130.c │ │ ├── room131.c │ │ ├── room132.c │ │ ├── room133.c │ │ ├── room134.c │ │ ├── room135.c │ │ ├── room136.c │ │ ├── room137.c │ │ ├── room138.c │ │ ├── room139.c │ │ ├── room140.c │ │ ├── room141.c │ │ ├── room142.c │ │ ├── room143.c │ │ ├── room144.c │ │ ├── room145.c │ │ ├── room146.c │ │ ├── room147.c │ │ ├── room148.c │ │ ├── room149.c │ │ ├── room150.c │ │ ├── room68.c │ │ ├── room69.c │ │ ├── room70.c │ │ ├── room71.c │ │ ├── room72.c │ │ ├── room73.c │ │ ├── room74.c │ │ ├── room75.c │ │ ├── room76.c │ │ ├── room77.c │ │ ├── room78.c │ │ ├── room79.c │ │ ├── room80.c │ │ ├── room81.c │ │ ├── room82.c │ │ ├── room82trial.c │ │ ├── room83.c │ │ ├── room84.c │ │ ├── room85.c │ │ ├── room86.c │ │ ├── room87.c │ │ ├── room88.c │ │ ├── room89.c │ │ ├── room90.c │ │ ├── room91.c │ │ ├── room92.c │ │ ├── room93.c │ │ ├── room94.c │ │ ├── room95.c │ │ ├── room96.c │ │ ├── room97.c │ │ ├── room98.c │ │ ├── room99.c │ │ ├── roomalch.c │ │ ├── roombank.c │ │ ├── roomg_store.c │ │ ├── roomheal.c │ │ ├── roomledge.c │ │ ├── roomledge10.c │ │ ├── roomledge2.c │ │ ├── roomledge3.c │ │ ├── roomledge4.c │ │ ├── roomledge5.c │ │ ├── roomledge6.c │ │ ├── roomledge7.c │ │ ├── roomledge8.c │ │ ├── roomledge9.c │ │ └── roomtavern.c │ ├── mon │ │ ├── b_unicorn.c │ │ ├── bhutday.c │ │ ├── bhutnight.c │ │ ├── cooshee.c │ │ ├── d'bellin.c │ │ ├── d'faran.c │ │ ├── d'gorin.c │ │ ├── d'lon.c │ │ ├── d'lyssa.c │ │ ├── d'rater.c │ │ ├── d'regel.c │ │ ├── d'repal.c │ │ ├── d'seon.c │ │ ├── d'wellar.c │ │ ├── d'zeron.c │ │ ├── deathbeetle.c │ │ ├── deliveryboy.c │ │ ├── elfincat.c │ │ ├── f'bollin.c │ │ ├── f'larion.c │ │ ├── f'leen.c │ │ ├── f'relck.c │ │ ├── f'seela.c │ │ ├── f_nymph.c │ │ ├── fieldmouse.c │ │ ├── fieldmouseF.c │ │ ├── fieldmouseM.c │ │ ├── flitling.c │ │ ├── g_porcupine.c │ │ ├── giantrat.c │ │ ├── gorgon.c │ │ ├── highelf_baby.c │ │ ├── highelf_boy.c │ │ ├── highelf_cboy.c │ │ ├── highelf_female.c │ │ ├── highelf_girl.c │ │ ├── highelf_male.c │ │ ├── killerfrog.c │ │ ├── mudpuppy.c │ │ ├── phanaton.c │ │ ├── pktdragon.c │ │ ├── poodleF.c │ │ ├── poodleM.c │ │ ├── red_dragon.c │ │ ├── s'sverak.c │ │ ├── shargugh.c │ │ ├── sirenflower.c │ │ ├── sloridgegnome.c │ │ ├── sloridgegnomeF.c │ │ ├── sylvanarcher.c │ │ ├── sylvanelf_male.c │ │ └── toadstool.c │ ├── ptalkin.h │ ├── realm │ │ ├── cave.c │ │ └── old_cave.c │ ├── room │ │ ├── alchemist.c │ │ ├── ar_storage.c │ │ ├── armour.c │ │ ├── bank.c │ │ ├── belltower1.c │ │ ├── belltower2.c │ │ ├── belltower3.c │ │ ├── belltower4.c │ │ ├── church.c │ │ ├── dflower.c │ │ ├── dflower.h │ │ ├── f_storage.c │ │ ├── flower.c │ │ ├── flower.h │ │ ├── g_storage.c │ │ ├── g_store.c │ │ ├── healer.c │ │ ├── hotel.c │ │ ├── inn.c │ │ ├── room1.c │ │ ├── room10.c │ │ ├── room11.c │ │ ├── room12.c │ │ ├── room13.c │ │ ├── room14.c │ │ ├── room15.c │ │ ├── room16.c │ │ ├── room17.c │ │ ├── room18.c │ │ ├── room19.c │ │ ├── room2.c │ │ ├── room20.c │ │ ├── room21.c │ │ ├── room22.c │ │ ├── room23.c │ │ ├── room24.c │ │ ├── room25.c │ │ ├── room26.c │ │ ├── room27.c │ │ ├── room28.c │ │ ├── room29.c │ │ ├── room3.c │ │ ├── room30.c │ │ ├── room31.c │ │ ├── room32.c │ │ ├── room33.c │ │ ├── room34.c │ │ ├── room35.c │ │ ├── room36.c │ │ ├── room37.c │ │ ├── room38.c │ │ ├── room39.c │ │ ├── room4.c │ │ ├── room40.c │ │ ├── room41.c │ │ ├── room42.c │ │ ├── room43.c │ │ ├── room44.c │ │ ├── room45.c │ │ ├── room46.c │ │ ├── room47.c │ │ ├── room48.c │ │ ├── room49.c │ │ ├── room5.c │ │ ├── room50.c │ │ ├── room51.c │ │ ├── room52.c │ │ ├── room53.c │ │ ├── room54.c │ │ ├── room55.c │ │ ├── room56.c │ │ ├── room57.c │ │ ├── room58.c │ │ ├── room59.c │ │ ├── room6.c │ │ ├── room60.c │ │ ├── room61.c │ │ ├── room62.c │ │ ├── room63.c │ │ ├── room64.c │ │ ├── room65.c │ │ ├── room66.c │ │ ├── room67.c │ │ ├── room7.c │ │ ├── room8.c │ │ ├── room9.c │ │ ├── square.c │ │ ├── stable.c │ │ ├── tavern.c │ │ ├── w_storage.c │ │ └── weapon.c │ └── weapons │ │ ├── beak.c │ │ ├── gor_teeth.c │ │ ├── hoof.c │ │ ├── horn.c │ │ ├── kfteeth.c │ │ ├── knife.c │ │ ├── p_claw.c │ │ ├── p_talon.c │ │ ├── p_thorn.c │ │ ├── pktclaws.c │ │ ├── quill.c │ │ ├── smclaws.c │ │ ├── smteeth.c │ │ └── teeth.c ├── ravenloft │ ├── mist.c │ ├── mon │ │ ├── cdeath.c │ │ ├── duergar.c │ │ ├── ghast.c │ │ ├── ghoul.c │ │ ├── goblyn.c │ │ ├── gskeleton.c │ │ ├── gypsy.c │ │ ├── gypsy2.c │ │ ├── hound.c │ │ ├── scarecrow.c │ │ ├── skuz.c │ │ ├── spectre.c │ │ ├── undead_beast.c │ │ ├── utree.c │ │ ├── vampill.c │ │ ├── villager.c │ │ ├── wander │ │ │ └── wander.c │ │ ├── wight.c │ │ ├── wisp.c │ │ └── wraith.c │ ├── obj │ │ └── bspear.c │ └── town │ │ ├── bar01.c │ │ ├── bar02.c │ │ ├── bar03.c │ │ ├── bar04.c │ │ ├── bar05.c │ │ ├── bar06.c │ │ ├── bar08.c │ │ ├── bar09.c │ │ ├── bar10.c │ │ ├── bar11.c │ │ ├── bar12.c │ │ ├── bar13.c │ │ ├── bar14.c │ │ ├── bar15.c │ │ ├── bar16.c │ │ ├── bar17.c │ │ ├── bar18.c │ │ ├── bar19.c │ │ ├── bar20.c │ │ ├── bar21.c │ │ ├── bar22.c │ │ ├── bar23.c │ │ ├── bar24.c │ │ ├── bar25.c │ │ ├── bar26.c │ │ ├── bar27.c │ │ ├── bar28.c │ │ ├── bar29.c │ │ ├── bar30.c │ │ ├── bar31.c │ │ ├── bar32.c │ │ ├── bar35.c │ │ ├── bar36.c │ │ ├── bar37.c │ │ ├── bar39.c │ │ ├── bar40.c │ │ ├── bar41.c │ │ ├── bar42.c │ │ ├── bar43.c │ │ ├── bar44.c │ │ ├── bar45.c │ │ ├── bar46.c │ │ ├── bar87.c │ │ ├── bar88.c │ │ ├── bar89.c │ │ ├── bar90.c │ │ ├── bar91.c │ │ ├── bar92.c │ │ ├── bar93.c │ │ ├── bar94.c │ │ ├── bar95.c │ │ ├── bar96.c │ │ └── bar97.c ├── realm │ ├── inherits │ │ ├── area_stuff.h │ │ ├── death_effects_d.c │ │ ├── merchant_room.c │ │ ├── mr_bh_i.c │ │ ├── mr_cham_i.c │ │ ├── mr_fh_i.c │ │ ├── mr_hall_i.c │ │ ├── mr_mh_i.c │ │ ├── mr_uf_tun.c │ │ ├── mr_uft_bh.c │ │ ├── mr_uft_ch.c │ │ ├── mr_uft_fh.c │ │ ├── or_end_i.c │ │ └── or_i.c │ ├── mon │ │ ├── altharion.c │ │ ├── flesh_beast.c │ │ ├── gimpy.c │ │ ├── horrid_phantasm.c │ │ ├── mimic.c │ │ ├── phantom_armor.c │ │ ├── phantom_weapon.c │ │ ├── ralchet.c │ │ ├── rand_cleric.c │ │ ├── rand_thief.c │ │ ├── rand_warrior.c │ │ ├── rythao.c │ │ ├── sac_ghost.c │ │ ├── sanctum_guardian.c │ │ ├── shillast.c │ │ ├── spec_ser_cleric.c │ │ ├── spec_ser_thief.c │ │ ├── spec_ser_war.c │ │ └── valshiiir.c │ ├── ob │ │ ├── armor_stand.c │ │ ├── auros_shroud.c │ │ ├── cowl.c │ │ ├── ethereal_sickle.c │ │ ├── greaterspellring.c │ │ ├── guardian_key.c │ │ ├── life_stealing_weapon.c │ │ ├── midnights_edge.c │ │ ├── phantoms_embrace.c │ │ ├── reaper_of_souls.c │ │ ├── scintillating_boots.c │ │ ├── shadowy_sickle.c │ │ ├── sickle_ob.c │ │ ├── staff_of_destruction.c │ │ ├── trident_of_power.c │ │ └── weapon_rack.c │ └── rooms │ │ ├── ao_middle_1.c │ │ ├── ao_middle_10.c │ │ ├── ao_middle_100.c │ │ ├── ao_middle_101.c │ │ ├── ao_middle_102.c │ │ ├── ao_middle_103.c │ │ ├── ao_middle_104.c │ │ ├── ao_middle_105.c │ │ ├── ao_middle_106.c │ │ ├── ao_middle_107.c │ │ ├── ao_middle_108.c │ │ ├── ao_middle_109.c │ │ ├── ao_middle_11.c │ │ ├── ao_middle_110.c │ │ ├── ao_middle_111.c │ │ ├── ao_middle_112.c │ │ ├── ao_middle_113.c │ │ ├── ao_middle_114.c │ │ ├── ao_middle_115.c │ │ ├── ao_middle_116.c │ │ ├── ao_middle_117.c │ │ ├── ao_middle_118.c │ │ ├── ao_middle_119.c │ │ ├── ao_middle_12.c │ │ ├── ao_middle_120.c │ │ ├── ao_middle_121.c │ │ ├── ao_middle_122.c │ │ ├── ao_middle_123.c │ │ ├── ao_middle_124.c │ │ ├── ao_middle_125.c │ │ ├── ao_middle_126.c │ │ ├── ao_middle_127.c │ │ ├── ao_middle_128.c │ │ ├── ao_middle_129.c │ │ ├── ao_middle_13.c │ │ ├── ao_middle_130.c │ │ ├── ao_middle_131.c │ │ ├── ao_middle_132.c │ │ ├── ao_middle_133.c │ │ ├── ao_middle_134.c │ │ ├── ao_middle_135.c │ │ ├── ao_middle_136.c │ │ ├── ao_middle_137.c │ │ ├── ao_middle_138.c │ │ ├── ao_middle_139.c │ │ ├── ao_middle_14.c │ │ ├── ao_middle_140.c │ │ ├── ao_middle_141.c │ │ ├── ao_middle_142.c │ │ ├── ao_middle_143.c │ │ ├── ao_middle_144.c │ │ ├── ao_middle_145.c │ │ ├── ao_middle_146.c │ │ ├── ao_middle_147.c │ │ ├── ao_middle_148.c │ │ ├── ao_middle_149.c │ │ ├── ao_middle_15.c │ │ ├── ao_middle_16.c │ │ ├── ao_middle_17.c │ │ ├── ao_middle_18.c │ │ ├── ao_middle_19.c │ │ ├── ao_middle_2.c │ │ ├── ao_middle_20.c │ │ ├── ao_middle_21.c │ │ ├── ao_middle_22.c │ │ ├── ao_middle_23.c │ │ ├── ao_middle_24.c │ │ ├── ao_middle_25.c │ │ ├── ao_middle_26.c │ │ ├── ao_middle_27.c │ │ ├── ao_middle_28.c │ │ ├── ao_middle_29.c │ │ ├── ao_middle_3.c │ │ ├── ao_middle_30.c │ │ ├── ao_middle_31.c │ │ ├── ao_middle_32.c │ │ ├── ao_middle_33.c │ │ ├── ao_middle_34.c │ │ ├── ao_middle_35.c │ │ ├── ao_middle_36.c │ │ ├── ao_middle_37.c │ │ ├── ao_middle_38.c │ │ ├── ao_middle_39.c │ │ ├── ao_middle_4.c │ │ ├── ao_middle_40.c │ │ ├── ao_middle_41.c │ │ ├── ao_middle_42.c │ │ ├── ao_middle_43.c │ │ ├── ao_middle_44.c │ │ ├── ao_middle_45.c │ │ ├── ao_middle_46.c │ │ ├── ao_middle_47.c │ │ ├── ao_middle_48.c │ │ ├── ao_middle_49.c │ │ ├── ao_middle_5.c │ │ ├── ao_middle_50.c │ │ ├── ao_middle_51.c │ │ ├── ao_middle_52.c │ │ ├── ao_middle_53.c │ │ ├── ao_middle_54.c │ │ ├── ao_middle_55.c │ │ ├── ao_middle_56.c │ │ ├── ao_middle_57.c │ │ ├── ao_middle_58.c │ │ ├── ao_middle_59.c │ │ ├── ao_middle_6.c │ │ ├── ao_middle_60.c │ │ ├── ao_middle_61.c │ │ ├── ao_middle_62.c │ │ ├── ao_middle_63.c │ │ ├── ao_middle_64.c │ │ ├── ao_middle_65.c │ │ ├── ao_middle_66.c │ │ ├── ao_middle_67.c │ │ ├── ao_middle_68.c │ │ ├── ao_middle_69.c │ │ ├── ao_middle_7.c │ │ ├── ao_middle_70.c │ │ ├── ao_middle_71.c │ │ ├── ao_middle_72.c │ │ ├── ao_middle_73.c │ │ ├── ao_middle_74.c │ │ ├── ao_middle_75.c │ │ ├── ao_middle_76.c │ │ ├── ao_middle_77.c │ │ ├── ao_middle_78.c │ │ ├── ao_middle_79.c │ │ ├── ao_middle_8.c │ │ ├── ao_middle_80.c │ │ ├── ao_middle_81.c │ │ ├── ao_middle_82.c │ │ ├── ao_middle_83.c │ │ ├── ao_middle_84.c │ │ ├── ao_middle_85.c │ │ ├── ao_middle_86.c │ │ ├── ao_middle_87.c │ │ ├── ao_middle_88.c │ │ ├── ao_middle_89.c │ │ ├── ao_middle_9.c │ │ ├── ao_middle_90.c │ │ ├── ao_middle_97.c │ │ ├── ao_middle_98.c │ │ ├── ao_middle_99.c │ │ ├── ao_outter_1.c │ │ ├── ao_outter_10.c │ │ ├── ao_outter_11.c │ │ ├── ao_outter_12.c │ │ ├── ao_outter_13.c │ │ ├── ao_outter_14.c │ │ ├── ao_outter_15.c │ │ ├── ao_outter_16.c │ │ ├── ao_outter_17.c │ │ ├── ao_outter_2.c │ │ ├── ao_outter_3.c │ │ ├── ao_outter_4.c │ │ ├── ao_outter_5.c │ │ ├── ao_outter_6.c │ │ ├── ao_outter_7.c │ │ ├── ao_outter_8.c │ │ └── ao_outter_9.c ├── retired │ ├── etarena.c │ ├── feyd.c │ ├── kiya.c │ ├── obj │ │ ├── demonblade.c │ │ ├── demonbracers.c │ │ ├── elfshadow.c │ │ ├── feyd_storage.c │ │ ├── feydmask.c │ │ ├── feydrobes.c │ │ ├── golem.c │ │ ├── golemrod.c │ │ ├── mercuryscale.c │ │ ├── moonblade.c │ │ ├── moonblade2.c │ │ ├── moonlight_robe.c │ │ ├── orn_badge.c │ │ ├── rolonchain.c │ │ ├── talosblade.c │ │ ├── valasamulet.c │ │ ├── valashat.c │ │ ├── wolf.c │ │ └── wolfhelm.c │ ├── ornsul.c │ ├── ornsul2.c │ ├── rolon.c │ └── valas.c ├── sands │ ├── cavern01.c │ ├── cavern02.c │ ├── cavern03.c │ ├── cavern04.c │ ├── cavern05.c │ ├── cavern06.c │ ├── cavern07.c │ ├── cavern08.c │ ├── cavern09.c │ ├── mon │ │ └── guardian.c │ ├── obj │ │ ├── dagger.c │ │ ├── gate.c │ │ ├── sign.c │ │ └── staff.c │ └── traps.h ├── sglib │ └── strong │ │ ├── strong_d.bkup │ │ ├── strong_d.c │ │ ├── strongholds.h │ │ ├── strongmarker.c │ │ └── strongroom.c ├── shadow │ ├── SHADOW.DESC │ ├── city │ │ ├── defs.h │ │ ├── inherit │ │ │ ├── assassin.c │ │ │ ├── crossways.c │ │ │ ├── dirttunnel.c │ │ │ ├── dock.c │ │ │ ├── dolanco.c │ │ │ ├── eastwall.c │ │ │ ├── garden.c │ │ │ ├── kathmared.c │ │ │ ├── melistel.c │ │ │ ├── sewer.c │ │ │ ├── shadway.c │ │ │ ├── tunnel.c │ │ │ └── westwall.c │ │ ├── mon │ │ │ ├── agadan.c │ │ │ ├── alicia.c │ │ │ ├── barantheo.c │ │ │ ├── brennan.c │ │ │ ├── bron.c │ │ │ ├── cat.c │ │ │ ├── chrin.c │ │ │ ├── city_guard.c │ │ │ ├── clancy.c │ │ │ ├── delilah.c │ │ │ ├── drisman.c │ │ │ ├── flugar.c │ │ │ ├── granan.c │ │ │ ├── granan_storage.c │ │ │ ├── hettman.c │ │ │ ├── leeches.c │ │ │ ├── premeria.c │ │ │ ├── rat.c │ │ │ ├── scribe.c │ │ │ ├── secundia.c │ │ │ ├── shan.c │ │ │ ├── snake.c │ │ │ ├── tercera.c │ │ │ ├── valchor.c │ │ │ ├── waitress.c │ │ │ ├── wandering_identifier.c │ │ │ └── wizbert.c │ │ ├── obj │ │ │ ├── agedbow.c │ │ │ ├── assassinboard.c │ │ │ ├── belt.c │ │ │ ├── bluegun.c │ │ │ ├── citymap.c │ │ │ ├── cravat.c │ │ │ ├── hat.c │ │ │ ├── headband.c │ │ │ ├── leech.c │ │ │ ├── leechteeth.c │ │ │ ├── lrpouch.c │ │ │ ├── pearls.c │ │ │ ├── shadowfeast.c │ │ │ ├── shadowmap │ │ │ └── street_light.c │ │ ├── room │ │ │ ├── 3coinsbalcony.c │ │ │ ├── 3coinscopper.c │ │ │ ├── 3coinscourt.c │ │ │ ├── 3coinsgold.c │ │ │ ├── 3coinspatio.c │ │ │ ├── 3coinsrest.c │ │ │ ├── 3coinssilver.c │ │ │ ├── adventure.c │ │ │ ├── alchemist.c │ │ │ ├── armor.c │ │ │ ├── assassinalchemist.c │ │ │ ├── assassinentr.c │ │ │ ├── assassinhall.c │ │ │ ├── assassinoutside.c │ │ │ ├── assassinportals.c │ │ │ ├── assassinscrolls.c │ │ │ ├── assassintrader.c │ │ │ ├── backstage.c │ │ │ ├── bank.c │ │ │ ├── bardguild.c │ │ │ ├── bestiary.c │ │ │ ├── chamber.c │ │ │ ├── church.c │ │ │ ├── coffeeshop.c │ │ │ ├── crossways1.c │ │ │ ├── crossways2.c │ │ │ ├── crossways3.c │ │ │ ├── crossways4.c │ │ │ ├── crossways5.c │ │ │ ├── delanco4.c │ │ │ ├── dirttunnel1.c │ │ │ ├── dirttunnel10.c │ │ │ ├── dirttunnel11.c │ │ │ ├── dirttunnel12.c │ │ │ ├── dirttunnel13.c │ │ │ ├── dirttunnel14.c │ │ │ ├── dirttunnel15.c │ │ │ ├── dirttunnel16.c │ │ │ ├── dirttunnel17.c │ │ │ ├── dirttunnel18.c │ │ │ ├── dirttunnel2.c │ │ │ ├── dirttunnel3.c │ │ │ ├── dirttunnel4.c │ │ │ ├── dirttunnel5.c │ │ │ ├── dirttunnel6.c │ │ │ ├── dirttunnel7.c │ │ │ ├── dirttunnel8.c │ │ │ ├── dirttunnel9.c │ │ │ ├── dock1.c │ │ │ ├── dock2.c │ │ │ ├── dock3.c │ │ │ ├── dock4.c │ │ │ ├── dolanco1.c │ │ │ ├── dolanco2.c │ │ │ ├── dolanco3.c │ │ │ ├── dolanco4.c │ │ │ ├── eastcross.c │ │ │ ├── eastgate │ │ │ ├── eastgate.c │ │ │ ├── eastwall1.c │ │ │ ├── eastwall2.c │ │ │ ├── eastwall3.c │ │ │ ├── eastwall4.c │ │ │ ├── eastwall5.c │ │ │ ├── forge.c │ │ │ ├── gallows.c │ │ │ ├── gs_storage.c │ │ │ ├── gs_store.c │ │ │ ├── guild1.c │ │ │ ├── healer.c │ │ │ ├── jail.c │ │ │ ├── jail_main.c │ │ │ ├── kathmared1.c │ │ │ ├── kathmared2.c │ │ │ ├── kathmared3.c │ │ │ ├── library.c │ │ │ ├── mage2ndlanding.c │ │ │ ├── mage3rdlanding.c │ │ │ ├── magearchway.c │ │ │ ├── magecomps.c │ │ │ ├── magecourt.c │ │ │ ├── magefoyer.c │ │ │ ├── magegazebo.c │ │ │ ├── magelab.c │ │ │ ├── magelibrary.c │ │ │ ├── mageroof.c │ │ │ ├── magescrolls.c │ │ │ ├── magetea.c │ │ │ ├── melistel1.c │ │ │ ├── melistel2.c │ │ │ ├── melistel3.c │ │ │ ├── melistel4.c │ │ │ ├── melistela.c │ │ │ ├── melistelb.c │ │ │ ├── melistelc.c │ │ │ ├── melisteld.c │ │ │ ├── melistele.c │ │ │ ├── melistelf.c │ │ │ ├── moffice.c │ │ │ ├── northcross.c │ │ │ ├── northgate.c │ │ │ ├── plaza.c │ │ │ ├── psion1.c │ │ │ ├── psion2.c │ │ │ ├── publiclibrary.c │ │ │ ├── scribe.c │ │ │ ├── sewer1.c │ │ │ ├── sewer10.c │ │ │ ├── sewer11.c │ │ │ ├── sewer12.c │ │ │ ├── sewer13.c │ │ │ ├── sewer14.c │ │ │ ├── sewer15.c │ │ │ ├── sewer16.c │ │ │ ├── sewer17.c │ │ │ ├── sewer18.c │ │ │ ├── sewer19.c │ │ │ ├── sewer2.c │ │ │ ├── sewer20.c │ │ │ ├── sewer21.c │ │ │ ├── sewer22.c │ │ │ ├── sewer23.c │ │ │ ├── sewer24.c │ │ │ ├── sewer25.c │ │ │ ├── sewer26.c │ │ │ ├── sewer27.c │ │ │ ├── sewer28.c │ │ │ ├── sewer29.c │ │ │ ├── sewer3.c │ │ │ ├── sewer30.c │ │ │ ├── sewer31.c │ │ │ ├── sewer32.c │ │ │ ├── sewer33.c │ │ │ ├── sewer34.c │ │ │ ├── sewer35.c │ │ │ ├── sewer36.c │ │ │ ├── sewer37.c │ │ │ ├── sewer38.c │ │ │ ├── sewer39.c │ │ │ ├── sewer4.c │ │ │ ├── sewer40.c │ │ │ ├── sewer41.c │ │ │ ├── sewer42.c │ │ │ ├── sewer5.c │ │ │ ├── sewer6.c │ │ │ ├── sewer7.c │ │ │ ├── sewer8.c │ │ │ ├── sewer9.c │ │ │ ├── sewerdock1.c │ │ │ ├── shadowtether.c │ │ │ ├── shadway0.c │ │ │ ├── shadway1.c │ │ │ ├── shadway2.c │ │ │ ├── shadway3.c │ │ │ ├── shadway4.c │ │ │ ├── shadway5.c │ │ │ ├── shadwaya.c │ │ │ ├── shadwayab.c │ │ │ ├── shadwayb.c │ │ │ ├── shadwaybc.c │ │ │ ├── shadwayc.c │ │ │ ├── shadwayd.c │ │ │ ├── southcross.c │ │ │ ├── southgate.c │ │ │ ├── stable.c │ │ │ ├── sync.txt │ │ │ ├── theater.c │ │ │ ├── thieffence.c │ │ │ ├── thieflounge.c │ │ │ ├── tower1.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel10.c │ │ │ ├── tunnel11.c │ │ │ ├── tunnel12.c │ │ │ ├── tunnel13.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ ├── tunnel4.c │ │ │ ├── tunnel5.c │ │ │ ├── tunnel6.c │ │ │ ├── tunnel7.c │ │ │ ├── tunnel8.c │ │ │ ├── tunnel9.c │ │ │ ├── weapon.c │ │ │ ├── westcross.c │ │ │ ├── westgate.c │ │ │ ├── westwall1.c │ │ │ ├── westwall2.c │ │ │ ├── westwall3.c │ │ │ ├── westwall4.c │ │ │ ├── westwall5.c │ │ │ └── westwall6.c │ │ └── storage │ │ │ ├── armor_storage.c │ │ │ ├── ass_gs_storage.c │ │ │ ├── ass_scroll_storage.c │ │ │ ├── instrument_storage.c │ │ │ └── weapon_storage.c │ ├── coliseum │ │ ├── defs.h │ │ ├── inherit │ │ │ ├── concourse.c │ │ │ ├── stands.c │ │ │ └── training.c │ │ ├── mon │ │ │ ├── dummy_avg.c │ │ │ ├── dummy_strong.c │ │ │ ├── dummy_weak.c │ │ │ └── gil.c │ │ ├── obj │ │ │ ├── arena_listenerA.c │ │ │ ├── arena_listenerB.c │ │ │ ├── arena_listenerC.c │ │ │ ├── arena_listenerD.c │ │ │ ├── arena_listenerE.c │ │ │ ├── concessions.c │ │ │ ├── glowstone.c │ │ │ └── thief_tools.c │ │ └── room │ │ │ ├── arena.c │ │ │ ├── concourse1.c │ │ │ ├── concourse2.c │ │ │ ├── concourse3.c │ │ │ ├── concourse4.c │ │ │ ├── concourse5.c │ │ │ ├── entrance.c │ │ │ ├── stands1.c │ │ │ ├── stands2.c │ │ │ ├── stands3.c │ │ │ ├── stands4.c │ │ │ ├── thoroughfare.c │ │ │ ├── training1.c │ │ │ ├── training2.c │ │ │ ├── training3.c │ │ │ └── viewing_box.c │ ├── guilds │ │ ├── angels │ │ │ ├── MEMBERS │ │ │ ├── belt.c │ │ │ └── tmp │ │ │ │ ├── arena1.was │ │ │ │ ├── arena2.was │ │ │ │ ├── arena3.was │ │ │ │ ├── arena4.was │ │ │ │ ├── arenaa.was │ │ │ │ ├── cave.c │ │ │ │ ├── entryway.c │ │ │ │ ├── gchest.c │ │ │ │ ├── hall1.c │ │ │ │ ├── hall2.c │ │ │ │ ├── hall3.c │ │ │ │ ├── hall4.c │ │ │ │ ├── hall5.c │ │ │ │ ├── heal.c │ │ │ │ ├── mon │ │ │ │ ├── adagger.c │ │ │ │ ├── farmor.c │ │ │ │ ├── flagg.c │ │ │ │ ├── guardian.c │ │ │ │ ├── guardian1.c │ │ │ │ ├── killer.c │ │ │ │ ├── nihilus.c │ │ │ │ └── pande.c │ │ │ │ └── smoke_house.c │ │ ├── aroom.c │ │ ├── fist │ │ │ ├── fist_armband.c │ │ │ ├── fistchest.c │ │ │ ├── guild1.c │ │ │ ├── guild2.c │ │ │ ├── guild3.c │ │ │ ├── guild4.c │ │ │ ├── guild5.c │ │ │ ├── guild6.c │ │ │ ├── guild7.c │ │ │ ├── guildheal.c │ │ │ ├── hc_room.c │ │ │ ├── hcetatoo.c │ │ │ ├── hctatoo.c │ │ │ └── letatoo.c │ │ ├── froom.c │ │ ├── pack │ │ │ ├── bridge1.c │ │ │ ├── bridge2.c │ │ │ ├── hall │ │ │ │ ├── arena1.c │ │ │ │ ├── arena2.c │ │ │ │ ├── arena3.c │ │ │ │ ├── arena4.c │ │ │ │ ├── arena5.c │ │ │ │ ├── arena6.c │ │ │ │ ├── mayana.c │ │ │ │ ├── nath.c │ │ │ │ ├── pack2.c │ │ │ │ ├── pack3.c │ │ │ │ ├── pack4.c │ │ │ │ ├── pack5.c │ │ │ │ ├── pack6.c │ │ │ │ ├── packchest.c │ │ │ │ ├── packguard.c │ │ │ │ └── throne.c │ │ │ └── pack_ring.c │ │ ├── proom.c │ │ ├── riders │ │ │ ├── arena1.c │ │ │ ├── arena2.c │ │ │ ├── arena3.c │ │ │ ├── arena4.c │ │ │ ├── arena5.c │ │ │ ├── arena6.c │ │ │ ├── arenaheal.c │ │ │ ├── backup │ │ │ │ ├── guild1.c │ │ │ │ ├── guild2.c │ │ │ │ └── riders_boots.c │ │ │ ├── chamb.c │ │ │ ├── cyard.c │ │ │ ├── greathall.c │ │ │ ├── guild1.c │ │ │ ├── guild2.c │ │ │ ├── obj │ │ │ │ └── fountain.c │ │ │ └── riders_boots.c │ │ ├── rroom.c │ │ ├── vroom.c │ │ └── watchers │ │ │ ├── guildhall.c │ │ │ ├── medallion.c │ │ │ ├── tmed.c │ │ │ └── tring.c │ ├── invasion │ │ ├── hordling.c │ │ ├── portal.c │ │ └── wandering.c │ ├── juran │ │ ├── alley.c │ │ ├── city │ │ │ ├── a1.c │ │ │ ├── a2.c │ │ │ ├── a3.c │ │ │ ├── a4.c │ │ │ ├── a5.c │ │ │ ├── a6.c │ │ │ ├── a7.c │ │ │ ├── a8.c │ │ │ ├── a9.c │ │ │ ├── arch1.c │ │ │ ├── arch2.c │ │ │ ├── arch3.c │ │ │ ├── arch4.c │ │ │ ├── arch5.c │ │ │ ├── arch6.c │ │ │ ├── archery.c │ │ │ ├── as.c │ │ │ ├── bank.c │ │ │ ├── cg1.c │ │ │ ├── cg2.c │ │ │ ├── church.c │ │ │ ├── cmp.c │ │ │ ├── f1.c │ │ │ ├── fg1.c │ │ │ ├── fg2.c │ │ │ ├── gs.c │ │ │ ├── healer.c │ │ │ ├── inn.c │ │ │ ├── inn2.c │ │ │ ├── inn_cellar.c │ │ │ ├── jcomm_board.c │ │ │ ├── jhit_board.c │ │ │ ├── jrid_board.c │ │ │ ├── jthall_board.c │ │ │ ├── lab.c │ │ │ ├── mt1.c │ │ │ ├── mt2.c │ │ │ ├── mt3.c │ │ │ ├── p1.c │ │ │ ├── p2.c │ │ │ ├── p3.c │ │ │ ├── p4.c │ │ │ ├── p5.c │ │ │ ├── p6.c │ │ │ ├── p7.c │ │ │ ├── p8.c │ │ │ ├── portal.c │ │ │ ├── psion.c │ │ │ ├── quest_room.c │ │ │ ├── r1.c │ │ │ ├── r10.c │ │ │ ├── r11.c │ │ │ ├── r12.c │ │ │ ├── r13.c │ │ │ ├── r14.c │ │ │ ├── r15.c │ │ │ ├── r16.c │ │ │ ├── r17.c │ │ │ ├── r18.c │ │ │ ├── r19.c │ │ │ ├── r2.c │ │ │ ├── r20.c │ │ │ ├── r21.c │ │ │ ├── r22.c │ │ │ ├── r23.c │ │ │ ├── r24.c │ │ │ ├── r25.c │ │ │ ├── r26.c │ │ │ ├── r27.c │ │ │ ├── r28.c │ │ │ ├── r29.c │ │ │ ├── r3.c │ │ │ ├── r30.c │ │ │ ├── r31.c │ │ │ ├── r32.c │ │ │ ├── r34.c │ │ │ ├── r35.c │ │ │ ├── r36.c │ │ │ ├── r37.c │ │ │ ├── r38.c │ │ │ ├── r39.c │ │ │ ├── r4.c │ │ │ ├── r40.c │ │ │ ├── r41.c │ │ │ ├── r42.c │ │ │ ├── r43.c │ │ │ ├── r44.c │ │ │ ├── r45.c │ │ │ ├── r46.c │ │ │ ├── r47.c │ │ │ ├── r48.c │ │ │ ├── r49.c │ │ │ ├── r5.c │ │ │ ├── r50.c │ │ │ ├── r51.c │ │ │ ├── r52.c │ │ │ ├── r53.c │ │ │ ├── r54.c │ │ │ ├── r55.c │ │ │ ├── r56.c │ │ │ ├── r6.c │ │ │ ├── r7.c │ │ │ ├── r8.c │ │ │ ├── r9.c │ │ │ ├── rb1.c │ │ │ ├── rb10.c │ │ │ ├── rb10d.c │ │ │ ├── rb2.c │ │ │ ├── rb2d.c │ │ │ ├── rb3.c │ │ │ ├── rb4.c │ │ │ ├── rb7.c │ │ │ ├── rb7d.c │ │ │ ├── rb8.c │ │ │ ├── smithy.c │ │ │ ├── spell_store.c │ │ │ ├── stables.c │ │ │ ├── tg1.c │ │ │ ├── tg2.c │ │ │ ├── trainer.c │ │ │ └── ws.c │ │ ├── drow │ │ │ ├── cavern.c │ │ │ ├── hallway.c │ │ │ ├── jdrow.h │ │ │ ├── rooms │ │ │ │ ├── c0.c │ │ │ │ ├── c1.c │ │ │ │ ├── c10.c │ │ │ │ ├── c11.c │ │ │ │ ├── c12.c │ │ │ │ ├── c13.c │ │ │ │ ├── c14.c │ │ │ │ ├── c15.c │ │ │ │ ├── c2.c │ │ │ │ ├── c3.c │ │ │ │ ├── c4.c │ │ │ │ ├── c5.c │ │ │ │ ├── c6.c │ │ │ │ ├── c7.c │ │ │ │ ├── c8.c │ │ │ │ ├── c9.c │ │ │ │ ├── cbed1.c │ │ │ │ ├── cbed2.c │ │ │ │ ├── cbed3.c │ │ │ │ ├── cbed4.c │ │ │ │ ├── cd0.c │ │ │ │ ├── cd1.c │ │ │ │ ├── cd2.c │ │ │ │ ├── cd3.c │ │ │ │ ├── cd4.c │ │ │ │ ├── cd5.c │ │ │ │ ├── cd6.c │ │ │ │ ├── cd7.c │ │ │ │ ├── cd8.c │ │ │ │ ├── cdd0.c │ │ │ │ ├── cdd1.c │ │ │ │ ├── cdd2.c │ │ │ │ ├── cdd3.c │ │ │ │ ├── lab0.c │ │ │ │ └── lab1.c │ │ │ └── stuff │ │ │ │ └── obs_key.c │ │ ├── juran.h │ │ ├── kobold.c │ │ ├── mons │ │ │ ├── bank_guard.c │ │ │ ├── bank_teller.c │ │ │ ├── barkeep2.c │ │ │ ├── barkeep3.c │ │ │ ├── blunt.c │ │ │ ├── bugbear1.c │ │ │ ├── carver.c │ │ │ ├── dopple.c │ │ │ ├── drow_cleric.c │ │ │ ├── drow_fight.c │ │ │ ├── drow_mage.c │ │ │ ├── drow_thief.c │ │ │ ├── fightgob.c │ │ │ ├── glitter.c │ │ │ ├── glitter_storage.c │ │ │ ├── gnoll1.c │ │ │ ├── gobsplat.c │ │ │ ├── gratus.c │ │ │ ├── grinder.c │ │ │ ├── hetori.c │ │ │ ├── jbugbear.c │ │ │ ├── jellex.c │ │ │ ├── jgnoll.c │ │ │ ├── jhob.c │ │ │ ├── jhob1.c │ │ │ ├── jogre.c │ │ │ ├── jogre1.c │ │ │ ├── jogre_mage.c │ │ │ ├── jorc.c │ │ │ ├── jorc1.c │ │ │ ├── jorc_cleric.c │ │ │ ├── jshade.c │ │ │ ├── khaldar.c │ │ │ ├── kobold.c │ │ │ ├── kobold1.c │ │ │ ├── leadgob.c │ │ │ ├── luchien.c │ │ │ ├── magegob.c │ │ │ ├── plumbum.c │ │ │ ├── slave.c │ │ │ ├── snukclam.c │ │ │ ├── wonder.c │ │ │ └── worg.c │ │ ├── mounts │ │ │ ├── boar.c │ │ │ ├── donkey.c │ │ │ ├── spider.c │ │ │ ├── wolf.c │ │ │ ├── worg.broken │ │ │ └── worg.c │ │ ├── park.c │ │ ├── road.c │ │ ├── ruin.c │ │ ├── storage │ │ │ ├── armor_storage.c │ │ │ ├── f_storage.c │ │ │ ├── general_storage.c │ │ │ ├── glit_storage.c │ │ │ └── weapon_storage.c │ │ ├── undgrnd.c │ │ └── weaps │ │ │ ├── adam_ham2.c │ │ │ ├── adam_ham3.c │ │ │ ├── adam_ham4.c │ │ │ ├── flamewhip2.c │ │ │ └── jet_ring.c │ ├── mon │ │ ├── alchemist.c │ │ ├── andrei.c │ │ ├── archer.c │ │ ├── archer2.c │ │ ├── bandits.c │ │ ├── bandolar.c │ │ ├── bat.c │ │ ├── blackmage.c │ │ ├── darkmage.c │ │ ├── dealer.c │ │ ├── dir.h │ │ ├── direction.h │ │ ├── donkey.c │ │ ├── drisman.c │ │ ├── duergarnomad.c │ │ ├── evilnomad.c │ │ ├── farmer.c │ │ ├── fionna.c │ │ ├── flugar.c │ │ ├── frenshaw.c │ │ ├── gangees.c │ │ ├── gcentipe.c │ │ ├── giantbat.c │ │ ├── giantrat.c │ │ ├── gnoll.c │ │ ├── gnollcaptain.c │ │ ├── goblin.c │ │ ├── goblincaptain.c │ │ ├── guard │ │ ├── guard.c │ │ ├── guard1.c │ │ ├── guard2.c │ │ ├── guardnew.c │ │ ├── guards │ │ │ ├── board.c │ │ │ ├── dir_map.h │ │ │ ├── guard.c │ │ │ ├── guard_d.c │ │ │ ├── guards.lst │ │ │ ├── guards.lst.was │ │ │ ├── watch.c │ │ │ ├── watchint.7-5-05 │ │ │ ├── watchint.c │ │ │ └── watchint.was5-23 │ │ ├── guards2 │ │ │ ├── dir_map.h │ │ │ ├── guard_d.c │ │ │ ├── guards.lst │ │ │ ├── watch.c │ │ │ └── watchint.c │ │ ├── hcenti.c │ │ ├── hettman.c │ │ ├── hobgoblin.c │ │ ├── hobgoblincaptain.c │ │ ├── horse.c │ │ ├── jail_guard.c │ │ ├── jail_mon.c │ │ ├── jailer.c │ │ ├── kirra.c │ │ ├── kobold.c │ │ ├── koboldcaptain.c │ │ ├── koboldchild.c │ │ ├── koboldmage.c │ │ ├── koboldthief.c │ │ ├── lavasha.c │ │ ├── librarian.c │ │ ├── lrmonster.c │ │ ├── magecomp.c │ │ ├── magis.c │ │ ├── malturkurk.c │ │ ├── masjock.c │ │ ├── melnmarn.h │ │ ├── newguard.c │ │ ├── nomad.c │ │ ├── obj │ │ │ ├── fangs.c │ │ │ └── pincers.c │ │ ├── oguard.c │ │ ├── orc.c │ │ ├── orc.was │ │ ├── orccaptain.c │ │ ├── peasant.c │ │ ├── pendaxin.c │ │ ├── rat.c │ │ ├── ratkin_scout.c │ │ ├── rattlesnake.c │ │ ├── reginold.c │ │ ├── rufsu.c │ │ ├── sailor.c │ │ ├── scribe.c │ │ ├── serpentmage.c │ │ ├── skeleton.c │ │ ├── stella.c │ │ ├── testdummy.c │ │ ├── thella.c │ │ ├── tmp │ │ │ └── peasant.c │ │ ├── tr_hag.c │ │ ├── tr_kruk.c │ │ ├── tradesman.c │ │ ├── valchor.c │ │ ├── waitress.c │ │ └── wizbert.c │ ├── newbie.h │ ├── npc │ │ └── scribe.c │ ├── obj │ │ ├── MAP │ │ ├── armor │ │ │ ├── banded.c │ │ │ ├── barding.c │ │ │ ├── brigadine.c │ │ │ ├── bronze.c │ │ │ ├── buckler.c │ │ │ ├── chain.c │ │ │ ├── coif.c │ │ │ ├── field.c │ │ │ ├── fullplate.c │ │ │ ├── helm.c │ │ │ ├── hide.c │ │ │ ├── leather.c │ │ │ ├── mshield.c │ │ │ ├── padded.c │ │ │ ├── plate.c │ │ │ ├── ring.c │ │ │ ├── robe.c │ │ │ ├── scale.c │ │ │ ├── sfullplate.c │ │ │ ├── shield.c │ │ │ ├── splint.c │ │ │ ├── sshield.c │ │ │ └── studded.c │ │ ├── clothing │ │ │ ├── giantrobe.c │ │ │ ├── raggedcloak.c │ │ │ ├── silkcloak.b4Styx │ │ │ ├── silkcloak.c │ │ │ ├── silkcloakTEST.c │ │ │ ├── silkgloves.c │ │ │ ├── silkrobe.c │ │ │ └── wolfboots.c │ │ ├── laws.txt │ │ ├── laws.txt.was10-02 │ │ ├── lawsign.c │ │ ├── lrweapon │ │ │ ├── arrows.c │ │ │ ├── hcrossbow.c │ │ │ ├── hquarrels.c │ │ │ ├── larrows.c │ │ │ ├── longbow.c │ │ │ └── shortbow.c │ │ ├── magic │ │ │ ├── blackchain.c │ │ │ ├── blackcoif.c │ │ │ ├── blackrobe.c │ │ │ ├── blackshield.c │ │ │ ├── chaosblade.c │ │ │ ├── healing.c │ │ │ └── tapestry.c │ │ ├── mbastard.c │ │ ├── misc │ │ │ ├── backpack.c │ │ │ ├── bag.c │ │ │ ├── bait.c │ │ │ ├── basket.c │ │ │ ├── beacon.c │ │ │ ├── bullseye.c │ │ │ ├── card.c │ │ │ ├── card_table.c │ │ │ ├── cardpics.h │ │ │ ├── cardpics2.h │ │ │ ├── cave_ring.c │ │ │ ├── cave_statue.c │ │ │ ├── cave_wand.c │ │ │ ├── chaos_case.c │ │ │ ├── chest.c │ │ │ ├── chips.c │ │ │ ├── climb_tool.c │ │ │ ├── deckofcards.c │ │ │ ├── die.c │ │ │ ├── fish.c │ │ │ ├── fishing_pole.c │ │ │ ├── fishing_rod.c │ │ │ ├── flint.c │ │ │ ├── helmut_case.c │ │ │ ├── hourglass.c │ │ │ ├── lantern.c │ │ │ ├── lkchest.c │ │ │ ├── lkschest.c │ │ │ ├── map.c │ │ │ ├── medallion.c │ │ │ ├── oil.c │ │ │ ├── pipe.c │ │ │ ├── pouch.c │ │ │ ├── rope.c │ │ │ ├── sack.c │ │ │ ├── sbasket.c │ │ │ ├── schest.c │ │ │ ├── serpent_case.c │ │ │ ├── shovel.c │ │ │ ├── spike.c │ │ │ ├── spouch.c │ │ │ ├── ssack.c │ │ │ ├── statue.c │ │ │ ├── street_light.c │ │ │ ├── torch.c │ │ │ ├── wood.c │ │ │ └── wood_fire.c │ │ ├── mrobe.c │ │ ├── note_koenig_DD.c │ │ ├── potion │ │ │ ├── elixer_of_health.c │ │ │ ├── extra_heal.c │ │ │ ├── heal.c │ │ │ ├── healing.c │ │ │ ├── healing.gar.c │ │ │ ├── healing.new.c │ │ │ ├── hurt.c │ │ │ ├── invisible.c │ │ │ ├── paralyze.c │ │ │ ├── poison.c │ │ │ ├── raging_heal.c │ │ │ └── weaken.c │ │ ├── roadsign_echoes_mtn.c │ │ ├── special │ │ │ ├── flail_frost.c │ │ │ ├── hmboard.c │ │ │ ├── jail_drink.c │ │ │ ├── jail_food.c │ │ │ ├── jail_key.c │ │ │ ├── note_koenig_DD.c │ │ │ ├── roadsign_echoes_mtn.c │ │ │ ├── sign_shadow_docks.c │ │ │ ├── signpost.c │ │ │ └── trainerroom.c │ │ └── weapon │ │ │ ├── awlpike.c │ │ │ ├── bardiche.c │ │ │ ├── bastard.c │ │ │ ├── bastard_two.c │ │ │ ├── battle_axe.c │ │ │ ├── bec_de_corbin.c │ │ │ ├── bill-guisarme.c │ │ │ ├── broad.c │ │ │ ├── club.c │ │ │ ├── club_lg.c │ │ │ ├── dagger.c │ │ │ ├── fauchard.c │ │ │ ├── flail.c │ │ │ ├── glaive.c │ │ │ ├── guisarme.c │ │ │ ├── halberd.c │ │ │ ├── hammer_sm.c │ │ │ ├── handaxe.c │ │ │ ├── khopesh.c │ │ │ ├── knife.c │ │ │ ├── longsword.c │ │ │ ├── lucern_hammer.c │ │ │ ├── mace.c │ │ │ ├── mclub.c │ │ │ ├── military_fork.c │ │ │ ├── morningstar.c │ │ │ ├── mspear.c │ │ │ ├── oli │ │ │ ├── partisan.c │ │ │ ├── pick.c │ │ │ ├── quarter_staff.c │ │ │ ├── rake.c │ │ │ ├── scimitar.c │ │ │ ├── scourge.c │ │ │ ├── scythe.c │ │ │ ├── shortsword.c │ │ │ ├── sickle.c │ │ │ ├── spetum.c │ │ │ ├── trident.c │ │ │ ├── two_hand_sword.c │ │ │ ├── voulge.c │ │ │ ├── warhammer.c │ │ │ └── whip.c │ ├── peasant.c │ ├── ratpaths │ │ ├── common.h │ │ ├── inherits │ │ │ ├── dr_inherit.c │ │ │ ├── dr_transition.c │ │ │ ├── rp_exit_inherit.c │ │ │ └── rp_inherit.c │ │ ├── mon │ │ │ ├── thrach.c │ │ │ └── thrach_mount.c │ │ ├── rooms │ │ │ ├── rp_n001_n003.c │ │ │ ├── rp_n001_n004.c │ │ │ ├── rp_n001_n012.c │ │ │ ├── rp_n002_n004.c │ │ │ ├── rp_n002_n012.c │ │ │ ├── rp_n003_n005.c │ │ │ ├── rp_n003_n006.c │ │ │ ├── rp_n003_n007.c │ │ │ ├── rp_n003_n008.c │ │ │ ├── rp_n003_n013.c │ │ │ ├── rp_n003_n014.c │ │ │ ├── rp_n004_n009.c │ │ │ ├── rp_n004_n014.c │ │ │ ├── rp_n005_n010.c │ │ │ ├── rp_n005_n011.c │ │ │ ├── rp_n005_n012.c │ │ │ ├── rp_n005_n015.c │ │ │ ├── rp_n006_n013.c │ │ │ ├── rp_n006_n016.c │ │ │ ├── rp_n007_n013.c │ │ │ ├── rp_n007_n014.c │ │ │ ├── rp_n007_n016.c │ │ │ ├── rp_n008_n015.c │ │ │ ├── rp_n008_n016.c │ │ │ ├── rp_p000_n001.c │ │ │ ├── rp_p000_n002.c │ │ │ ├── rp_p000_n012.c │ │ │ ├── rp_p000_p000.c │ │ │ ├── rp_p000_p001.c │ │ │ ├── rp_p000_p004.c │ │ │ ├── rp_p000_p005.c │ │ │ ├── rp_p000_p006.c │ │ │ ├── rp_p001_n003.c │ │ │ ├── rp_p001_n012.c │ │ │ ├── rp_p001_p001.c │ │ │ ├── rp_p001_p003.c │ │ │ ├── rp_p001_p004.c │ │ │ ├── rp_p001_p007.c │ │ │ ├── rp_p002_n003.c │ │ │ ├── rp_p002_n004.c │ │ │ ├── rp_p002_n005.c │ │ │ ├── rp_p002_n012.c │ │ │ ├── rp_p002_p001.c │ │ │ ├── rp_p002_p002.c │ │ │ ├── rp_p002_p004.c │ │ │ ├── rp_p002_p007.c │ │ │ ├── rp_p002_p008.c │ │ │ ├── rp_p003_n001.c │ │ │ ├── rp_p003_n005.c │ │ │ ├── rp_p003_n012.c │ │ │ ├── rp_p003_p004.c │ │ │ ├── rp_p003_p009.c │ │ │ ├── rp_p003_p011.c │ │ │ ├── rp_p004_n001.c │ │ │ ├── rp_p004_n005.c │ │ │ ├── rp_p004_n012.c │ │ │ ├── rp_p004_p003.c │ │ │ ├── rp_p004_p010.c │ │ │ ├── rp_p005_n001.c │ │ │ ├── rp_p005_n005.c │ │ │ ├── rp_p005_n008.c │ │ │ ├── rp_p005_n009.c │ │ │ ├── rp_p005_n010.c │ │ │ ├── rp_p005_n011.c │ │ │ ├── rp_p005_n012.c │ │ │ ├── rp_p005_p001.c │ │ │ ├── rp_p005_p002.c │ │ │ ├── rp_p005_p009.c │ │ │ ├── rp_p006_n001.c │ │ │ ├── rp_p006_n004.c │ │ │ ├── rp_p006_n005.c │ │ │ ├── rp_p006_n006.c │ │ │ ├── rp_p006_n007.c │ │ │ ├── rp_p006_n012.c │ │ │ ├── rp_p006_p000.c │ │ │ ├── rp_p006_p008.c │ │ │ ├── rp_p006_p009.c │ │ │ ├── rp_p007_n001.c │ │ │ ├── rp_p007_n002.c │ │ │ ├── rp_p007_n003.c │ │ │ ├── rp_p007_n006.c │ │ │ ├── rp_p007_n013.c │ │ │ ├── rp_p007_p007.c │ │ │ ├── rp_p008_n001.c │ │ │ ├── rp_p008_n005.c │ │ │ ├── rp_p008_n014.c │ │ │ ├── rp_p008_p000.c │ │ │ ├── rp_p008_p008.c │ │ │ ├── rp_p009_n005.c │ │ │ ├── rp_p009_n015.c │ │ │ ├── rp_p009_p001.c │ │ │ ├── rp_p009_p008.c │ │ │ ├── rp_p009_p009.c │ │ │ ├── rp_p010_n001.c │ │ │ ├── rp_p010_n006.c │ │ │ ├── rp_p010_n014.c │ │ │ ├── rp_p010_p002.c │ │ │ ├── rp_p010_p007.c │ │ │ ├── rp_p010_p010.c │ │ │ ├── rp_p010_p011.c │ │ │ ├── rp_p011_n001.c │ │ │ ├── rp_p011_n002.c │ │ │ ├── rp_p011_n003.c │ │ │ ├── rp_p011_n005.c │ │ │ ├── rp_p011_n006.c │ │ │ ├── rp_p011_n014.c │ │ │ ├── rp_p011_p001.c │ │ │ ├── rp_p011_p003.c │ │ │ ├── rp_p011_p005.c │ │ │ ├── rp_p011_p006.c │ │ │ ├── rp_p011_p011.c │ │ │ ├── rp_p012_n001.c │ │ │ ├── rp_p012_n005.c │ │ │ ├── rp_p012_n007.c │ │ │ ├── rp_p012_n014.c │ │ │ ├── rp_p012_p000.c │ │ │ ├── rp_p012_p004.c │ │ │ ├── rp_p012_p007.c │ │ │ ├── rp_p012_p012.c │ │ │ ├── rp_p013_n005.c │ │ │ ├── rp_p013_n008.c │ │ │ ├── rp_p013_n013.c │ │ │ ├── rp_p013_p000.c │ │ │ ├── rp_p013_p007.c │ │ │ ├── rp_p013_p012.c │ │ │ ├── rp_p013_p013.c │ │ │ ├── rp_p014_n001.c │ │ │ ├── rp_p014_n004.c │ │ │ ├── rp_p014_n012.c │ │ │ ├── rp_p014_p000.c │ │ │ ├── rp_p014_p001.c │ │ │ ├── rp_p014_p007.c │ │ │ ├── rp_p014_p013.c │ │ │ ├── rp_p015_n001.c │ │ │ ├── rp_p015_n003.c │ │ │ ├── rp_p015_n012.c │ │ │ ├── rp_p015_p002.c │ │ │ ├── rp_p015_p007.c │ │ │ ├── rp_p015_p013.c │ │ │ ├── rp_p016_n002.c │ │ │ ├── rp_p016_n012.c │ │ │ ├── rp_p016_p003.c │ │ │ ├── rp_p016_p006.c │ │ │ ├── rp_p016_p012.c │ │ │ ├── rp_p017_n002.c │ │ │ ├── rp_p017_n012.c │ │ │ ├── rp_p017_p004.c │ │ │ ├── rp_p017_p005.c │ │ │ ├── rp_p017_p011.c │ │ │ ├── rp_p018_n002.c │ │ │ ├── rp_p018_n013.c │ │ │ ├── rp_p018_p004.c │ │ │ ├── rp_p018_p005.c │ │ │ ├── rp_p018_p006.c │ │ │ ├── rp_p018_p007.c │ │ │ ├── rp_p018_p008.c │ │ │ ├── rp_p018_p009.c │ │ │ ├── rp_p018_p010.c │ │ │ ├── rp_p018_p011.c │ │ │ ├── rp_p019_n002.c │ │ │ ├── rp_p019_n012.c │ │ │ ├── rp_p019_p003.c │ │ │ ├── rp_p019_p004.c │ │ │ ├── rp_p019_p006.c │ │ │ ├── rp_p020_n001.c │ │ │ ├── rp_p020_n003.c │ │ │ ├── rp_p020_n004.c │ │ │ ├── rp_p020_n005.c │ │ │ ├── rp_p020_n013.c │ │ │ ├── rp_p020_p001.c │ │ │ ├── rp_p020_p002.c │ │ │ ├── rp_p020_p007.c │ │ │ ├── rp_p021_n006.c │ │ │ ├── rp_p021_n007.c │ │ │ ├── rp_p021_n012.c │ │ │ ├── rp_p021_n013.c │ │ │ ├── rp_p021_p000.c │ │ │ ├── rp_p021_p008.c │ │ │ ├── rp_p022_n007.c │ │ │ ├── rp_p022_n011.c │ │ │ ├── rp_p022_p009.c │ │ │ ├── rp_p023_n008.c │ │ │ ├── rp_p023_n009.c │ │ │ ├── rp_p023_n010.c │ │ │ ├── rp_p023_p010.c │ │ │ ├── rp_p024_p010.c │ │ │ ├── rp_p025_p010.c │ │ │ ├── rp_p026_p011.c │ │ │ ├── rp_p027_p012.c │ │ │ ├── rp_p028_p013.c │ │ │ ├── rp_p029_p012.c │ │ │ ├── rp_p029_p014.c │ │ │ ├── rp_p030_p011.c │ │ │ ├── rp_p030_p015.c │ │ │ ├── rp_p031_p010.c │ │ │ ├── rp_p031_p016.c │ │ │ ├── rp_p032_p016.c │ │ │ ├── rp_p033_p016.c │ │ │ ├── rp_p034_p016.c │ │ │ ├── rp_p035_p016.c │ │ │ ├── rp_p036_p016.c │ │ │ └── rp_p037_p016.c │ │ └── storage │ │ │ └── trach_storage.c │ ├── room │ │ ├── beach │ │ │ ├── homes │ │ │ │ ├── struphen1.c │ │ │ │ ├── sweetsavage1.c │ │ │ │ ├── tuco1.c │ │ │ │ ├── zeek1.c │ │ │ │ └── zeekcl.c │ │ │ ├── mon │ │ │ │ ├── collin.c │ │ │ │ ├── dir.h │ │ │ │ ├── direction.h │ │ │ │ ├── doctor.c │ │ │ │ ├── jeff.c │ │ │ │ ├── steve.c │ │ │ │ ├── tony.c │ │ │ │ ├── waitress.c │ │ │ │ └── zeek.h │ │ │ ├── obj │ │ │ │ ├── fishing_rod.c │ │ │ │ ├── healing.c │ │ │ │ ├── hkey.c │ │ │ │ └── hkeycall.h │ │ │ ├── park1.c │ │ │ └── stores │ │ │ │ ├── armory.c │ │ │ │ ├── armory_storage.c │ │ │ │ ├── bank.c │ │ │ │ ├── coffee.c │ │ │ │ ├── gs_storage.c │ │ │ │ ├── gs_store.c │ │ │ │ ├── hospital.c │ │ │ │ ├── restaurant.c │ │ │ │ ├── weaponry.c │ │ │ │ ├── weaponry_storage.c │ │ │ │ └── zeek.h │ │ ├── beastvillage │ │ │ ├── defs.h │ │ │ ├── inherit │ │ │ │ ├── beastshore.c │ │ │ │ ├── northbeast.c │ │ │ │ └── southbeast.c │ │ │ ├── mon │ │ │ │ ├── chakit.c │ │ │ │ └── tiktik.c │ │ │ ├── rings │ │ │ │ ├── base_inherit.c │ │ │ │ ├── evasion.c │ │ │ │ ├── illumination.c │ │ │ │ ├── insight.c │ │ │ │ ├── mindshielding.c │ │ │ │ ├── regeneration.c │ │ │ │ ├── spiderclimb.c │ │ │ │ ├── stealth.c │ │ │ │ ├── sustenance.c │ │ │ │ └── waterbreathing.c │ │ │ └── rooms │ │ │ │ ├── beast01.c │ │ │ │ ├── beast02.c │ │ │ │ ├── beast03.c │ │ │ │ ├── beast04.c │ │ │ │ ├── beast05.c │ │ │ │ ├── beast06.c │ │ │ │ ├── beast07.c │ │ │ │ ├── beast08.c │ │ │ │ ├── beast09.c │ │ │ │ ├── beast10.c │ │ │ │ ├── beast11.c │ │ │ │ ├── beast12.c │ │ │ │ ├── beast13.c │ │ │ │ ├── beast14.c │ │ │ │ ├── beast15.c │ │ │ │ ├── beast16.c │ │ │ │ ├── valley01.c │ │ │ │ ├── valley02.c │ │ │ │ ├── valley03.c │ │ │ │ ├── valley04.c │ │ │ │ ├── valley05.c │ │ │ │ └── valley06.c │ │ ├── cave.h │ │ ├── cave │ │ │ ├── cave1.c │ │ │ ├── cave10.c │ │ │ ├── cave11.c │ │ │ ├── cave12.c │ │ │ ├── cave13.c │ │ │ ├── cave14.c │ │ │ ├── cave15.c │ │ │ ├── cave16.c │ │ │ ├── cave17.c │ │ │ ├── cave18.c │ │ │ ├── cave19.c │ │ │ ├── cave2.c │ │ │ ├── cave21.c │ │ │ ├── cave22.c │ │ │ ├── cave23.c │ │ │ ├── cave24.c │ │ │ ├── cave25.c │ │ │ ├── cave26.c │ │ │ ├── cave27.c │ │ │ ├── cave28.c │ │ │ ├── cave29.c │ │ │ ├── cave3.c │ │ │ ├── cave31.c │ │ │ ├── cave32.c │ │ │ ├── cave33.c │ │ │ ├── cave34.c │ │ │ ├── cave35.c │ │ │ ├── cave36.c │ │ │ ├── cave37.c │ │ │ ├── cave38.c │ │ │ ├── cave39.c │ │ │ ├── cave4.c │ │ │ ├── cave41.c │ │ │ ├── cave42.c │ │ │ ├── cave43.c │ │ │ ├── cave44.c │ │ │ ├── cave45.c │ │ │ ├── cave46.c │ │ │ ├── cave47.c │ │ │ ├── cave48.c │ │ │ ├── cave49.c │ │ │ ├── cave5.c │ │ │ ├── cave51.c │ │ │ ├── cave52.c │ │ │ ├── cave53.c │ │ │ ├── cave54.c │ │ │ ├── cave55.c │ │ │ ├── cave56.c │ │ │ ├── cave57.c │ │ │ ├── cave58.c │ │ │ ├── cave59.c │ │ │ ├── cave6.c │ │ │ ├── cave61.c │ │ │ ├── cave62.c │ │ │ ├── cave63.c │ │ │ ├── cave64.c │ │ │ ├── cave65.c │ │ │ ├── cave66.c │ │ │ ├── cave67.c │ │ │ ├── cave68.c │ │ │ ├── cave69.c │ │ │ ├── cave7.c │ │ │ ├── cave71.c │ │ │ ├── cave72.c │ │ │ ├── cave73.c │ │ │ ├── cave74.c │ │ │ ├── cave75.c │ │ │ ├── cave76.c │ │ │ ├── cave77.c │ │ │ ├── cave78.c │ │ │ ├── cave79.c │ │ │ ├── cave8.c │ │ │ ├── cave9.c │ │ │ ├── cave_quest_room.c │ │ │ ├── cavern1.c │ │ │ ├── cavern2.c │ │ │ ├── cavern3.c │ │ │ ├── cavern4.c │ │ │ ├── cavern5.c │ │ │ ├── cavern6.c │ │ │ ├── cavern7.c │ │ │ ├── cavern8.c │ │ │ ├── ddcaves.h │ │ │ ├── inherit │ │ │ │ ├── cave.c │ │ │ │ ├── cave_slightly_buggy_backup.c │ │ │ │ ├── cave_test.c │ │ │ │ ├── regcave.c │ │ │ │ └── regcave_rats.c │ │ │ └── obj │ │ │ │ ├── WS_FTP.LOG │ │ │ │ ├── electrumring.c │ │ │ │ ├── glassmedallion.c │ │ │ │ ├── granitewand.c │ │ │ │ ├── ivorypipe.c │ │ │ │ ├── lavamedallion.c │ │ │ │ ├── leatherring.c │ │ │ │ ├── lightningring.c │ │ │ │ ├── platinumwand.c │ │ │ │ ├── rattyrobe.c │ │ │ │ ├── rosemedallion.c │ │ │ │ └── stormwand.c │ │ ├── chaos │ │ │ ├── chaos.h │ │ │ ├── east1.c │ │ │ ├── east2.c │ │ │ ├── east3.c │ │ │ ├── east4.c │ │ │ ├── east5.c │ │ │ ├── east6.c │ │ │ ├── east7.c │ │ │ ├── east8.c │ │ │ ├── east9.c │ │ │ ├── floor1.c │ │ │ ├── floor2.c │ │ │ ├── floor3.c │ │ │ ├── floor4.c │ │ │ ├── floor5.c │ │ │ ├── floor6.c │ │ │ ├── floor7.c │ │ │ ├── floor8.c │ │ │ ├── floor9.c │ │ │ ├── north1.c │ │ │ ├── north2.c │ │ │ ├── north3.c │ │ │ ├── north4.c │ │ │ ├── north5.c │ │ │ ├── north6.c │ │ │ ├── north7.c │ │ │ ├── north8.c │ │ │ ├── north9.c │ │ │ ├── road1.c │ │ │ ├── road2.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── south1.c │ │ │ ├── south2.c │ │ │ ├── south3.c │ │ │ ├── south4.c │ │ │ ├── south5.c │ │ │ ├── south6.c │ │ │ ├── south7.c │ │ │ ├── south8.c │ │ │ ├── south9.c │ │ │ ├── west1.c │ │ │ ├── west2.c │ │ │ ├── west3.c │ │ │ ├── west4.c │ │ │ ├── west5.c │ │ │ ├── west6.c │ │ │ ├── west7.c │ │ │ ├── west8.c │ │ │ └── west9.c │ │ ├── city │ │ │ ├── cguild │ │ │ │ ├── antipaladin.c │ │ │ │ ├── antipaladin │ │ │ │ │ ├── anti1.c │ │ │ │ │ ├── anti1.was │ │ │ │ │ ├── anti2.c │ │ │ │ │ ├── anti2.was │ │ │ │ │ ├── anti3.c │ │ │ │ │ ├── anticoif.c │ │ │ │ │ ├── antihelm.c │ │ │ │ │ ├── antiplate.c │ │ │ │ │ ├── black_sash.c │ │ │ │ │ ├── bone_lance.c │ │ │ │ │ ├── cyan_robe.c │ │ │ │ │ ├── cyan_sash.c │ │ │ │ │ ├── cyan_tunic.c │ │ │ │ │ ├── dark_gauntlets.c │ │ │ │ │ ├── enter1.c │ │ │ │ │ ├── enter1.was │ │ │ │ │ ├── hall.c │ │ │ │ │ ├── meeting.c │ │ │ │ │ ├── onyx_scimitar.c │ │ │ │ │ ├── slave_shield.c │ │ │ │ │ ├── stable.c │ │ │ │ │ ├── storage.c │ │ │ │ │ └── store.c │ │ │ │ ├── assassin │ │ │ │ │ └── TITLES │ │ │ │ ├── assassins.c │ │ │ │ ├── cavalier │ │ │ │ │ ├── cav.h │ │ │ │ │ ├── chamb.c │ │ │ │ │ ├── cyard.c │ │ │ │ │ ├── enter1.c │ │ │ │ │ ├── greathall.c │ │ │ │ │ ├── greathall.prequest │ │ │ │ │ ├── guild1.c │ │ │ │ │ ├── guild2.c │ │ │ │ │ ├── hhlance.c │ │ │ │ │ ├── jlance.c │ │ │ │ │ ├── knight.c │ │ │ │ │ ├── lhlance.c │ │ │ │ │ ├── mhlance.c │ │ │ │ │ ├── quest │ │ │ │ │ │ ├── godquestsword.c │ │ │ │ │ │ └── gqstest.c │ │ │ │ │ ├── stable.c │ │ │ │ │ ├── storage.c │ │ │ │ │ └── store.c │ │ │ │ ├── cleric.c │ │ │ │ ├── cleric │ │ │ │ │ ├── cleric1.c │ │ │ │ │ ├── cleric2.c │ │ │ │ │ └── pick_align.c │ │ │ │ ├── fighter.c │ │ │ │ ├── fighter │ │ │ │ │ ├── ac_fighter.c │ │ │ │ │ ├── battlefield.c │ │ │ │ │ ├── dart.c │ │ │ │ │ ├── dart_room.c │ │ │ │ │ ├── dart_room.saide.5-15-04 │ │ │ │ │ ├── f_storage.c │ │ │ │ │ ├── f_store.c │ │ │ │ │ ├── fighter.c │ │ │ │ │ ├── jacob.c │ │ │ │ │ └── master_list.c │ │ │ │ ├── mage.c │ │ │ │ ├── mons │ │ │ │ │ ├── antipal_keeper.c │ │ │ │ │ ├── c_hall_knight.c │ │ │ │ │ ├── jacob.c │ │ │ │ │ └── pal_clerk.c │ │ │ │ ├── paladin.c │ │ │ │ ├── paladin │ │ │ │ │ ├── barded_war_horse.c │ │ │ │ │ ├── fountain.c │ │ │ │ │ ├── guardroom1.c │ │ │ │ │ ├── hhlance.c │ │ │ │ │ ├── hlycoif.c │ │ │ │ │ ├── hlyhelm.c │ │ │ │ │ ├── hlyplate.c │ │ │ │ │ ├── hlywater.c │ │ │ │ │ ├── horse.dontuseold │ │ │ │ │ ├── jlance.c │ │ │ │ │ ├── knight.c │ │ │ │ │ ├── lhlance.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── man.c │ │ │ │ │ ├── mhlance.c │ │ │ │ │ ├── pal_stable.c │ │ │ │ │ ├── questroom.c │ │ │ │ │ ├── room1.c │ │ │ │ │ ├── sanctum.c │ │ │ │ │ ├── stable.c │ │ │ │ │ ├── storage.c │ │ │ │ │ ├── store.c │ │ │ │ │ ├── war_horse.c │ │ │ │ │ └── wood.c │ │ │ │ ├── ranger.c │ │ │ │ ├── ranger │ │ │ │ │ ├── npcs │ │ │ │ │ │ ├── rhoc.c │ │ │ │ │ │ ├── tree.c │ │ │ │ │ │ └── wolflord.c │ │ │ │ │ ├── obj │ │ │ │ │ │ ├── tripwire.c │ │ │ │ │ │ └── tripwire.obs │ │ │ │ │ ├── ranger.h │ │ │ │ │ └── rooms │ │ │ │ │ │ ├── arch1.c │ │ │ │ │ │ ├── arch10.c │ │ │ │ │ │ ├── arch11.c │ │ │ │ │ │ ├── arch12.c │ │ │ │ │ │ ├── arch13.c │ │ │ │ │ │ ├── arch14.c │ │ │ │ │ │ ├── arch15.c │ │ │ │ │ │ ├── arch16.c │ │ │ │ │ │ ├── arch17.c │ │ │ │ │ │ ├── arch18.c │ │ │ │ │ │ ├── arch19.c │ │ │ │ │ │ ├── arch2.c │ │ │ │ │ │ ├── arch20.c │ │ │ │ │ │ ├── arch3.c │ │ │ │ │ │ ├── arch4.c │ │ │ │ │ │ ├── arch5.c │ │ │ │ │ │ ├── arch6.c │ │ │ │ │ │ ├── arch7.c │ │ │ │ │ │ ├── arch8.c │ │ │ │ │ │ ├── arch9.c │ │ │ │ │ │ ├── archery.c │ │ │ │ │ │ ├── edea.c │ │ │ │ │ │ ├── hall1.c │ │ │ │ │ │ ├── hall2.c │ │ │ │ │ │ ├── hall3.c │ │ │ │ │ │ ├── path1.c │ │ │ │ │ │ ├── path2.c │ │ │ │ │ │ ├── path3.c │ │ │ │ │ │ ├── shop.c │ │ │ │ │ │ └── storage.c │ │ │ │ ├── thief.c │ │ │ │ └── vroom.c │ │ │ ├── portal │ │ │ │ ├── alcove1.c │ │ │ │ ├── alcove2.c │ │ │ │ ├── alcove3.c │ │ │ │ ├── comps.c │ │ │ │ ├── fountain.c │ │ │ │ ├── foyer.c │ │ │ │ ├── library.c │ │ │ │ ├── shrine.c │ │ │ │ └── workroom.c │ │ │ └── secret │ │ │ │ ├── dwarf_super.c │ │ │ │ ├── dwarf_super1.c │ │ │ │ ├── dwarf_work.c │ │ │ │ ├── saradin │ │ │ │ ├── cent_room.c │ │ │ │ ├── cnote.c │ │ │ │ ├── dnote.c │ │ │ │ ├── east_cages.c │ │ │ │ ├── hid_hall.c │ │ │ │ ├── hid_hall0.c │ │ │ │ └── west_cages.c │ │ │ │ ├── secrets.h │ │ │ │ └── stefano │ │ │ │ ├── cellar.c │ │ │ │ ├── dark_space.c │ │ │ │ ├── path.c │ │ │ │ ├── path1.c │ │ │ │ ├── sm_cave.c │ │ │ │ ├── tunnel.c │ │ │ │ ├── tunnel1.c │ │ │ │ ├── tunnel10.c │ │ │ │ ├── tunnel11.c │ │ │ │ ├── tunnel12.c │ │ │ │ ├── tunnel13.c │ │ │ │ ├── tunnel14.c │ │ │ │ ├── tunnel15.c │ │ │ │ ├── tunnel16.c │ │ │ │ ├── tunnel17.c │ │ │ │ ├── tunnel18.c │ │ │ │ ├── tunnel19.c │ │ │ │ ├── tunnel2.c │ │ │ │ ├── tunnel20.c │ │ │ │ ├── tunnel3.c │ │ │ │ ├── tunnel4.c │ │ │ │ ├── tunnel5.c │ │ │ │ ├── tunnel6.c │ │ │ │ ├── tunnel7.c │ │ │ │ ├── tunnel8.c │ │ │ │ └── tunnel9.c │ │ ├── deep_echos │ │ │ ├── 01.c │ │ │ ├── 02.c │ │ │ ├── 03.c │ │ │ ├── 04.c │ │ │ ├── 05.c │ │ │ ├── 06.c │ │ │ ├── 07.c │ │ │ ├── 08.c │ │ │ ├── 09.c │ │ │ ├── 10.c │ │ │ ├── 11.c │ │ │ ├── 12.c │ │ │ ├── 13.c │ │ │ ├── 14.c │ │ │ ├── 15.c │ │ │ ├── 16.c │ │ │ ├── 17.c │ │ │ ├── 18.c │ │ │ ├── 19.c │ │ │ ├── 20.c │ │ │ ├── 21.c │ │ │ ├── 22.c │ │ │ ├── 23.c │ │ │ ├── 24.c │ │ │ ├── 25.c │ │ │ ├── 26.c │ │ │ ├── 27.c │ │ │ ├── 28.c │ │ │ ├── 29.c │ │ │ ├── 30.c │ │ │ ├── 31.c │ │ │ ├── 32.c │ │ │ ├── 33.c │ │ │ ├── 34.c │ │ │ ├── 35.c │ │ │ ├── 36.c │ │ │ ├── 37.c │ │ │ ├── 38.c │ │ │ ├── 39.c │ │ │ ├── 40.c │ │ │ ├── 41.c │ │ │ ├── 42.c │ │ │ ├── 43.c │ │ │ ├── 44.c │ │ │ ├── 45.c │ │ │ ├── 46.c │ │ │ ├── 47.c │ │ │ ├── 48.c │ │ │ ├── 49.c │ │ │ ├── 50.c │ │ │ ├── 51.c │ │ │ ├── 52.c │ │ │ ├── README │ │ │ ├── broke.c │ │ │ ├── deep_echo.h │ │ │ ├── enter.c │ │ │ ├── inherit │ │ │ │ └── tunnel.c │ │ │ ├── mon │ │ │ │ ├── beast.c │ │ │ │ ├── blinkroach.c │ │ │ │ ├── deep_ogre.c │ │ │ │ ├── displacer.c │ │ │ │ ├── drowspy.c │ │ │ │ ├── dwarf.c │ │ │ │ ├── gnome.c │ │ │ │ ├── hunter.c │ │ │ │ ├── moldman.c │ │ │ │ ├── ogre.c │ │ │ │ ├── ogre_mage.c │ │ │ │ ├── ribbon.c │ │ │ │ ├── rogue.c │ │ │ │ └── umberhulk.c │ │ │ ├── obj │ │ │ │ ├── acid_ax.c │ │ │ │ ├── bbelt.c │ │ │ │ ├── bchain.c │ │ │ │ ├── beauty.c │ │ │ │ ├── boots.c │ │ │ │ ├── cog.c │ │ │ │ ├── dcloak.c │ │ │ │ ├── dmask.c │ │ │ │ ├── dpants.c │ │ │ │ ├── drill.c │ │ │ │ ├── gsword.c │ │ │ │ ├── headband_acc.c │ │ │ │ ├── hookhide.c │ │ │ │ ├── machine.c │ │ │ │ ├── psibane.c │ │ │ │ ├── pwand.c │ │ │ │ └── sign.c │ │ │ ├── slaved.c │ │ │ ├── trap.c │ │ │ ├── up.c │ │ │ └── water.c │ │ ├── ekibi │ │ │ ├── DESC │ │ │ ├── cave_inherit.c │ │ │ ├── ekibi.h │ │ │ ├── mon │ │ │ │ ├── cave_cricket.c │ │ │ │ ├── giant_cockroach.c │ │ │ │ ├── giant_maggot.c │ │ │ │ ├── gray_ooze.c │ │ │ │ ├── rosinden.c │ │ │ │ ├── stag_antler.c │ │ │ │ └── stag_beetle.c │ │ │ ├── obj │ │ │ │ ├── carapace.c │ │ │ │ ├── extractor.c │ │ │ │ ├── faerzress.c │ │ │ │ └── stag_antler.c │ │ │ ├── room │ │ │ │ ├── c1.c │ │ │ │ ├── c10.c │ │ │ │ ├── c11.c │ │ │ │ ├── c12.c │ │ │ │ ├── c13.c │ │ │ │ ├── c2.c │ │ │ │ ├── c3.c │ │ │ │ ├── c4.c │ │ │ │ ├── c5.c │ │ │ │ ├── c6.c │ │ │ │ ├── c7.c │ │ │ │ ├── c8.c │ │ │ │ ├── c9.c │ │ │ │ ├── cave.c │ │ │ │ ├── hut.c │ │ │ │ ├── p1.c │ │ │ │ ├── p2.c │ │ │ │ ├── p3.c │ │ │ │ ├── s1.c │ │ │ │ ├── s2.c │ │ │ │ ├── s3.c │ │ │ │ ├── s4.c │ │ │ │ ├── s5.c │ │ │ │ └── s6.c │ │ │ ├── rosinden_storage.c │ │ │ └── shore_inherit.c │ │ ├── farm │ │ │ ├── cellar_inherit.c │ │ │ ├── farm.h │ │ │ ├── farm_inherit.c │ │ │ ├── mon │ │ │ │ ├── bird.c │ │ │ │ ├── chicken.c │ │ │ │ ├── cow.c │ │ │ │ ├── dwarf_bandit.c │ │ │ │ ├── flower.c │ │ │ │ ├── goose.c │ │ │ │ ├── halfling_bandit.c │ │ │ │ ├── hildegard.c │ │ │ │ ├── hildegard.ergo │ │ │ │ ├── human_bandit.c │ │ │ │ ├── mephit.c │ │ │ │ ├── osquip.c │ │ │ │ ├── piaf.c │ │ │ │ ├── pig.c │ │ │ │ ├── scarecrow.c │ │ │ │ ├── sea_hag.c │ │ │ │ ├── squirrel.c │ │ │ │ ├── tinman.c │ │ │ │ ├── turkey.c │ │ │ │ └── whatsit.c │ │ │ ├── obj │ │ │ │ ├── backscratcher.c │ │ │ │ ├── clockwork2.c │ │ │ │ ├── dinnerfork.c │ │ │ │ ├── feather_head.c │ │ │ │ ├── feather_maker.c │ │ │ │ ├── foil.c │ │ │ │ ├── goggles.c │ │ │ │ ├── goose_helm.c │ │ │ │ ├── hide.c │ │ │ │ ├── hildpipe.c │ │ │ │ ├── jamspear.c │ │ │ │ ├── key.c │ │ │ │ ├── leatherbp.c │ │ │ │ ├── needle.c │ │ │ │ ├── osquipcloak.c │ │ │ │ ├── petal_buckler.c │ │ │ │ ├── seafan.c │ │ │ │ ├── shadow_note.c │ │ │ │ ├── toolset.c │ │ │ │ ├── wading_boots.c │ │ │ │ ├── wood_axe.c │ │ │ │ └── zweihander.c │ │ │ ├── room │ │ │ │ ├── bedroom.c │ │ │ │ ├── bridge.c │ │ │ │ ├── cellar1.c │ │ │ │ ├── cellar2.c │ │ │ │ ├── cellar3.c │ │ │ │ ├── cellar4.c │ │ │ │ ├── cellar5.c │ │ │ │ ├── cellar6.c │ │ │ │ ├── cellar7.c │ │ │ │ ├── farm1.c │ │ │ │ ├── farm10.c │ │ │ │ ├── farm11.c │ │ │ │ ├── farm12.c │ │ │ │ ├── farm13.c │ │ │ │ ├── farm14.c │ │ │ │ ├── farm15.c │ │ │ │ ├── farm16.c │ │ │ │ ├── farm17.c │ │ │ │ ├── farm18.c │ │ │ │ ├── farm19.c │ │ │ │ ├── farm2.c │ │ │ │ ├── farm3.c │ │ │ │ ├── farm4.c │ │ │ │ ├── farm5.c │ │ │ │ ├── farm6.c │ │ │ │ ├── farm7.c │ │ │ │ ├── farm8.c │ │ │ │ ├── farm9.c │ │ │ │ ├── foyer.c │ │ │ │ ├── gnomehome.c │ │ │ │ ├── kitchen.c │ │ │ │ ├── path1.c │ │ │ │ ├── path2.c │ │ │ │ ├── study.c │ │ │ │ ├── wheelhouse1.c │ │ │ │ ├── wheelhouse2.c │ │ │ │ ├── work1.c │ │ │ │ ├── work2.c │ │ │ │ ├── work3.c │ │ │ │ ├── work4.c │ │ │ │ ├── work5.c │ │ │ │ ├── work6.c │ │ │ │ └── work7.c │ │ │ └── workroom_inherit.c │ │ ├── feyren │ │ │ ├── inherits │ │ │ │ ├── area_stuff.h │ │ │ │ ├── ff_building.c │ │ │ │ ├── ff_cellar.c │ │ │ │ ├── ff_cellarend.c │ │ │ │ ├── ff_outskirts.c │ │ │ │ ├── ff_tunnel.c │ │ │ │ ├── ff_tunnel2.c │ │ │ │ ├── ff_tunnel2end.c │ │ │ │ ├── ff_tunnelend.c │ │ │ │ ├── ff_tunneln.c │ │ │ │ └── ff_underwater.c │ │ │ ├── mon │ │ │ │ ├── acidic_spider.c │ │ │ │ ├── ahyriquel.c │ │ │ │ ├── amp_boa.c │ │ │ │ ├── ashilla.c │ │ │ │ ├── crazed_goblin.c │ │ │ │ ├── feyren.c │ │ │ │ ├── mimic.c │ │ │ │ ├── mimic_chest.c │ │ │ │ ├── monstrous_spider.c │ │ │ │ └── spiderling.c │ │ │ ├── ob │ │ │ │ ├── bitter_harvest.c │ │ │ │ ├── breastplate.c │ │ │ │ ├── dark_helm.c │ │ │ │ ├── eggsac.c │ │ │ │ ├── flaming_axe.c │ │ │ │ ├── lightstone.c │ │ │ │ ├── patchwork_cloak.c │ │ │ │ ├── robe.c │ │ │ │ ├── spider_bane.c │ │ │ │ ├── spider_ob.c │ │ │ │ └── vanity.c │ │ │ └── rooms │ │ │ │ ├── ffcellar1.c │ │ │ │ ├── ffcellar10.c │ │ │ │ ├── ffcellar11.c │ │ │ │ ├── ffcellar12.c │ │ │ │ ├── ffcellar13.c │ │ │ │ ├── ffcellar14.c │ │ │ │ ├── ffcellar15.c │ │ │ │ ├── ffcellar16.c │ │ │ │ ├── ffcellar17.c │ │ │ │ ├── ffcellar18.c │ │ │ │ ├── ffcellar19.c │ │ │ │ ├── ffcellar2.c │ │ │ │ ├── ffcellar3.c │ │ │ │ ├── ffcellar4.c │ │ │ │ ├── ffcellar5.c │ │ │ │ ├── ffcellar6.c │ │ │ │ ├── ffcellar7.c │ │ │ │ ├── ffcellar8.c │ │ │ │ ├── ffcellar9.c │ │ │ │ ├── ffgtunnel1.c │ │ │ │ ├── ffgtunnel10.c │ │ │ │ ├── ffgtunnel11.c │ │ │ │ ├── ffgtunnel12.c │ │ │ │ ├── ffgtunnel13.c │ │ │ │ ├── ffgtunnel14.c │ │ │ │ ├── ffgtunnel15.c │ │ │ │ ├── ffgtunnel16.c │ │ │ │ ├── ffgtunnel17.c │ │ │ │ ├── ffgtunnel18.c │ │ │ │ ├── ffgtunnel19.c │ │ │ │ ├── ffgtunnel2.c │ │ │ │ ├── ffgtunnel20.c │ │ │ │ ├── ffgtunnel21.c │ │ │ │ ├── ffgtunnel22.c │ │ │ │ ├── ffgtunnel23.c │ │ │ │ ├── ffgtunnel24.c │ │ │ │ ├── ffgtunnel25.c │ │ │ │ ├── ffgtunnel26.c │ │ │ │ ├── ffgtunnel27.c │ │ │ │ ├── ffgtunnel28.c │ │ │ │ ├── ffgtunnel29.c │ │ │ │ ├── ffgtunnel3.c │ │ │ │ ├── ffgtunnel4.c │ │ │ │ ├── ffgtunnel5.c │ │ │ │ ├── ffgtunnel6.c │ │ │ │ ├── ffgtunnel7.c │ │ │ │ ├── ffgtunnel8.c │ │ │ │ ├── ffgtunnel9.c │ │ │ │ ├── ffout1.c │ │ │ │ ├── ffout10.c │ │ │ │ ├── ffout11.c │ │ │ │ ├── ffout12.c │ │ │ │ ├── ffout2.c │ │ │ │ ├── ffout3.c │ │ │ │ ├── ffout4.c │ │ │ │ ├── ffout5.c │ │ │ │ ├── ffout6.c │ │ │ │ ├── ffout7.c │ │ │ │ ├── ffout8.c │ │ │ │ ├── ffout9.c │ │ │ │ ├── ffoutb1.c │ │ │ │ ├── ffoutb2.c │ │ │ │ ├── ffoutb3.c │ │ │ │ ├── ffoutb4.c │ │ │ │ ├── ffoutb5.c │ │ │ │ ├── ffoutb6.c │ │ │ │ ├── ffoutb7.c │ │ │ │ ├── fftunnel1.c │ │ │ │ ├── fftunnel10.c │ │ │ │ ├── fftunnel11.c │ │ │ │ ├── fftunnel12.c │ │ │ │ ├── fftunnel13.c │ │ │ │ ├── fftunnel14.c │ │ │ │ ├── fftunnel15.c │ │ │ │ ├── fftunnel16.c │ │ │ │ ├── fftunnel17.c │ │ │ │ ├── fftunnel18.c │ │ │ │ ├── fftunnel19.c │ │ │ │ ├── fftunnel2.c │ │ │ │ ├── fftunnel20.c │ │ │ │ ├── fftunnel21.c │ │ │ │ ├── fftunnel22.c │ │ │ │ ├── fftunnel23.c │ │ │ │ ├── fftunnel24.c │ │ │ │ ├── fftunnel25.c │ │ │ │ ├── fftunnel26.c │ │ │ │ ├── fftunnel27.c │ │ │ │ ├── fftunnel28.c │ │ │ │ ├── fftunnel29.c │ │ │ │ ├── fftunnel3.c │ │ │ │ ├── fftunnel30.c │ │ │ │ ├── fftunnel31.c │ │ │ │ ├── fftunnel32.c │ │ │ │ ├── fftunnel33.c │ │ │ │ ├── fftunnel34.c │ │ │ │ ├── fftunnel35.c │ │ │ │ ├── fftunnel36.c │ │ │ │ ├── fftunnel37.c │ │ │ │ ├── fftunnel38.c │ │ │ │ ├── fftunnel39.c │ │ │ │ ├── fftunnel4.c │ │ │ │ ├── fftunnel40.c │ │ │ │ ├── fftunnel5.c │ │ │ │ ├── fftunnel6.c │ │ │ │ ├── fftunnel7.c │ │ │ │ ├── fftunnel8.c │ │ │ │ ├── fftunnel9.c │ │ │ │ ├── ffuw1.c │ │ │ │ ├── ffuw2.c │ │ │ │ ├── ffuw3.c │ │ │ │ ├── ffuw4.c │ │ │ │ ├── ffuw5.c │ │ │ │ ├── ffuw6.c │ │ │ │ ├── ffuw7.c │ │ │ │ ├── ffuw8.c │ │ │ │ └── ffuw9.c │ │ ├── forest │ │ │ ├── forest.h │ │ │ ├── long_pond.c │ │ │ ├── oocthall1.c │ │ │ ├── oocthall2.c │ │ │ ├── owagon1.c │ │ │ ├── owagon10.c │ │ │ ├── owagon11.c │ │ │ ├── owagon12.c │ │ │ ├── owagon13.c │ │ │ ├── owagon14.c │ │ │ ├── owagon15.c │ │ │ ├── owagon16.c │ │ │ ├── owagon17.c │ │ │ ├── owagon18.c │ │ │ ├── owagon19.c │ │ │ ├── owagon2.c │ │ │ ├── owagon20.c │ │ │ ├── owagon21.c │ │ │ ├── owagon22.c │ │ │ ├── owagon23.c │ │ │ ├── owagon24.c │ │ │ ├── owagon25.c │ │ │ ├── owagon26.c │ │ │ ├── owagon27.c │ │ │ ├── owagon28.c │ │ │ ├── owagon29.c │ │ │ ├── owagon3.c │ │ │ ├── owagon30.c │ │ │ ├── owagon31.c │ │ │ ├── owagon32.c │ │ │ ├── owagon33.c │ │ │ ├── owagon34.c │ │ │ ├── owagon35.c │ │ │ ├── owagon36.c │ │ │ ├── owagon37.c │ │ │ ├── owagon38.c │ │ │ ├── owagon39.c │ │ │ ├── owagon4.c │ │ │ ├── owagon40.c │ │ │ ├── owagon41.c │ │ │ ├── owagon42.c │ │ │ ├── owagon43.c │ │ │ ├── owagon5.c │ │ │ ├── owagon6.c │ │ │ ├── owagon7.c │ │ │ ├── owagon8.c │ │ │ ├── owagon9.c │ │ │ ├── road1.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road18.c │ │ │ ├── road19.c │ │ │ ├── road2.c │ │ │ ├── road20.c │ │ │ ├── road21.c │ │ │ ├── road22.c │ │ │ ├── road23.c │ │ │ ├── road24.c │ │ │ ├── road25.c │ │ │ ├── road26.c │ │ │ ├── road27.c │ │ │ ├── road28.c │ │ │ ├── road29.c │ │ │ ├── road3.c │ │ │ ├── road30.c │ │ │ ├── road31.c │ │ │ ├── road32.c │ │ │ ├── road33.c │ │ │ ├── road34.c │ │ │ ├── road35.c │ │ │ ├── road36.c │ │ │ ├── road37.c │ │ │ ├── road38.c │ │ │ ├── road39.c │ │ │ ├── road4.c │ │ │ ├── road40.c │ │ │ ├── road41.c │ │ │ ├── road42.c │ │ │ ├── road43.c │ │ │ ├── road44.c │ │ │ ├── road45.c │ │ │ ├── road46.c │ │ │ ├── road47.c │ │ │ ├── road48.c │ │ │ ├── road49.c │ │ │ ├── road5.c │ │ │ ├── road50.c │ │ │ ├── road51.c │ │ │ ├── road52.c │ │ │ ├── road53.c │ │ │ ├── road54.c │ │ │ ├── road55.c │ │ │ ├── road56.c │ │ │ ├── road57.c │ │ │ ├── road58.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ └── road9.c │ │ ├── githyanki │ │ │ ├── 27,17.desert.c │ │ │ ├── githyanki.h │ │ │ ├── mobs │ │ │ │ ├── gith_captain.c │ │ │ │ ├── gith_command.c │ │ │ │ ├── gith_guard.c │ │ │ │ ├── gith_hunt.c │ │ │ │ ├── gith_priest.c │ │ │ │ ├── illithid.c │ │ │ │ ├── joseph_doren.c │ │ │ │ └── shannon_doren.c │ │ │ ├── obj │ │ │ │ ├── doren_wedding_ring.c │ │ │ │ ├── dragon_statue.c │ │ │ │ ├── gith_key.c │ │ │ │ ├── gith_symbol.c │ │ │ │ ├── lesser_silver_sword.c │ │ │ │ ├── obsidion_vambraces.c │ │ │ │ ├── silver_dagger.c │ │ │ │ └── tiamat_barb.c │ │ │ ├── rooms │ │ │ │ ├── 0_0.c │ │ │ │ ├── 1_1.c │ │ │ │ ├── 1_10.c │ │ │ │ ├── 1_11.c │ │ │ │ ├── 1_12.c │ │ │ │ ├── 1_13.c │ │ │ │ ├── 1_14.c │ │ │ │ ├── 1_15.c │ │ │ │ ├── 1_16.c │ │ │ │ ├── 1_17.c │ │ │ │ ├── 1_18.c │ │ │ │ ├── 1_19.c │ │ │ │ ├── 1_2.c │ │ │ │ ├── 1_20.c │ │ │ │ ├── 1_21.c │ │ │ │ ├── 1_22.c │ │ │ │ ├── 1_23.c │ │ │ │ ├── 1_24.c │ │ │ │ ├── 1_25.c │ │ │ │ ├── 1_26.c │ │ │ │ ├── 1_27.c │ │ │ │ ├── 1_28.c │ │ │ │ ├── 1_29.c │ │ │ │ ├── 1_3.c │ │ │ │ ├── 1_30.c │ │ │ │ ├── 1_31.c │ │ │ │ ├── 1_32.c │ │ │ │ ├── 1_33.c │ │ │ │ ├── 1_34.c │ │ │ │ ├── 1_35.c │ │ │ │ ├── 1_36.c │ │ │ │ ├── 1_37.c │ │ │ │ ├── 1_38.c │ │ │ │ ├── 1_39.c │ │ │ │ ├── 1_4.c │ │ │ │ ├── 1_40.c │ │ │ │ ├── 1_41.c │ │ │ │ ├── 1_42.c │ │ │ │ ├── 1_43.c │ │ │ │ ├── 1_44.c │ │ │ │ ├── 1_45.c │ │ │ │ ├── 1_46.c │ │ │ │ ├── 1_47.c │ │ │ │ ├── 1_48.c │ │ │ │ ├── 1_49.c │ │ │ │ ├── 1_5.c │ │ │ │ ├── 1_6.c │ │ │ │ ├── 1_7.c │ │ │ │ ├── 1_8.c │ │ │ │ ├── 1_9.c │ │ │ │ ├── 2_52.c │ │ │ │ ├── 2_53.c │ │ │ │ ├── 2_54.c │ │ │ │ ├── 2_55.c │ │ │ │ ├── 2_56.c │ │ │ │ ├── 2_57.c │ │ │ │ ├── 2_58.c │ │ │ │ ├── 2_59.c │ │ │ │ ├── 2_60.c │ │ │ │ ├── 2_61.c │ │ │ │ ├── 2_62.c │ │ │ │ ├── 2_63.c │ │ │ │ ├── 3_64.c │ │ │ │ ├── 3_65.c │ │ │ │ ├── 3_66.c │ │ │ │ ├── 3_67.c │ │ │ │ ├── 3_68.c │ │ │ │ ├── 3_69.c │ │ │ │ ├── 3_70.c │ │ │ │ ├── 3_71.c │ │ │ │ ├── 3_72.c │ │ │ │ └── 3_73.c │ │ │ └── storage │ │ │ │ ├── 1floor.c │ │ │ │ ├── 2floor.c │ │ │ │ ├── 3floor.c │ │ │ │ ├── barracks.c │ │ │ │ ├── prison.c │ │ │ │ └── stables.c │ │ ├── goblin │ │ │ ├── mon │ │ │ │ ├── archer.c │ │ │ │ ├── archer.was │ │ │ │ ├── footman.c │ │ │ │ ├── footman.was │ │ │ │ ├── gobass.c │ │ │ │ ├── keeper.c │ │ │ │ ├── keeper.was │ │ │ │ ├── king.c │ │ │ │ ├── mage.c │ │ │ │ ├── mage.was │ │ │ │ ├── rabbit.c │ │ │ │ ├── raider.c │ │ │ │ ├── ranger.c │ │ │ │ ├── ranger.was │ │ │ │ ├── rogue.c │ │ │ │ ├── royal.c │ │ │ │ ├── soldier.c │ │ │ │ ├── soldier.was │ │ │ │ ├── witch.c │ │ │ │ └── witch.was │ │ │ ├── obj │ │ │ │ ├── anvil.c │ │ │ │ ├── bone.c │ │ │ │ ├── boots.c │ │ │ │ ├── bow.c │ │ │ │ ├── chain.c │ │ │ │ ├── cloak.c │ │ │ │ ├── club.c │ │ │ │ ├── crown.c │ │ │ │ ├── gdagger.c │ │ │ │ ├── genarm.c │ │ │ │ ├── gknife.c │ │ │ │ ├── gsword.c │ │ │ │ ├── helm.c │ │ │ │ ├── insanity.c │ │ │ │ ├── insanityH.c │ │ │ │ ├── lboot.c │ │ │ │ ├── lglove.c │ │ │ │ ├── lsword.c │ │ │ │ ├── manna.c │ │ │ │ ├── necklace.c │ │ │ │ ├── rboot.c │ │ │ │ ├── rglove.c │ │ │ │ ├── robe.c │ │ │ │ ├── sceptre.c │ │ │ │ ├── staff.c │ │ │ │ └── whip.c │ │ │ ├── rooms │ │ │ │ ├── arch1.c │ │ │ │ ├── arch10.c │ │ │ │ ├── arch11.c │ │ │ │ ├── arch2.c │ │ │ │ ├── arch3.c │ │ │ │ ├── arch4.c │ │ │ │ ├── arch5.c │ │ │ │ ├── arch6.c │ │ │ │ ├── arch7.c │ │ │ │ ├── arch8.c │ │ │ │ ├── arch9.c │ │ │ │ ├── gate1.c │ │ │ │ ├── gate2.c │ │ │ │ ├── inner1.c │ │ │ │ ├── inner10.c │ │ │ │ ├── inner2.c │ │ │ │ ├── inner3.c │ │ │ │ ├── inner4.c │ │ │ │ ├── inner5.c │ │ │ │ ├── inner6.c │ │ │ │ ├── inner7.c │ │ │ │ ├── inner8.c │ │ │ │ ├── inner9.c │ │ │ │ ├── roof1.c │ │ │ │ ├── roof10.c │ │ │ │ ├── roof11.c │ │ │ │ ├── roof2.c │ │ │ │ ├── roof3.c │ │ │ │ ├── roof4.c │ │ │ │ ├── roof5.c │ │ │ │ ├── roof6.c │ │ │ │ ├── roof7.c │ │ │ │ ├── roof8.c │ │ │ │ ├── roof9.c │ │ │ │ ├── tower1.c │ │ │ │ ├── tower10.c │ │ │ │ ├── tower11.c │ │ │ │ ├── tower2.c │ │ │ │ ├── tower3.c │ │ │ │ ├── tower4.c │ │ │ │ ├── tower5.c │ │ │ │ ├── tower6.c │ │ │ │ ├── tower7.c │ │ │ │ ├── tower8.c │ │ │ │ └── tower9.c │ │ │ └── short.h │ │ ├── hotel.c │ │ ├── inherits │ │ │ ├── masterinherit.c │ │ │ ├── owagon.c │ │ │ ├── pass_parent.c │ │ │ ├── path.c │ │ │ └── tunnel.c │ │ ├── kildare │ │ │ ├── KILDARE.STORY │ │ │ ├── inherit │ │ │ │ ├── building.c │ │ │ │ ├── cave.c │ │ │ │ ├── easthigh.c │ │ │ │ ├── eastlow.c │ │ │ │ ├── eastmiddle.c │ │ │ │ ├── hidden.c │ │ │ │ ├── hiddentunnel.c │ │ │ │ ├── nest.c │ │ │ │ ├── outdoors.c │ │ │ │ ├── paddock.c │ │ │ │ ├── pathend.c │ │ │ │ ├── ptrails.c │ │ │ │ ├── townpath.c │ │ │ │ ├── tunnel.c │ │ │ │ ├── westhigh.c │ │ │ │ ├── westlow.c │ │ │ │ └── westmiddle.c │ │ │ ├── kildare.h │ │ │ ├── mon │ │ │ │ ├── aberration.c │ │ │ │ ├── aberrationthief.c │ │ │ │ ├── boy.c │ │ │ │ ├── caldon.c │ │ │ │ ├── citizen1.c │ │ │ │ ├── citizen2.c │ │ │ │ ├── citizen3.c │ │ │ │ ├── cloaker.c │ │ │ │ ├── david.c │ │ │ │ ├── guyon.c │ │ │ │ ├── joshua.c │ │ │ │ ├── lady.c │ │ │ │ ├── man.c │ │ │ │ ├── mariel.c │ │ │ │ ├── ooze.c │ │ │ │ ├── oozling.c │ │ │ │ ├── peryfem.c │ │ │ │ ├── peryguard.c │ │ │ │ ├── peryking.c │ │ │ │ ├── peryton.c │ │ │ │ ├── samson.c │ │ │ │ ├── sheep1.c │ │ │ │ ├── sheep2.c │ │ │ │ ├── sheep3.c │ │ │ │ ├── soren.c │ │ │ │ ├── tessa.c │ │ │ │ └── thalia.c │ │ │ ├── obj │ │ │ │ ├── aberrationthief.c │ │ │ │ ├── antler.c │ │ │ │ ├── b_kilt.c │ │ │ │ ├── b_scarf.c │ │ │ │ ├── b_sweater.c │ │ │ │ ├── brasskey.c │ │ │ │ ├── c_kilt.c │ │ │ │ ├── c_scarf.c │ │ │ │ ├── c_sweater.c │ │ │ │ ├── celticclasp1.c │ │ │ │ ├── cheese.c │ │ │ │ ├── earthjerkin.c │ │ │ │ ├── feathercrown.c │ │ │ │ ├── forge.c │ │ │ │ ├── gem.c │ │ │ │ ├── gloves.c │ │ │ │ ├── haggis.c │ │ │ │ ├── harvestmoon.c │ │ │ │ ├── headband.c │ │ │ │ ├── heart.c │ │ │ │ ├── hornblade.c │ │ │ │ ├── hunterhatchet.c │ │ │ │ ├── huntingcap.c │ │ │ │ ├── insectbane.c │ │ │ │ ├── ironhat.c │ │ │ │ ├── kildare_skin.c │ │ │ │ ├── kiltpin1.c │ │ │ │ ├── kiltpin2.c │ │ │ │ ├── leather_harness.c │ │ │ │ ├── leatherpants.c │ │ │ │ ├── mittens.c │ │ │ │ ├── moccasins.c │ │ │ │ ├── note1.c │ │ │ │ ├── note2.c │ │ │ │ ├── note3.c │ │ │ │ ├── note4.c │ │ │ │ ├── note5.c │ │ │ │ ├── peryton.c │ │ │ │ ├── peryton_bow.c │ │ │ │ ├── peryvial.c │ │ │ │ ├── pine_nuts.c │ │ │ │ ├── pronged_claws.c │ │ │ │ ├── purifyring.c │ │ │ │ ├── quill.c │ │ │ │ ├── quiltedjacket.c │ │ │ │ ├── rags.c │ │ │ │ ├── reapingwhirlwind.c │ │ │ │ ├── reapingwhirlwind_lg.c │ │ │ │ ├── refreshring.c │ │ │ │ ├── sheep_sausage.c │ │ │ │ ├── shockgrain.c │ │ │ │ ├── sign.c │ │ │ │ ├── sigring.c │ │ │ │ ├── skullcap.c │ │ │ │ ├── talisman.c │ │ │ │ ├── talon.c │ │ │ │ ├── torque1.c │ │ │ │ ├── torque2.c │ │ │ │ └── woolcoat.c │ │ │ └── rooms │ │ │ │ ├── cave1.c │ │ │ │ ├── cave19.c │ │ │ │ ├── cave2.c │ │ │ │ ├── cave3.c │ │ │ │ ├── cave4.c │ │ │ │ ├── cave5.c │ │ │ │ ├── cave6.c │ │ │ │ ├── cave7.c │ │ │ │ ├── cave8.c │ │ │ │ ├── cave9.c │ │ │ │ ├── hiddentunnel1.c │ │ │ │ ├── hiddentunnel2.c │ │ │ │ ├── hiddentunnel3.c │ │ │ │ ├── hiddentunnel4.c │ │ │ │ ├── lslide1.c │ │ │ │ ├── lslide2.c │ │ │ │ ├── nest1.c │ │ │ │ ├── nest2.c │ │ │ │ ├── nest3.c │ │ │ │ ├── ptrail1.c │ │ │ │ ├── ptrail10.c │ │ │ │ ├── ptrail11.c │ │ │ │ ├── ptrail12.c │ │ │ │ ├── ptrail13.c │ │ │ │ ├── ptrail14.c │ │ │ │ ├── ptrail15.c │ │ │ │ ├── ptrail16.c │ │ │ │ ├── ptrail17.c │ │ │ │ ├── ptrail18.c │ │ │ │ ├── ptrail19.c │ │ │ │ ├── ptrail2.c │ │ │ │ ├── ptrail20.c │ │ │ │ ├── ptrail21.c │ │ │ │ ├── ptrail22.c │ │ │ │ ├── ptrail23.c │ │ │ │ ├── ptrail24.c │ │ │ │ ├── ptrail25.c │ │ │ │ ├── ptrail26.c │ │ │ │ ├── ptrail27.c │ │ │ │ ├── ptrail3.c │ │ │ │ ├── ptrail4.c │ │ │ │ ├── ptrail5.c │ │ │ │ ├── ptrail6.c │ │ │ │ ├── ptrail7.c │ │ │ │ ├── ptrail8.c │ │ │ │ ├── ptrail9.c │ │ │ │ ├── roads │ │ │ │ ├── eroad01.c │ │ │ │ ├── eroad02.c │ │ │ │ ├── eroad03.c │ │ │ │ ├── eroad04.c │ │ │ │ ├── eroad05.c │ │ │ │ ├── eroad06.c │ │ │ │ ├── eroad07.c │ │ │ │ ├── eroad08.c │ │ │ │ ├── eroad09.c │ │ │ │ ├── eroad10.c │ │ │ │ ├── eroad11.c │ │ │ │ ├── eroad12.c │ │ │ │ ├── eroad13.c │ │ │ │ ├── eroad14.c │ │ │ │ ├── eroad15.c │ │ │ │ ├── hidden01.c │ │ │ │ ├── hidden02.c │ │ │ │ ├── hidden03.c │ │ │ │ ├── hidden04.c │ │ │ │ ├── hidden05.c │ │ │ │ ├── hidden06.c │ │ │ │ ├── hidden07.c │ │ │ │ ├── hidden08.c │ │ │ │ ├── wroad01.c │ │ │ │ ├── wroad02.c │ │ │ │ ├── wroad03.c │ │ │ │ ├── wroad04.c │ │ │ │ ├── wroad05.c │ │ │ │ ├── wroad06.c │ │ │ │ ├── wroad07.c │ │ │ │ ├── wroad08.c │ │ │ │ ├── wroad09.c │ │ │ │ ├── wroad10.c │ │ │ │ ├── wroad11.c │ │ │ │ ├── wroad12.c │ │ │ │ ├── wroad13.c │ │ │ │ ├── wroad14.c │ │ │ │ ├── wroad15.c │ │ │ │ ├── wroad16.c │ │ │ │ ├── wroad17.c │ │ │ │ ├── wroad18.c │ │ │ │ ├── wroad19.c │ │ │ │ ├── wroad20.c │ │ │ │ ├── wroad21.c │ │ │ │ ├── wroad22.c │ │ │ │ ├── wroad23.c │ │ │ │ ├── wroad24.c │ │ │ │ ├── wroad25.c │ │ │ │ ├── wroad26.c │ │ │ │ ├── wroad27.c │ │ │ │ ├── wroad28.c │ │ │ │ ├── wroad29.c │ │ │ │ ├── wroad30.c │ │ │ │ └── wroad30n.c │ │ │ │ ├── storage │ │ │ │ ├── butcher.c │ │ │ │ └── tailor.c │ │ │ │ ├── town │ │ │ │ ├── healer.c │ │ │ │ ├── leader.c │ │ │ │ ├── leader1.c │ │ │ │ ├── leader2.c │ │ │ │ ├── leader3.c │ │ │ │ ├── pad1.c │ │ │ │ ├── pad10.c │ │ │ │ ├── pad11.c │ │ │ │ ├── pad12.c │ │ │ │ ├── pad13.c │ │ │ │ ├── pad14.c │ │ │ │ ├── pad2.c │ │ │ │ ├── pad3.c │ │ │ │ ├── pad4.c │ │ │ │ ├── pad5.c │ │ │ │ ├── pad6.c │ │ │ │ ├── pad7.c │ │ │ │ ├── pad8.c │ │ │ │ ├── pad9.c │ │ │ │ ├── passage1.c │ │ │ │ ├── passage2.c │ │ │ │ ├── path1.c │ │ │ │ ├── path10.c │ │ │ │ ├── path11.c │ │ │ │ ├── path12.c │ │ │ │ ├── path13.c │ │ │ │ ├── path14.c │ │ │ │ ├── path15.c │ │ │ │ ├── path2.c │ │ │ │ ├── path3.c │ │ │ │ ├── path4.c │ │ │ │ ├── path5.c │ │ │ │ ├── path6.c │ │ │ │ ├── path7.c │ │ │ │ ├── path8.c │ │ │ │ ├── path9.c │ │ │ │ ├── shephut.c │ │ │ │ ├── vil1.c │ │ │ │ ├── vil2.c │ │ │ │ ├── vil3.c │ │ │ │ ├── vil4.c │ │ │ │ ├── vil5.c │ │ │ │ ├── vil6.c │ │ │ │ ├── vil7.c │ │ │ │ ├── vil8.c │ │ │ │ └── vil9.c │ │ │ │ ├── tunnel1.c │ │ │ │ ├── tunnel10.c │ │ │ │ ├── tunnel11.c │ │ │ │ ├── tunnel12.c │ │ │ │ ├── tunnel13.c │ │ │ │ ├── tunnel14.c │ │ │ │ ├── tunnel15.c │ │ │ │ ├── tunnel16.c │ │ │ │ ├── tunnel17.c │ │ │ │ ├── tunnel18.c │ │ │ │ ├── tunnel2.c │ │ │ │ ├── tunnel3.c │ │ │ │ ├── tunnel4.c │ │ │ │ ├── tunnel5.c │ │ │ │ ├── tunnel6.c │ │ │ │ ├── tunnel7.c │ │ │ │ ├── tunnel8.c │ │ │ │ └── tunnel9.c │ │ ├── long_pond.c │ │ ├── main │ │ │ ├── garrison1.c │ │ │ ├── garrison2.c │ │ │ ├── garrison3.c │ │ │ ├── garrison4.c │ │ │ ├── garrison5.c │ │ │ ├── gmr_ring.c │ │ │ ├── hq1.c │ │ │ ├── northcross.c │ │ │ └── northgate.c │ │ ├── maze │ │ │ ├── MAP.c │ │ │ ├── enterance.c │ │ │ ├── maze1.c │ │ │ ├── maze10.c │ │ │ ├── maze11.c │ │ │ ├── maze12.c │ │ │ ├── maze13.c │ │ │ ├── maze14.c │ │ │ ├── maze15.c │ │ │ ├── maze2.c │ │ │ ├── maze3.c │ │ │ ├── maze4.c │ │ │ ├── maze5.c │ │ │ ├── maze6.c │ │ │ ├── maze7.c │ │ │ ├── maze8.c │ │ │ ├── maze9.c │ │ │ ├── mon │ │ │ │ ├── dog.c │ │ │ │ ├── freddy.c │ │ │ │ ├── haw.c │ │ │ │ ├── messenger.c │ │ │ │ ├── sally.c │ │ │ │ ├── sammy.c │ │ │ │ ├── seth.c │ │ │ │ └── sharf.c │ │ │ ├── treasure.c │ │ │ └── weapon │ │ │ │ ├── axe.c │ │ │ │ ├── icepick.c │ │ │ │ ├── knife.noway │ │ │ │ ├── pouch.c │ │ │ │ ├── scroll.c │ │ │ │ ├── stick.c │ │ │ │ ├── sword.c │ │ │ │ └── twosword.c │ │ ├── meadows │ │ │ ├── inherits │ │ │ │ ├── meadows.c │ │ │ │ ├── plains.c │ │ │ │ └── shrub.c │ │ │ ├── meadow.h │ │ │ ├── meadow1.c │ │ │ ├── meadow10.c │ │ │ ├── meadow11.c │ │ │ ├── meadow12.c │ │ │ ├── meadow13.c │ │ │ ├── meadow14.c │ │ │ ├── meadow15.c │ │ │ ├── meadow16.c │ │ │ ├── meadow17.c │ │ │ ├── meadow18.c │ │ │ ├── meadow19.c │ │ │ ├── meadow2.c │ │ │ ├── meadow20.c │ │ │ ├── meadow3.c │ │ │ ├── meadow4.c │ │ │ ├── meadow5.c │ │ │ ├── meadow6.c │ │ │ ├── meadow7.c │ │ │ ├── meadow8.c │ │ │ ├── meadow9.c │ │ │ ├── mons │ │ │ │ ├── antelope.c │ │ │ │ ├── bdog.c │ │ │ │ ├── bhawk.c │ │ │ │ ├── cheetah.c │ │ │ │ ├── farith.c │ │ │ │ ├── firebeetle.c │ │ │ │ ├── flind.c │ │ │ │ ├── hyena.c │ │ │ │ ├── lbasilisk.c │ │ │ │ ├── maniela.c │ │ │ │ ├── meriago.c │ │ │ │ ├── muskrat.c │ │ │ │ ├── periodo.c │ │ │ │ ├── spotted_lion.c │ │ │ │ ├── weasel.c │ │ │ │ ├── wereboar.c │ │ │ │ └── wererat.c │ │ │ ├── obj │ │ │ │ ├── antlers.c │ │ │ │ ├── arrows.c │ │ │ │ ├── bearboots.c │ │ │ │ ├── bearcoat.c │ │ │ │ ├── bearjacket.c │ │ │ │ ├── berries.c │ │ │ │ ├── cloak.c │ │ │ │ ├── club.c │ │ │ │ ├── d_belt.c │ │ │ │ ├── d_boots.c │ │ │ │ ├── d_cloak.c │ │ │ │ ├── d_comb.c │ │ │ │ ├── d_dress.c │ │ │ │ ├── d_earrings.c │ │ │ │ ├── d_fur.c │ │ │ │ ├── d_hat.c │ │ │ │ ├── d_jacket.c │ │ │ │ ├── d_leggings.c │ │ │ │ ├── d_pants.c │ │ │ │ ├── d_rabbit.c │ │ │ │ ├── d_scarf.c │ │ │ │ ├── d_shirt.c │ │ │ │ ├── d_shorts.c │ │ │ │ ├── d_skin.c │ │ │ │ ├── d_skirt.c │ │ │ │ ├── d_statue.c │ │ │ │ ├── d_sweater.c │ │ │ │ ├── d_tunic.c │ │ │ │ ├── gland.c │ │ │ │ ├── helmet.c │ │ │ │ ├── jerkin.c │ │ │ │ ├── leather.c │ │ │ │ ├── longbow.c │ │ │ │ ├── luckyhorseshoes.c │ │ │ │ ├── mask.c │ │ │ │ ├── pelt.c │ │ │ │ ├── r_belt.c │ │ │ │ ├── r_boots.c │ │ │ │ ├── r_cloak.c │ │ │ │ ├── r_comb.c │ │ │ │ ├── r_dress.c │ │ │ │ ├── r_earrings.c │ │ │ │ ├── r_fur.c │ │ │ │ ├── r_hat.c │ │ │ │ ├── r_jacket.c │ │ │ │ ├── r_leggings.c │ │ │ │ ├── r_pants.c │ │ │ │ ├── r_rabbit.c │ │ │ │ ├── r_scarf.c │ │ │ │ ├── r_sgloves.c │ │ │ │ ├── r_shirt.c │ │ │ │ ├── r_shorts.c │ │ │ │ ├── r_skin.c │ │ │ │ ├── r_skirt.c │ │ │ │ ├── r_sleggings.c │ │ │ │ ├── r_statue.c │ │ │ │ ├── r_stunic.c │ │ │ │ ├── r_svest.c │ │ │ │ ├── r_sweater.c │ │ │ │ ├── r_tunic.c │ │ │ │ ├── s_gloves.c │ │ │ │ ├── s_leggings.c │ │ │ │ ├── s_tunic.c │ │ │ │ ├── s_vest.c │ │ │ │ ├── spelt.c │ │ │ │ ├── stew.c │ │ │ │ └── wpelt.c │ │ │ ├── plains1.c │ │ │ ├── plains10.c │ │ │ ├── plains11.c │ │ │ ├── plains12.c │ │ │ ├── plains13.c │ │ │ ├── plains14.c │ │ │ ├── plains15.c │ │ │ ├── plains16.c │ │ │ ├── plains17.c │ │ │ ├── plains18.c │ │ │ ├── plains2.c │ │ │ ├── plains3.c │ │ │ ├── plains4.c │ │ │ ├── plains5.c │ │ │ ├── plains6.c │ │ │ ├── plains7.c │ │ │ ├── plains8.c │ │ │ ├── plains9.c │ │ │ ├── pond.c │ │ │ ├── shrub1.c │ │ │ ├── shrub2.c │ │ │ ├── shrub3.c │ │ │ ├── shrub4.c │ │ │ ├── shrub5.c │ │ │ └── storage │ │ │ │ ├── craft_storage.c │ │ │ │ ├── general_storage.c │ │ │ │ ├── hut1.c │ │ │ │ ├── hut2.c │ │ │ │ ├── hut3.c │ │ │ │ ├── hut4.c │ │ │ │ └── tailor_storage.c │ │ ├── mountain │ │ │ ├── alcove.c │ │ │ ├── cave01.c │ │ │ ├── cave02.c │ │ │ ├── cave03.c │ │ │ ├── cave04.c │ │ │ ├── cave05.c │ │ │ ├── cave06.c │ │ │ ├── cave07.c │ │ │ ├── cave08.c │ │ │ ├── cave09.c │ │ │ ├── cave10.c │ │ │ ├── cave11.c │ │ │ ├── cave12.c │ │ │ ├── cave13.c │ │ │ ├── cave14.c │ │ │ ├── cave15.c │ │ │ ├── cave16.c │ │ │ ├── cave17.c │ │ │ ├── cave18.c │ │ │ ├── cave19.c │ │ │ ├── cave20.c │ │ │ ├── cave21.c │ │ │ ├── cave22.c │ │ │ ├── cave23.c │ │ │ ├── cave24.c │ │ │ ├── cave25.c │ │ │ ├── cave26.c │ │ │ ├── cave27.c │ │ │ ├── cave28.c │ │ │ ├── cave29.c │ │ │ ├── cave30.c │ │ │ ├── cave31.c │ │ │ ├── cave32.c │ │ │ ├── cave33.c │ │ │ ├── cave34.c │ │ │ ├── cave35.c │ │ │ ├── cave36.c │ │ │ ├── cave37.c │ │ │ ├── cave38.c │ │ │ ├── cave39.c │ │ │ ├── cave40.c │ │ │ ├── cave41.c │ │ │ ├── cave42.c │ │ │ ├── cave43.c │ │ │ ├── cave44.c │ │ │ ├── cave45.c │ │ │ ├── cave46.c │ │ │ ├── cave47.c │ │ │ ├── cave48.c │ │ │ ├── cave49.c │ │ │ ├── cave50.c │ │ │ ├── cave51.c │ │ │ ├── cave52.c │ │ │ ├── cave53.c │ │ │ ├── cave54.c │ │ │ ├── cave55.c │ │ │ ├── cave56.c │ │ │ ├── cave57.c │ │ │ ├── cave58.c │ │ │ ├── cave59.c │ │ │ ├── cave60.c │ │ │ ├── cave61.c │ │ │ ├── cave62.c │ │ │ ├── cave63.c │ │ │ ├── cave64.c │ │ │ ├── cave65.c │ │ │ ├── cave66.c │ │ │ ├── cave67.c │ │ │ ├── cave68.c │ │ │ ├── cave69.c │ │ │ ├── cave70.c │ │ │ ├── cave71.c │ │ │ ├── cave72.c │ │ │ ├── cave73.c │ │ │ ├── cave74.c │ │ │ ├── cave75.c │ │ │ ├── cave76.c │ │ │ ├── cave77.c │ │ │ ├── echoes.h │ │ │ ├── mons │ │ │ │ ├── deep.c │ │ │ │ ├── dwarf.c │ │ │ │ ├── giant.c │ │ │ │ ├── grakulan.c │ │ │ │ ├── half-ogre.c │ │ │ │ ├── koboldf.c │ │ │ │ ├── lizard.c │ │ │ │ ├── ogre.c │ │ │ │ ├── ogre2.c │ │ │ │ ├── ogreking.c │ │ │ │ ├── ulfgar.c │ │ │ │ └── worker.c │ │ │ ├── obj │ │ │ │ ├── WS_FTP.LOG │ │ │ │ ├── helmet.c │ │ │ │ ├── helmet2.c │ │ │ │ ├── mining_pick.c │ │ │ │ └── ogrespear.c │ │ │ ├── road1.c │ │ │ ├── road2.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── tunnel01.c │ │ │ ├── tunnel02.c │ │ │ ├── tunnel03.c │ │ │ ├── tunnel04.c │ │ │ ├── tunnel05.c │ │ │ ├── tunnel06.c │ │ │ ├── tunnel07.c │ │ │ ├── tunnel08.c │ │ │ └── tunnel09.c │ │ ├── muuldaan │ │ │ ├── defs.h │ │ │ ├── inherit │ │ │ │ ├── general.c │ │ │ │ ├── path.c │ │ │ │ ├── smith.c │ │ │ │ └── town.c │ │ │ ├── mon │ │ │ │ ├── bank_guard.c │ │ │ │ ├── bank_teller.c │ │ │ │ ├── burzkam.c │ │ │ │ ├── dhac.c │ │ │ │ ├── fyvir.c │ │ │ │ ├── grafkai.c │ │ │ │ ├── greshk.c │ │ │ │ ├── guard1.c │ │ │ │ ├── guard2.c │ │ │ │ ├── guard3.c │ │ │ │ ├── ilihen.c │ │ │ │ ├── llefi.c │ │ │ │ ├── psi_gemcutter.c │ │ │ │ ├── snarfblat.c │ │ │ │ ├── snarfblat_storage.c │ │ │ │ ├── taalaar.c │ │ │ │ ├── tuugek.c │ │ │ │ ├── uugaruf.c │ │ │ │ └── zekkijn.c │ │ │ ├── obj │ │ │ │ ├── breastplate.c │ │ │ │ ├── gobsign.c │ │ │ │ ├── hand.c │ │ │ │ └── rattyrobe.c │ │ │ └── rooms │ │ │ │ ├── bank.c │ │ │ │ ├── cartroom.c │ │ │ │ ├── cavern1.c │ │ │ │ ├── cavern10.c │ │ │ │ ├── cavern11.c │ │ │ │ ├── cavern2.c │ │ │ │ ├── cavern3.c │ │ │ │ ├── cavern4.c │ │ │ │ ├── cavern5.c │ │ │ │ ├── cavern6.c │ │ │ │ ├── cavern7.c │ │ │ │ ├── cavern8.c │ │ │ │ ├── cavern9.c │ │ │ │ ├── church.c │ │ │ │ ├── components.c │ │ │ │ ├── food.c │ │ │ │ ├── general.c │ │ │ │ ├── healer.c │ │ │ │ ├── mage.c │ │ │ │ ├── path1.c │ │ │ │ ├── path2.c │ │ │ │ ├── path3.c │ │ │ │ ├── path4.c │ │ │ │ ├── path5.c │ │ │ │ ├── path6.c │ │ │ │ ├── path7.c │ │ │ │ ├── psion.c │ │ │ │ ├── psion2.c │ │ │ │ ├── smith.c │ │ │ │ └── thief.c │ │ ├── pass.h │ │ ├── pass │ │ │ ├── hm_quest_begin.c │ │ │ ├── long_pond.c │ │ │ ├── pass1.c │ │ │ ├── pass10.c │ │ │ ├── pass11.c │ │ │ ├── pass12.c │ │ │ ├── pass13.c │ │ │ ├── pass14.c │ │ │ ├── pass15.c │ │ │ ├── pass16.c │ │ │ ├── pass17.c │ │ │ ├── pass18.c │ │ │ ├── pass19.c │ │ │ ├── pass2.c │ │ │ ├── pass20.c │ │ │ ├── pass21.c │ │ │ ├── pass22.c │ │ │ ├── pass23.c │ │ │ ├── pass24.c │ │ │ ├── pass25.c │ │ │ ├── pass26.c │ │ │ ├── pass27.c │ │ │ ├── pass28.c │ │ │ ├── pass29.c │ │ │ ├── pass3.c │ │ │ ├── pass30.c │ │ │ ├── pass4.c │ │ │ ├── pass5.c │ │ │ ├── pass6.c │ │ │ ├── pass7.c │ │ │ ├── pass8.c │ │ │ ├── pass9.c │ │ │ ├── passn1.c │ │ │ ├── passn10.c │ │ │ ├── passn11.c │ │ │ ├── passn2.c │ │ │ ├── passn3.c │ │ │ ├── passn4.c │ │ │ ├── passn5.c │ │ │ ├── passn6.c │ │ │ ├── passn7.c │ │ │ ├── passn8.c │ │ │ ├── passn9.c │ │ │ ├── road1.c │ │ │ ├── road10.c │ │ │ ├── road11.c │ │ │ ├── road12.c │ │ │ ├── road13.c │ │ │ ├── road14.c │ │ │ ├── road15.c │ │ │ ├── road16.c │ │ │ ├── road17.c │ │ │ ├── road18.c │ │ │ ├── road2.c │ │ │ ├── road3.c │ │ │ ├── road4.c │ │ │ ├── road5.c │ │ │ ├── road6.c │ │ │ ├── road7.c │ │ │ ├── road8.c │ │ │ └── road9.c │ │ ├── pepitom │ │ │ ├── Pepitom.h │ │ │ ├── alchemist.c │ │ │ ├── bar.c │ │ │ ├── barhome.c │ │ │ ├── basement.c │ │ │ ├── church.c │ │ │ ├── ealley01.c │ │ │ ├── ealley02.c │ │ │ ├── ealley03.c │ │ │ ├── ealley04.c │ │ │ ├── ealley05.c │ │ │ ├── ealley06.c │ │ │ ├── ealley07.c │ │ │ ├── ealley08.c │ │ │ ├── eroad01.c │ │ │ ├── eroad02.c │ │ │ ├── eroad03.c │ │ │ ├── eroad04.c │ │ │ ├── eroad05.c │ │ │ ├── eroad06.c │ │ │ ├── eroad07.c │ │ │ ├── eroad08.c │ │ │ ├── eroad09.c │ │ │ ├── eroad10.c │ │ │ ├── eroad11.c │ │ │ ├── eroad12.c │ │ │ ├── eroad13.c │ │ │ ├── eroad14.c │ │ │ ├── eroad15.c │ │ │ ├── eroad16.c │ │ │ ├── eroad17.c │ │ │ ├── eroad18.c │ │ │ ├── eroad19.c │ │ │ ├── eroad20.c │ │ │ ├── eroad21.c │ │ │ ├── eroad22.c │ │ │ ├── eroad23.c │ │ │ ├── eroad24.c │ │ │ ├── eroad25.c │ │ │ ├── eroad26.c │ │ │ ├── eroad27.c │ │ │ ├── eroad28.c │ │ │ ├── ferry01.c │ │ │ ├── ferry02.c │ │ │ ├── ferry03.c │ │ │ ├── ferry04.c │ │ │ ├── ferry05.c │ │ │ ├── gs_storage.c │ │ │ ├── gs_store.c │ │ │ ├── hermit.c │ │ │ ├── inn.c │ │ │ ├── mayor01.c │ │ │ ├── mayor02.c │ │ │ ├── mayor03.c │ │ │ ├── mayor04.c │ │ │ ├── mayor05.c │ │ │ ├── mroad01.c │ │ │ ├── mroad02.c │ │ │ ├── path01.c │ │ │ ├── path02.c │ │ │ ├── path03.c │ │ │ ├── path04.c │ │ │ ├── path05.c │ │ │ ├── path06.c │ │ │ ├── path07.c │ │ │ ├── path08.c │ │ │ ├── path09.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path17.c │ │ │ ├── path18.c │ │ │ ├── path19.c │ │ │ ├── path20.c │ │ │ ├── pepitom.c │ │ │ ├── reginold.c │ │ │ ├── road01.c │ │ │ ├── road02.c │ │ │ ├── road03.c │ │ │ ├── road04.c │ │ │ ├── road05.c │ │ │ ├── road06.c │ │ │ ├── road07.c │ │ │ ├── road08.c │ │ │ ├── road09.c │ │ │ ├── road10.c │ │ │ ├── shack.c │ │ │ ├── stella.c │ │ │ ├── walley01.c │ │ │ ├── walley02.c │ │ │ ├── walley03.c │ │ │ ├── walley04.c │ │ │ ├── walley05.c │ │ │ ├── walley06.c │ │ │ ├── walley07.c │ │ │ ├── walley08.c │ │ │ ├── walley09.c │ │ │ ├── walley10.c │ │ │ ├── weapon.c │ │ │ ├── weapon_storage.c │ │ │ ├── weaponhome.c │ │ │ ├── wroad01.c │ │ │ ├── wroad02.c │ │ │ ├── wroad03.c │ │ │ ├── wroad04.c │ │ │ ├── wroad05.c │ │ │ ├── wroad06.c │ │ │ ├── wroad07.c │ │ │ ├── wroad08.c │ │ │ ├── wroad09.c │ │ │ ├── wroad10.c │ │ │ ├── wroad11.c │ │ │ ├── wroad12.c │ │ │ ├── wroad13.c │ │ │ ├── wroad14.c │ │ │ ├── wroad15.c │ │ │ ├── wroad16.c │ │ │ ├── wroad17.c │ │ │ ├── wroad18.c │ │ │ ├── wroad19.c │ │ │ ├── wroad20.c │ │ │ ├── wroad21.c │ │ │ ├── wroad22.c │ │ │ ├── wroad23.c │ │ │ ├── wroad24.c │ │ │ ├── wroad25.c │ │ │ ├── wroad26.c │ │ │ ├── wroad27.c │ │ │ └── wroad28.c │ │ ├── shadow.h │ │ ├── tmp │ │ ├── tour │ │ │ ├── .plan │ │ │ ├── death │ │ │ │ ├── bank.c │ │ │ │ ├── bar.c │ │ │ │ ├── book.c │ │ │ │ ├── croom.c │ │ │ │ ├── dth_store.c │ │ │ │ ├── hall1.c │ │ │ │ ├── hall2.c │ │ │ │ ├── hall3.c │ │ │ │ ├── hall4.c │ │ │ │ ├── inn.c │ │ │ │ ├── newbie1.c │ │ │ │ ├── newbie2.c │ │ │ │ └── quag.c │ │ │ ├── grnd_paladin │ │ │ │ ├── bank.c │ │ │ │ ├── bar.c │ │ │ │ ├── croom.c │ │ │ │ ├── gs_store.c │ │ │ │ ├── hall1.c │ │ │ │ ├── hall2.c │ │ │ │ ├── hall3.c │ │ │ │ ├── hall4.c │ │ │ │ ├── inn.c │ │ │ │ ├── newbie1.c │ │ │ │ └── newbie2.c │ │ │ └── main.c │ │ ├── troll │ │ │ ├── actions1.c │ │ │ ├── cavern1.c │ │ │ ├── mon │ │ │ │ ├── belly.c │ │ │ │ ├── giant.c │ │ │ │ ├── grunt.c │ │ │ │ ├── miner.c │ │ │ │ ├── savage.c │ │ │ │ ├── sold.c │ │ │ │ ├── troll.c │ │ │ │ └── war.c │ │ │ ├── obj │ │ │ │ ├── gem1.c │ │ │ │ ├── gem2.c │ │ │ │ ├── gem3.c │ │ │ │ ├── gem4.c │ │ │ │ ├── gem5.c │ │ │ │ ├── gem6.c │ │ │ │ ├── gem7.c │ │ │ │ ├── gem8.c │ │ │ │ ├── lnugg.c │ │ │ │ ├── nugg.c │ │ │ │ └── tools.c │ │ │ ├── rooms │ │ │ │ ├── a1.c │ │ │ │ └── a2.c │ │ │ └── short.h │ │ └── village │ │ │ ├── flugar.c │ │ │ ├── mainroad1.c │ │ │ ├── mainroad2.c │ │ │ ├── mainroad3.c │ │ │ ├── mainroad4.c │ │ │ ├── mainroad5.c │ │ │ ├── mainroad6.c │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path2.c │ │ │ ├── path3.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ ├── path9.c │ │ │ ├── pendaxin.c │ │ │ └── valchor.c │ ├── storage │ │ ├── armor_storage.c │ │ ├── gs_storage.c │ │ └── weapon_storage.c │ ├── thief_training │ │ ├── defs.h │ │ ├── inherit │ │ │ └── chamber.c │ │ ├── obj │ │ │ ├── clockwork1.c │ │ │ ├── clockwork2.c │ │ │ ├── clockwork3.c │ │ │ ├── clockwork4.c │ │ │ ├── copperkey.c │ │ │ ├── silverkey.c │ │ │ ├── thief_gloves.c │ │ │ └── thief_tools.c │ │ └── room │ │ │ ├── chamber1.c │ │ │ ├── chamber10.c │ │ │ ├── chamber2.c │ │ │ ├── chamber3.c │ │ │ ├── chamber4.c │ │ │ ├── chamber5.c │ │ │ ├── chamber6.c │ │ │ ├── chamber7.c │ │ │ ├── chamber8.c │ │ │ ├── chamber9.c │ │ │ └── entrance.c │ ├── virtual │ │ ├── 13,22.sea.c │ │ ├── 16,30.sea.c │ │ ├── desert │ │ │ ├── 0,1.desert2.c │ │ │ ├── 1,0.desert.c │ │ │ ├── 18,45.desert.c │ │ │ ├── 25,0.desert.c │ │ │ ├── 25,15.desert.c │ │ │ ├── 25,25.desert.c │ │ │ ├── 25,45.desert.c │ │ │ ├── 26,15.desert.c │ │ │ ├── 27,15.desert.c │ │ │ ├── 27,17.desert.c │ │ │ ├── 28,15.desert.c │ │ │ ├── 29,15.desert.c │ │ │ ├── 30,15.desert.c │ │ │ ├── 31,15.desert.c │ │ │ ├── 32,15.desert.c │ │ │ ├── 33,15.desert.c │ │ │ ├── 34,15.desert.c │ │ │ ├── 35,15.desert.c │ │ │ ├── 36,15.desert.c │ │ │ ├── 37,14.desert.c │ │ │ ├── 37,15.desert.c │ │ │ ├── 38,13.desert.c │ │ │ ├── 38,15.desert.c │ │ │ ├── 39,14.desert.c │ │ │ ├── 48,0.desert.c │ │ │ ├── 48,1.desert.c │ │ │ ├── 49,49.desert.c │ │ │ ├── desert.desc │ │ │ ├── desert.exits │ │ │ ├── desert.night │ │ │ ├── desert.terrain │ │ │ └── obj │ │ │ │ └── well.c │ │ ├── desert_daemon.c │ │ ├── desert_server.c │ │ ├── dinherit.c │ │ ├── dinherit2.c │ │ ├── level1 │ │ │ ├── 14,12.level1.c │ │ │ ├── level1.desc │ │ │ ├── level1.exits │ │ │ └── level1.terrain │ │ ├── level1_daemon.c │ │ ├── level1_server.c │ │ ├── level2 │ │ │ ├── 13,11.level2.c │ │ │ ├── level2.desc │ │ │ ├── level2.exits │ │ │ ├── level2.terrain │ │ │ └── obj │ │ │ │ ├── chest.c │ │ │ │ ├── chest1.c │ │ │ │ └── key.c │ │ ├── level2_daemon.c │ │ ├── level2_server.c │ │ ├── mon │ │ │ ├── dhammer.c │ │ │ ├── dinherit.c │ │ │ ├── dwaraxe.c │ │ │ ├── ggirdle.c │ │ │ ├── gpick.c │ │ │ ├── hdagger.c │ │ │ ├── kbracelet.c │ │ │ ├── kclaws.c │ │ │ ├── leaderu.c │ │ │ ├── smallu.c │ │ │ └── smallu2.c │ │ ├── river │ │ │ ├── 0,0.river.c │ │ │ ├── 30,11.river.c │ │ │ ├── 38,34.river.c │ │ │ ├── obj │ │ │ │ ├── r_ferryroom1.c │ │ │ │ ├── r_ferryroom2.c │ │ │ │ ├── r_ferryroom3.c │ │ │ │ ├── r_ferryroom4.c │ │ │ │ ├── riverferry1.c │ │ │ │ ├── riverferry2.c │ │ │ │ ├── riverferry3.c │ │ │ │ └── riverferry4.c │ │ │ ├── river.desc │ │ │ ├── river.exits │ │ │ ├── river.terrain │ │ │ ├── river_dock.c │ │ │ ├── shadow.dock.c │ │ │ ├── tabor.dock.c │ │ │ └── tharis.dock.c │ │ ├── river_daemon.c │ │ ├── river_server.c │ │ ├── sea │ │ │ ├── 10,34.sea.c │ │ │ ├── 11,50.c │ │ │ ├── 11,50.sea.c │ │ │ ├── 13,22.sea.c │ │ │ ├── 16,20.sea.c │ │ │ ├── 16,30.sea.c │ │ │ ├── 16,45.sea.c │ │ │ ├── 16,8.sea.c │ │ │ ├── 18,5.sea.c │ │ │ ├── 2,19.sea.c │ │ │ ├── 20,30.sea.c │ │ │ ├── 26,40.sea.c │ │ │ ├── 36,0.sea.c │ │ │ ├── 36,20.sea.c │ │ │ ├── 43,28.sea.c │ │ │ ├── 46,21.sea.c │ │ │ ├── 49,0.sea.c │ │ │ ├── 50,50.sea.c │ │ │ ├── 50,50.sea.ferret │ │ │ ├── 51,7.sea.c │ │ │ ├── 55,0.sea.c │ │ │ ├── 58,23.sea.c │ │ │ ├── 62,8.sea.c │ │ │ ├── 65,35.sea.c │ │ │ ├── aramanth.dock.c │ │ │ ├── argentrock.dock.c │ │ │ ├── atoyatl.dock.c │ │ │ ├── attaya.dock.c │ │ │ ├── attayaold.dock.c │ │ │ ├── back │ │ │ │ ├── sea.desc │ │ │ │ ├── sea.exits │ │ │ │ └── sea.terrain │ │ │ ├── coralsea.dock.c │ │ │ ├── dallyh.dock.c │ │ │ ├── deku.dock.c │ │ │ ├── dino.dock.c │ │ │ ├── dock.c │ │ │ ├── eldebaro.dock.c │ │ │ ├── fall.dock.c │ │ │ ├── hmquest.dock.c │ │ │ ├── ice.dock.c │ │ │ ├── laerad.dock.c │ │ │ ├── leilani.dock.c │ │ │ ├── obj │ │ │ │ ├── baks │ │ │ │ │ ├── boat.c │ │ │ │ │ └── dock.c │ │ │ │ ├── boat.c │ │ │ │ ├── boat.tris │ │ │ │ ├── boat_inherit.c │ │ │ │ ├── boatroom.c │ │ │ │ ├── boatroom.crys │ │ │ │ ├── boatroom.obs │ │ │ │ ├── boatroom.tris │ │ │ │ ├── dock.c │ │ │ │ ├── ferryboat.c │ │ │ │ ├── ferryboat.obs │ │ │ │ ├── ferryboat1.c │ │ │ │ ├── ferryboat2.c │ │ │ │ ├── ferryboat3.c │ │ │ │ ├── ferryroom.c │ │ │ │ ├── ferryroom1.c │ │ │ │ ├── ferryroom2.c │ │ │ │ └── ferryroom3.c │ │ │ ├── ovadexel.dock.c │ │ │ ├── pirate.dock.c │ │ │ ├── raiders.dock.c │ │ │ ├── rilynath.dock.c │ │ │ ├── sea.desc │ │ │ ├── sea.exits │ │ │ ├── sea.terrain │ │ │ ├── sea.tris │ │ │ ├── seneca.dock.c │ │ │ ├── shadow.dock.c │ │ │ ├── spring.dock.c │ │ │ ├── tonerra.dock.c │ │ │ ├── tonovi.dock.c │ │ │ ├── torm.dock.c │ │ │ ├── undead.dock.c │ │ │ └── winter.dock.c │ │ ├── sea_daemon.c │ │ └── sea_server.c │ └── voting.c ├── shadowgate │ ├── abyss.c │ ├── adv_main.c │ ├── align_set.c │ ├── begin.c │ ├── begin2.c │ ├── blurbs.h │ ├── cache.c │ ├── class_news.c │ ├── class_set.c │ ├── color_set.c │ ├── colors │ │ ├── greyelf.c │ │ ├── half-elf.c │ │ ├── half-orc.c │ │ └── old │ │ │ ├── beastman.c │ │ │ ├── bugbear.c │ │ │ ├── centaur.c │ │ │ ├── deepgnome.c │ │ │ ├── drow.c │ │ │ ├── dwarf.old2 │ │ │ ├── elf.c │ │ │ ├── firbolg.c │ │ │ ├── forestgnome.c │ │ │ ├── ghosthalfling.c │ │ │ ├── gnoll.c │ │ │ ├── gnome.c │ │ │ ├── gnome.old2 │ │ │ ├── goblin.c │ │ │ ├── golddwarf.c │ │ │ ├── half-drow.c │ │ │ ├── half-ogre.c │ │ │ ├── halfling.c │ │ │ ├── halfling.old2 │ │ │ ├── hobgoblin.c │ │ │ ├── human.c │ │ │ ├── minotaur.c │ │ │ ├── ogre-mage.c │ │ │ ├── ogre.c │ │ │ ├── orc.c │ │ │ ├── orc.old2 │ │ │ ├── shade.c │ │ │ ├── ssri_tel_quessir.c │ │ │ ├── sunelf.c │ │ │ ├── voadkyn.c │ │ │ ├── wemic.c │ │ │ ├── wildelf.c │ │ │ ├── woodelf.c │ │ │ └── yuan-ti.c │ ├── conversion │ │ ├── conversion1.c │ │ ├── conversion2.c │ │ ├── conversion3.c │ │ ├── spellbert.c │ │ └── stats1.c │ ├── death │ │ ├── afterlife.c │ │ ├── death_exit.c │ │ ├── death_exit_offestry.c │ │ ├── death_inherit.c │ │ ├── death_room.c │ │ ├── death_room2.c │ │ └── death_room3.c │ ├── dieities.h │ ├── dieties.h │ ├── freezer.c │ ├── genetics.h │ ├── idle_supply.c │ ├── jail.c │ ├── magic_book.c │ ├── masters │ │ ├── barbarian.c │ │ ├── bard.c │ │ ├── cavalier.c │ │ ├── class_stuff.c │ │ ├── cleric.c │ │ ├── druid.c │ │ ├── fighter.c │ │ ├── mage.c │ │ ├── masters.c │ │ ├── paladin.c │ │ ├── psion.c │ │ ├── psywarrior.c │ │ ├── ranger.c │ │ ├── sorcerer.c │ │ ├── thief.c │ │ └── warlock.c │ ├── misc │ │ └── quest_room.c │ ├── morality.h │ ├── ombud_hall.c │ ├── pkill_tracker.c │ ├── quests │ │ ├── boy.c │ │ ├── bugbear.c │ │ ├── cave_note.c │ │ ├── deku.c │ │ ├── doren_wedding_ring.c │ │ ├── elfquest.c │ │ ├── forest.c │ │ ├── grizonfail.c │ │ ├── grizonpass.c │ │ ├── hansoth.c │ │ ├── hmquest.c │ │ ├── lava.c │ │ ├── lothwaite_quest.c │ │ ├── quest_wand.c │ │ ├── rest.c │ │ ├── riddle_quest.c │ │ ├── siriths_task.c │ │ ├── stellar_quest.c │ │ ├── treasury_quest.c │ │ └── undead.c │ ├── race objects │ │ ├── beastman.c │ │ ├── bugbear.c │ │ ├── centaur.c │ │ ├── drow.c │ │ ├── dwarf.c │ │ ├── elf.c │ │ ├── firbolg.c │ │ ├── gnoll.c │ │ ├── gnome.c │ │ ├── goblin.c │ │ ├── half-drow.c │ │ ├── half-ogre.c │ │ ├── halfling.c │ │ ├── hobgoblin.c │ │ ├── human.c │ │ ├── minotaur.c │ │ ├── ogre-mage.c │ │ ├── ogre.c │ │ ├── orc.c │ │ ├── shade.c │ │ ├── voadkyn.c │ │ ├── wemic.c │ │ └── yuan-ti.c │ ├── race_set.c │ ├── setter.c │ ├── setter_object.c │ └── void.c ├── standard │ ├── adm │ │ └── master.c │ ├── attic │ │ ├── class_change.c │ │ └── tmp_hos │ ├── data │ │ └── properties.t │ ├── mon │ │ └── armageddon.c │ ├── mountains │ │ ├── chamber1.c │ │ ├── chamber2.c │ │ ├── chamber3.c │ │ ├── chamber4.c │ │ ├── entrance.c │ │ ├── temp.c │ │ ├── tunnel1.c │ │ ├── tunnel2.c │ │ └── tunnel3.c │ ├── obj │ │ ├── armor │ │ ├── armour │ │ │ ├── helm.c │ │ │ └── leather.c │ │ ├── magic │ │ │ └── ball.c │ │ ├── misc │ │ │ ├── bag.c │ │ │ ├── chest.c │ │ │ ├── deed.c │ │ │ ├── easter_egg.c │ │ │ ├── fishing_pole.c │ │ │ └── watchtower.c │ │ └── mon │ │ │ ├── armageddon.c │ │ │ ├── atmos.c │ │ │ ├── balrog.c │ │ │ ├── beggar.c │ │ │ ├── bertha.c │ │ │ ├── bingy.c │ │ │ ├── christmas_bunny.c │ │ │ ├── easter_bunny.c │ │ │ ├── goblin_fighter.c │ │ │ ├── horace.c │ │ │ ├── knight.c │ │ │ ├── lars.c │ │ │ ├── mora.c │ │ │ ├── orc_shaman.c │ │ │ ├── rocko.c │ │ │ ├── unity.c │ │ │ └── waitress.c │ ├── old │ │ ├── adv_inner.c │ │ ├── adv_main.c │ │ ├── alley1.c │ │ ├── alley2.c │ │ ├── arch.c │ │ ├── bank.c │ │ ├── bank_vault.c │ │ ├── begin.c │ │ ├── booth.c │ │ ├── bug.c │ │ ├── building.c │ │ ├── chapel.c │ │ ├── cleric_hall.c │ │ ├── cleric_join.c │ │ ├── cleric_vote.c │ │ ├── dump.c │ │ ├── e_boc_la1.c │ │ ├── e_boc_la2.c │ │ ├── e_boc_la3.c │ │ ├── east_road1.c │ │ ├── east_road2.c │ │ ├── east_road3.c │ │ ├── farm.c │ │ ├── fighter_hall.c │ │ ├── fighter_join.c │ │ ├── fighter_vote.c │ │ ├── forest1.c │ │ ├── forest2.c │ │ ├── forest3.c │ │ ├── highway1.c │ │ ├── highway2.c │ │ ├── highway3.c │ │ ├── hole.c │ │ ├── hospital.c │ │ ├── house.c │ │ ├── idle_storage.c │ │ ├── immortal_hall.c │ │ ├── jungle.c │ │ ├── kataan_hall.c │ │ ├── kataan_join.c │ │ ├── kataan_vote.c │ │ ├── law.c │ │ ├── library.c │ │ ├── locked.c │ │ ├── lpc_inner.c │ │ ├── lpmud_room.c │ │ ├── mage_hall.c │ │ ├── mage_join.c │ │ ├── mage_vote.c │ │ ├── medium.c │ │ ├── mob_maker.c │ │ ├── monastery.c │ │ ├── monk_hall.c │ │ ├── monk_join.c │ │ ├── monk_vote.c │ │ ├── mudlib.c │ │ ├── n_centre1.c │ │ ├── n_centre2.c │ │ ├── ombud_hall.c │ │ ├── outland1.c │ │ ├── outland2.c │ │ ├── pass1.c │ │ ├── pass2.c │ │ ├── pass3.c │ │ ├── pier1.c │ │ ├── planning_room.c │ │ ├── post.c │ │ ├── project.c │ │ ├── pub.c │ │ ├── quest_room.c │ │ ├── rain_forest.c │ │ ├── realty.c │ │ ├── restaurant.c │ │ ├── rogue_hall.c │ │ ├── rogue_join.c │ │ ├── rogue_vote.c │ │ ├── room_maker.c │ │ ├── s_centre1.c │ │ ├── s_centre2.c │ │ ├── s_centre3.c │ │ ├── s_centre4.c │ │ ├── sage_room.c │ │ ├── setter.c │ │ ├── sewer.c │ │ ├── sewer_ent.c │ │ ├── square.c │ │ ├── stairs.c │ │ ├── stat.c │ │ ├── storage.c │ │ ├── sun1.c │ │ ├── sun2.c │ │ ├── supply.c │ │ ├── unnamed1.c │ │ ├── w_boc_la1.c │ │ ├── w_boc_la2.c │ │ ├── w_boc_la3.c │ │ ├── wall.c │ │ ├── west_road1.c │ │ ├── west_road2.c │ │ ├── west_road3.c │ │ ├── wild1.c │ │ ├── wild2.c │ │ └── yard.c │ ├── orc_valley │ │ ├── chamber1.c │ │ ├── chamber2.c │ │ ├── guard.c │ │ ├── open.c │ │ ├── passage1.c │ │ ├── passage2.c │ │ ├── shaman.c │ │ └── treasure.c │ ├── outlands │ │ ├── brig_pub.c │ │ ├── cover1.c │ │ ├── cover2.c │ │ ├── cover3.c │ │ ├── cover4.c │ │ ├── cover5.c │ │ ├── dust1.c │ │ ├── dust2.c │ │ ├── dust3.c │ │ ├── fork.c │ │ ├── hideout.c │ │ ├── jungle1.c │ │ ├── jungle2.c │ │ ├── post.c │ │ ├── shop.c │ │ ├── storage.c │ │ └── t_path.c │ └── quests │ │ ├── chaucer.c │ │ ├── dragon.c │ │ ├── evil.c │ │ ├── hellfire.c │ │ ├── honor.c │ │ ├── imp_crown.c │ │ ├── orcslayer.c │ │ ├── the_blight_of_the_bog.c │ │ └── zemoch.c ├── stella │ ├── maze │ │ ├── boo1.c │ │ ├── boo10.c │ │ ├── boo2.c │ │ ├── boo3.c │ │ ├── boo4.c │ │ ├── boo5.c │ │ ├── boo6.c │ │ ├── boo7.c │ │ ├── boo8.c │ │ ├── boo9.c │ │ ├── cass1.c │ │ ├── cass2.c │ │ ├── cass3.c │ │ ├── cass4.c │ │ ├── cass5.c │ │ ├── cass6.c │ │ ├── cyg1.c │ │ ├── cyg10.c │ │ ├── cyg11.c │ │ ├── cyg2.c │ │ ├── cyg3.c │ │ ├── cyg4.c │ │ ├── cyg5.c │ │ ├── cyg6.c │ │ ├── cyg7.c │ │ ├── cyg8.c │ │ ├── cyg9.c │ │ ├── drac1.c │ │ ├── drac10.c │ │ ├── drac11.c │ │ ├── drac12.c │ │ ├── drac13.c │ │ ├── drac14.c │ │ ├── drac15.c │ │ ├── drac2.c │ │ ├── drac3.c │ │ ├── drac4.c │ │ ├── drac5.c │ │ ├── drac6.c │ │ ├── drac7.c │ │ ├── drac8.c │ │ ├── drac9.c │ │ ├── leo1.c │ │ ├── leo10.c │ │ ├── leo2.c │ │ ├── leo3.c │ │ ├── leo4.c │ │ ├── leo5.c │ │ ├── leo6.c │ │ ├── leo7.c │ │ ├── leo8.c │ │ ├── leo9.c │ │ ├── peg1.c │ │ ├── peg10.c │ │ ├── peg11.c │ │ ├── peg2.c │ │ ├── peg3.c │ │ ├── peg4.c │ │ ├── peg5.c │ │ ├── peg6.c │ │ ├── peg7.c │ │ ├── peg8.c │ │ ├── peg9.c │ │ ├── sco1.c │ │ ├── sco2.c │ │ ├── sco3.c │ │ ├── sco4.c │ │ ├── sco5.c │ │ ├── sco6.c │ │ ├── sco7.c │ │ ├── sco8.c │ │ ├── sco9.c │ │ ├── short.h │ │ ├── ursa1.c │ │ ├── ursa10.c │ │ ├── ursa2.c │ │ ├── ursa3.c │ │ ├── ursa4.c │ │ ├── ursa5.c │ │ ├── ursa6.c │ │ ├── ursa7.c │ │ ├── ursa8.c │ │ └── ursa9.c │ ├── mon │ │ ├── mund.c │ │ ├── mund_nw.c │ │ ├── mund_old_nw.c │ │ ├── oldman.c │ │ ├── shad.c │ │ ├── temp.c │ │ └── wander.c │ ├── obj │ │ ├── bootes.c │ │ ├── bootoken.c │ │ ├── castoken.c │ │ ├── cougar.c │ │ ├── cyg.c │ │ ├── cygtoken.c │ │ ├── dractoken.c │ │ ├── gem.c │ │ ├── leo.c │ │ ├── leotoken.c │ │ ├── note.c │ │ ├── nova.c │ │ ├── opal.c │ │ ├── pegasus.c │ │ ├── pegtoken.c │ │ ├── remnant.c │ │ ├── scotoken.c │ │ ├── shadarm.c │ │ ├── shadsw.c │ │ ├── sign.c │ │ ├── stellar_quest.c │ │ ├── unicorn.c │ │ ├── ursatoken.c │ │ └── warrior.c │ ├── rooms │ │ ├── court1.c │ │ ├── court2.c │ │ ├── court3.c │ │ ├── court4.c │ │ ├── garden1.c │ │ ├── garden2.c │ │ ├── garden3.c │ │ ├── garden4.c │ │ ├── garden5.c │ │ ├── garden6.c │ │ ├── garden7.c │ │ ├── garden8.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── path4.c │ │ ├── path5.c │ │ ├── path6.c │ │ ├── planet.c │ │ ├── roof.c │ │ ├── roof1.c │ │ ├── roof2.c │ │ ├── roof3.c │ │ ├── roof4.c │ │ ├── tower1.c │ │ ├── tower2.c │ │ ├── tower3.c │ │ ├── tower4.c │ │ ├── towerup1.c │ │ ├── towerup2.c │ │ ├── towerup3.c │ │ ├── towerup4.c │ │ ├── wall1.c │ │ ├── wall2.c │ │ ├── wall3.c │ │ └── wall4.c │ └── short.h ├── test │ └── garrett.txt ├── tharis │ ├── Tharis │ │ ├── a1.c │ │ ├── a10.c │ │ ├── a11.c │ │ ├── a12.c │ │ ├── a13.c │ │ ├── a14.c │ │ ├── a15.c │ │ ├── a16.c │ │ ├── a17.c │ │ ├── a18.c │ │ ├── a19.c │ │ ├── a2.c │ │ ├── a20.c │ │ ├── a21.c │ │ ├── a22.c │ │ ├── a23.c │ │ ├── a24.c │ │ ├── a25.c │ │ ├── a26.c │ │ ├── a3.c │ │ ├── a4.c │ │ ├── a5.c │ │ ├── a6.c │ │ ├── a7.c │ │ ├── a8.c │ │ ├── a9.c │ │ ├── alley1.c │ │ ├── alley2.c │ │ ├── armorer.c │ │ ├── bank.c │ │ ├── carts │ │ │ ├── cl_storage.c │ │ │ ├── jeweler_storage.c │ │ │ ├── perfume_storage.c │ │ │ ├── ring_storage.c │ │ │ └── tb_storage.c │ │ ├── cavern.c │ │ ├── cguilds │ │ │ ├── fighter │ │ │ │ ├── entrance.c │ │ │ │ ├── f_bar.c │ │ │ │ ├── f_storage.c │ │ │ │ ├── f_store.c │ │ │ │ ├── fhall.c │ │ │ │ └── mockspur.c │ │ │ └── thief │ │ │ │ ├── questroom.c │ │ │ │ ├── ring.c │ │ │ │ └── thief.c │ │ ├── church.c │ │ ├── clothier.c │ │ ├── cup.c │ │ ├── dwarfhealer.c │ │ ├── elveninn.c │ │ ├── elveninn2.c │ │ ├── en2side1.c │ │ ├── en2side2.c │ │ ├── en2side3.c │ │ ├── enside1.c │ │ ├── enside2.c │ │ ├── enside3.c │ │ ├── enside4.c │ │ ├── es2side1.c │ │ ├── es2side2.c │ │ ├── es2side3.c │ │ ├── esside1.c │ │ ├── esside2.c │ │ ├── esside3.c │ │ ├── esside4.c │ │ ├── estreet1.c │ │ ├── estreet10.c │ │ ├── estreet2.c │ │ ├── estreet3.c │ │ ├── estreet4.c │ │ ├── estreet5.c │ │ ├── estreet6.c │ │ ├── estreet7.c │ │ ├── estreet8.c │ │ ├── estreet9.c │ │ ├── exchange.c │ │ ├── fall1.c │ │ ├── general.c │ │ ├── guild1.c │ │ ├── guild2.c │ │ ├── healer.c │ │ ├── hotel.c │ │ ├── jewelry.c │ │ ├── magic.c │ │ ├── main1.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── main4.c │ │ ├── main5.c │ │ ├── main6.c │ │ ├── main7.c │ │ ├── main8.c │ │ ├── market.c │ │ ├── market1.c │ │ ├── market2.c │ │ ├── market3.c │ │ ├── market4.c │ │ ├── market5.c │ │ ├── market6.c │ │ ├── market7.c │ │ ├── market8.c │ │ ├── market9.c │ │ ├── mbar.c │ │ ├── merchant.c │ │ ├── mercs.c │ │ ├── msecret.c │ │ ├── mstreet1.c │ │ ├── mstreet2.c │ │ ├── mstreet3.c │ │ ├── mstreet4.c │ │ ├── mstreet5.c │ │ ├── mstreet6.c │ │ ├── mstreet7.c │ │ ├── mud.c │ │ ├── office1.c │ │ ├── office2.c │ │ ├── office_storage.c │ │ ├── over_gate.c │ │ ├── over_gate2.c │ │ ├── patrolh.c │ │ ├── portal.c │ │ ├── recruiter.c │ │ ├── recruiter2.c │ │ ├── reg.c │ │ ├── reg2.c │ │ ├── rstreet1.c │ │ ├── rstreet2.c │ │ ├── rstreet3.c │ │ ├── rstreet4.c │ │ ├── rstreet5.c │ │ ├── rstreet6.c │ │ ├── rstreet7.c │ │ ├── s1.c │ │ ├── s10.c │ │ ├── s11.c │ │ ├── s2.c │ │ ├── s3.c │ │ ├── s4.c │ │ ├── s5.c │ │ ├── s6.c │ │ ├── s7.c │ │ ├── s8.c │ │ ├── s9.c │ │ ├── safe.c │ │ ├── sbar.c │ │ ├── sewer1.c │ │ ├── sewer10.c │ │ ├── sewer11.c │ │ ├── sewer12.c │ │ ├── sewer13.c │ │ ├── sewer14.c │ │ ├── sewer15.c │ │ ├── sewer16.c │ │ ├── sewer17.c │ │ ├── sewer18.c │ │ ├── sewer19.c │ │ ├── sewer2.c │ │ ├── sewer20.c │ │ ├── sewer21.c │ │ ├── sewer22.c │ │ ├── sewer23.c │ │ ├── sewer24.c │ │ ├── sewer25.c │ │ ├── sewer26.c │ │ ├── sewer27.c │ │ ├── sewer28.c │ │ ├── sewer3.c │ │ ├── sewer4.c │ │ ├── sewer5.c │ │ ├── sewer6.c │ │ ├── sewer7.c │ │ ├── sewer8.c │ │ ├── sewer9.c │ │ ├── side1.c │ │ ├── side2.c │ │ ├── slavepit.c │ │ ├── slide1.c │ │ ├── slide2.c │ │ ├── stand.c │ │ ├── storage │ │ │ ├── armor_storage.c │ │ │ ├── cloth_storage.c │ │ │ ├── gs_storage.c │ │ │ ├── tailor_storage.c │ │ │ ├── tstorage.c │ │ │ └── weapon_storage.c │ │ ├── street7.c │ │ ├── tavern.c │ │ ├── teashop.c │ │ ├── temple1.c │ │ ├── tguild1.c │ │ ├── tharis_mage_comps.c │ │ ├── tharis_mage_entrance.c │ │ ├── tharis_mage_outside.c │ │ ├── tharis_mage_spells.c │ │ ├── thief_tailor.c │ │ ├── tower1.c │ │ ├── tower1t.c │ │ ├── tower2.c │ │ ├── tower2t.c │ │ ├── tower3.c │ │ ├── tower3t.c │ │ ├── tower4.c │ │ ├── tower4t.c │ │ ├── tower6.c │ │ ├── tower6t.c │ │ ├── tower7.c │ │ ├── tower7t.c │ │ ├── tower8.c │ │ ├── tower8t.c │ │ ├── tower9.c │ │ ├── tower9t.c │ │ ├── tstore.c │ │ ├── wall1.c │ │ ├── wall10.c │ │ ├── wall11.c │ │ ├── wall12.c │ │ ├── wall13.c │ │ ├── wall14.c │ │ ├── wall15.c │ │ ├── wall16.c │ │ ├── wall17.c │ │ ├── wall18.c │ │ ├── wall19.c │ │ ├── wall2.c │ │ ├── wall20.c │ │ ├── wall21.c │ │ ├── wall3.c │ │ ├── wall4.c │ │ ├── wall5.c │ │ ├── wall6.c │ │ ├── wall7.c │ │ ├── wall8.c │ │ ├── wall9.c │ │ ├── warehouse1.c │ │ ├── warestreet1.c │ │ ├── warestreet2.c │ │ ├── warestreet3.c │ │ ├── warestreet4.c │ │ ├── warestreet5.c │ │ ├── warestreet6.c │ │ ├── warestreet7.c │ │ ├── weapon.c │ │ ├── wstreet1.c │ │ ├── wstreet10.c │ │ ├── wstreet2.c │ │ ├── wstreet3.c │ │ ├── wstreet4.c │ │ ├── wstreet5.c │ │ ├── wstreet6.c │ │ ├── wstreet7.c │ │ ├── wstreet8.c │ │ └── wstreet9.c │ ├── ainvar │ │ ├── ainvar.map │ │ ├── bear.c │ │ ├── boar.c │ │ ├── brigond.c │ │ ├── forest1.c │ │ ├── forest10.c │ │ ├── forest11.c │ │ ├── forest12.c │ │ ├── forest13.c │ │ ├── forest14.c │ │ ├── forest15.c │ │ ├── forest16.c │ │ ├── forest17.c │ │ ├── forest18.c │ │ ├── forest19.c │ │ ├── forest2.c │ │ ├── forest20.c │ │ ├── forest21.c │ │ ├── forest22.c │ │ ├── forest23.c │ │ ├── forest24.c │ │ ├── forest25.c │ │ ├── forest26.c │ │ ├── forest3.c │ │ ├── forest33.c │ │ ├── forest34.c │ │ ├── forest35.c │ │ ├── forest36.c │ │ ├── forest37.c │ │ ├── forest38.c │ │ ├── forest39.c │ │ ├── forest4.c │ │ ├── forest40.c │ │ ├── forest5.c │ │ ├── forest6.c │ │ ├── forest7.c │ │ ├── forest8.c │ │ ├── forest9.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── path4.c │ │ ├── path5.c │ │ ├── squir.c │ │ └── wolf.c │ ├── alley.c │ ├── barrow │ │ ├── mon │ │ │ ├── guardian.c │ │ │ ├── knight.c │ │ │ ├── krykoth.c │ │ │ ├── lemure.c │ │ │ ├── priest.c │ │ │ ├── priest1.c │ │ │ └── tester.c │ │ ├── mound_inherit.c │ │ ├── obj │ │ │ ├── note.c │ │ │ ├── possess.c │ │ │ ├── slayer.c │ │ │ ├── sphere.c │ │ │ ├── staff.c │ │ │ └── tyrelk.c │ │ ├── rooms │ │ │ ├── bd1.c │ │ │ ├── bd10.c │ │ │ ├── bd2.c │ │ │ ├── bd3.c │ │ │ ├── bd4.c │ │ │ ├── bd5.c │ │ │ ├── bd6.c │ │ │ ├── bd7.c │ │ │ ├── bd8.c │ │ │ ├── bd9.c │ │ │ ├── bpath1.c │ │ │ ├── bpath2.c │ │ │ ├── bpath3.c │ │ │ ├── chamber1.c │ │ │ ├── fog.c │ │ │ ├── inner1.c │ │ │ ├── inner2.c │ │ │ ├── inner3.c │ │ │ ├── inner4.c │ │ │ ├── inner5.c │ │ │ ├── inner6.c │ │ │ ├── inner7.c │ │ │ ├── mound1.c │ │ │ ├── mound2.c │ │ │ ├── mound3.c │ │ │ ├── mound4.c │ │ │ ├── mound5.c │ │ │ ├── mound6.c │ │ │ ├── pit.c │ │ │ └── trap.c │ │ ├── short1.h │ │ └── virtual │ │ │ ├── level1 │ │ │ ├── 1,1.level1.c │ │ │ ├── 2,0.level1.c │ │ │ ├── 2,1.level1.c │ │ │ ├── level1.desc │ │ │ ├── level1.exits │ │ │ └── level1.terrain │ │ │ ├── level1_daemon.c │ │ │ └── level1_server.c │ ├── caverns │ │ ├── basic.c │ │ ├── cavern1.c │ │ ├── cavern10.c │ │ ├── cavern11.c │ │ ├── cavern12.c │ │ ├── cavern13.c │ │ ├── cavern14.c │ │ ├── cavern15.c │ │ ├── cavern16.c │ │ ├── cavern17.c │ │ ├── cavern19.c │ │ ├── cavern2.c │ │ ├── cavern20.c │ │ ├── cavern21.c │ │ ├── cavern22.c │ │ ├── cavern23.c │ │ ├── cavern24.c │ │ ├── cavern25.c │ │ ├── cavern26.c │ │ ├── cavern27.c │ │ ├── cavern28.c │ │ ├── cavern29.c │ │ ├── cavern3.c │ │ ├── cavern30.c │ │ ├── cavern4.c │ │ ├── cavern5.c │ │ ├── cavern6.c │ │ ├── cavern7.c │ │ └── mon │ │ │ ├── basilisk.c │ │ │ ├── bulette.c │ │ │ ├── dragonnel.c │ │ │ ├── dragturtle.c │ │ │ ├── flsnail.c │ │ │ ├── frminion.c │ │ │ ├── fungus.c │ │ │ ├── gargoyle.c │ │ │ ├── gscorpion.c │ │ │ ├── gtroll.c │ │ │ ├── gworm.c │ │ │ ├── hook_horror.c │ │ │ ├── umber_hulk.c │ │ │ └── vrock.c │ ├── cemetery.c │ ├── cemetery │ │ ├── cemetery1.c │ │ ├── cemetery2.c │ │ ├── cemetery3.c │ │ ├── cemetery4.c │ │ ├── cemetery5.c │ │ ├── cemetery6.c │ │ ├── cemetery7.c │ │ ├── cemetery8.c │ │ ├── cemetery9.c │ │ └── kpath.c │ ├── conforest │ │ ├── defs.h │ │ ├── includes │ │ │ ├── flowers.c │ │ │ ├── forest.c │ │ │ ├── pathdesert.c │ │ │ ├── pathsenw.c │ │ │ ├── pathsn.c │ │ │ ├── pathswne.c │ │ │ ├── pathwe.c │ │ │ ├── shop.c │ │ │ └── tharisedge.c │ │ ├── map │ │ ├── mons │ │ │ ├── bear.c │ │ │ ├── buck.c │ │ │ ├── deladrenia.c │ │ │ ├── ettercap.c │ │ │ ├── ogre.c │ │ │ ├── orcbandit.c │ │ │ ├── orcchief.c │ │ │ ├── orcmarauder.c │ │ │ ├── threndil.c │ │ │ ├── vhunter.c │ │ │ ├── vscout.c │ │ │ └── wolf.c │ │ ├── obj │ │ │ ├── daffodil.c │ │ │ ├── daisy.c │ │ │ ├── dstudded.c │ │ │ ├── finestudded.c │ │ │ ├── gland.c │ │ │ ├── lclub.c │ │ │ ├── lleather.c │ │ │ ├── lstudded.c │ │ │ ├── rose.c │ │ │ ├── thistle.c │ │ │ ├── tulip.c │ │ │ └── two_battle_axe.c │ │ └── rooms │ │ │ ├── c1.c │ │ │ ├── c2.c │ │ │ ├── c3.c │ │ │ ├── c4.c │ │ │ ├── c5.c │ │ │ ├── c6.c │ │ │ ├── c7.c │ │ │ ├── f1.c │ │ │ ├── f10.c │ │ │ ├── f11.c │ │ │ ├── f12.c │ │ │ ├── f13.c │ │ │ ├── f14.c │ │ │ ├── f15.c │ │ │ ├── f16.c │ │ │ ├── f17.c │ │ │ ├── f18.c │ │ │ ├── f2.c │ │ │ ├── f20.c │ │ │ ├── f21.c │ │ │ ├── f22.c │ │ │ ├── f23.c │ │ │ ├── f24.c │ │ │ ├── f25.c │ │ │ ├── f26.c │ │ │ ├── f27.c │ │ │ ├── f28.c │ │ │ ├── f29.c │ │ │ ├── f3.c │ │ │ ├── f30.c │ │ │ ├── f31.c │ │ │ ├── f32.c │ │ │ ├── f33.c │ │ │ ├── f34.c │ │ │ ├── f35.c │ │ │ ├── f36.c │ │ │ ├── f37.c │ │ │ ├── f38.c │ │ │ ├── f39.c │ │ │ ├── f4.c │ │ │ ├── f40.c │ │ │ ├── f41.c │ │ │ ├── f42.c │ │ │ ├── f43.c │ │ │ ├── f44.c │ │ │ ├── f45.c │ │ │ ├── f46.c │ │ │ ├── f47.c │ │ │ ├── f48.c │ │ │ ├── f49.c │ │ │ ├── f5.c │ │ │ ├── f50.c │ │ │ ├── f51.c │ │ │ ├── f52.c │ │ │ ├── f53.c │ │ │ ├── f54.c │ │ │ ├── f55.c │ │ │ ├── f56.c │ │ │ ├── f57.c │ │ │ ├── f58.c │ │ │ ├── f59.c │ │ │ ├── f6.c │ │ │ ├── f60.c │ │ │ ├── f61.c │ │ │ ├── f62.c │ │ │ ├── f63.c │ │ │ ├── f64.c │ │ │ ├── f65.c │ │ │ ├── f66.c │ │ │ ├── f67.c │ │ │ ├── f68.c │ │ │ ├── f69.c │ │ │ ├── f7.c │ │ │ ├── f70.c │ │ │ ├── f71.c │ │ │ ├── f72.c │ │ │ ├── f73.c │ │ │ ├── f74.c │ │ │ ├── f75.c │ │ │ ├── f76.c │ │ │ ├── f77.c │ │ │ ├── f78.c │ │ │ ├── f8.c │ │ │ ├── f9.c │ │ │ ├── path1.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path17.c │ │ │ ├── path18.c │ │ │ ├── path19.c │ │ │ ├── path2.c │ │ │ ├── path20.c │ │ │ ├── path21.c │ │ │ ├── path22.c │ │ │ ├── path23.c │ │ │ ├── path24.c │ │ │ ├── path25.c │ │ │ ├── path26.c │ │ │ ├── path27.c │ │ │ ├── path28.c │ │ │ ├── path29.c │ │ │ ├── path3.c │ │ │ ├── path30.c │ │ │ ├── path31.c │ │ │ ├── path32.c │ │ │ ├── path33.c │ │ │ ├── path34.c │ │ │ ├── path35.c │ │ │ ├── path36.c │ │ │ ├── path37.c │ │ │ ├── path38.c │ │ │ ├── path39.c │ │ │ ├── path4.c │ │ │ ├── path40.c │ │ │ ├── path41.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ └── path9.c │ ├── elftrail │ │ ├── defs.h │ │ ├── obj │ │ │ ├── nuts.c │ │ │ └── spring.c │ │ └── rooms │ │ │ ├── elfpath001.c │ │ │ ├── elfpath002.c │ │ │ ├── elfpath003.c │ │ │ ├── elfpath004.c │ │ │ ├── elfpath005.c │ │ │ ├── elfpath006.c │ │ │ └── hidden1.c │ ├── eroad.c │ ├── eroad.h │ ├── forest │ │ ├── cave1.c │ │ ├── evil1.c │ │ ├── evil10.c │ │ ├── evil11.c │ │ ├── evil12.c │ │ ├── evil13.c │ │ ├── evil14.c │ │ ├── evil2.c │ │ ├── evil3.c │ │ ├── evil4.c │ │ ├── evil5.c │ │ ├── evil6.c │ │ ├── evil7.c │ │ ├── evil8.c │ │ ├── evil9.c │ │ ├── forest.h │ │ ├── forest1.c │ │ ├── forest10.c │ │ ├── forest100.c │ │ ├── forest101.c │ │ ├── forest102.c │ │ ├── forest102a.c │ │ ├── forest103.c │ │ ├── forest104.c │ │ ├── forest105.c │ │ ├── forest106.c │ │ ├── forest107.c │ │ ├── forest108.c │ │ ├── forest109.c │ │ ├── forest11.c │ │ ├── forest110.c │ │ ├── forest111.c │ │ ├── forest112.c │ │ ├── forest113.c │ │ ├── forest114.c │ │ ├── forest115.c │ │ ├── forest116.c │ │ ├── forest117.c │ │ ├── forest118.c │ │ ├── forest119.c │ │ ├── forest12.c │ │ ├── forest120.c │ │ ├── forest121.c │ │ ├── forest122.c │ │ ├── forest124.c │ │ ├── forest125.c │ │ ├── forest126.c │ │ ├── forest127.c │ │ ├── forest128.c │ │ ├── forest129.c │ │ ├── forest13.c │ │ ├── forest130.c │ │ ├── forest131.c │ │ ├── forest132.c │ │ ├── forest133.c │ │ ├── forest134.c │ │ ├── forest135.c │ │ ├── forest136.c │ │ ├── forest137.c │ │ ├── forest138.c │ │ ├── forest139.c │ │ ├── forest14.c │ │ ├── forest140.c │ │ ├── forest141.c │ │ ├── forest142.c │ │ ├── forest143.c │ │ ├── forest144.c │ │ ├── forest145.c │ │ ├── forest146.c │ │ ├── forest147.c │ │ ├── forest148.c │ │ ├── forest149.c │ │ ├── forest15.c │ │ ├── forest150.c │ │ ├── forest151.c │ │ ├── forest152.c │ │ ├── forest153.c │ │ ├── forest154.c │ │ ├── forest155.c │ │ ├── forest156.c │ │ ├── forest157.c │ │ ├── forest158.c │ │ ├── forest159.c │ │ ├── forest16.c │ │ ├── forest160.c │ │ ├── forest161.c │ │ ├── forest162.c │ │ ├── forest163.c │ │ ├── forest164.c │ │ ├── forest165.c │ │ ├── forest166.c │ │ ├── forest167.c │ │ ├── forest168.c │ │ ├── forest169.c │ │ ├── forest17.c │ │ ├── forest170.c │ │ ├── forest171.c │ │ ├── forest172.c │ │ ├── forest173.c │ │ ├── forest174.c │ │ ├── forest175.c │ │ ├── forest176.c │ │ ├── forest177.c │ │ ├── forest178.c │ │ ├── forest179.c │ │ ├── forest18.c │ │ ├── forest180.c │ │ ├── forest181.c │ │ ├── forest182.c │ │ ├── forest183.c │ │ ├── forest184.c │ │ ├── forest19.c │ │ ├── forest2.c │ │ ├── forest20.c │ │ ├── forest21.c │ │ ├── forest22.c │ │ ├── forest23.c │ │ ├── forest24.c │ │ ├── forest25.c │ │ ├── forest26.c │ │ ├── forest27.c │ │ ├── forest28.c │ │ ├── forest29.c │ │ ├── forest2a.c │ │ ├── forest2b.c │ │ ├── forest2c.c │ │ ├── forest2d.c │ │ ├── forest3.c │ │ ├── forest30.c │ │ ├── forest31.c │ │ ├── forest32.c │ │ ├── forest33.c │ │ ├── forest34.c │ │ ├── forest35.c │ │ ├── forest36.c │ │ ├── forest37.c │ │ ├── forest38.c │ │ ├── forest39.c │ │ ├── forest4.c │ │ ├── forest40.c │ │ ├── forest41.c │ │ ├── forest42.c │ │ ├── forest43.c │ │ ├── forest44.c │ │ ├── forest45.c │ │ ├── forest46.c │ │ ├── forest47.c │ │ ├── forest48.c │ │ ├── forest49.c │ │ ├── forest5.c │ │ ├── forest50.c │ │ ├── forest51.c │ │ ├── forest52.c │ │ ├── forest53.c │ │ ├── forest54.c │ │ ├── forest55.c │ │ ├── forest56.c │ │ ├── forest57.c │ │ ├── forest58.c │ │ ├── forest59.c │ │ ├── forest6.c │ │ ├── forest60.c │ │ ├── forest61.c │ │ ├── forest62.c │ │ ├── forest63.c │ │ ├── forest64.c │ │ ├── forest64a.c │ │ ├── forest65.c │ │ ├── forest65a.c │ │ ├── forest66.c │ │ ├── forest66a.c │ │ ├── forest67.c │ │ ├── forest67a.c │ │ ├── forest68.c │ │ ├── forest68a.c │ │ ├── forest69.c │ │ ├── forest69a.c │ │ ├── forest7.c │ │ ├── forest70.c │ │ ├── forest70a.c │ │ ├── forest71.c │ │ ├── forest72.c │ │ ├── forest73.c │ │ ├── forest74.c │ │ ├── forest75.c │ │ ├── forest76.c │ │ ├── forest77.c │ │ ├── forest78.c │ │ ├── forest79.c │ │ ├── forest8.c │ │ ├── forest80.c │ │ ├── forest81.c │ │ ├── forest82.c │ │ ├── forest83.c │ │ ├── forest84.c │ │ ├── forest85.c │ │ ├── forest86.c │ │ ├── forest87.c │ │ ├── forest88.c │ │ ├── forest89.c │ │ ├── forest9.c │ │ ├── forest90.c │ │ ├── forest91.c │ │ ├── forest92.c │ │ ├── forest93.c │ │ ├── forest94.c │ │ ├── forest95.c │ │ ├── forest96.c │ │ ├── forest97.c │ │ ├── forest98.c │ │ ├── forest99.c │ │ ├── forest_base.c │ │ ├── forest_evil.c │ │ ├── forest_good.c │ │ ├── forest_neutral.c │ │ ├── forest_up.c │ │ ├── good1.c │ │ ├── good10.c │ │ ├── good11.c │ │ ├── good12.c │ │ ├── good13.c │ │ ├── good2.c │ │ ├── good3.c │ │ ├── good4.c │ │ ├── good5.c │ │ ├── good6.c │ │ ├── good7.c │ │ ├── good8.c │ │ ├── good9.c │ │ ├── hole1.c │ │ ├── hole10.c │ │ ├── hole11.c │ │ ├── hole12.c │ │ ├── hole13.c │ │ ├── hole14.c │ │ ├── hole15.c │ │ ├── hole16.c │ │ ├── hole17.c │ │ ├── hole18.c │ │ ├── hole19.c │ │ ├── hole2.c │ │ ├── hole20.c │ │ ├── hole3.c │ │ ├── hole4.c │ │ ├── hole5.c │ │ ├── hole6.c │ │ ├── hole7.c │ │ ├── hole8.c │ │ ├── hole9.c │ │ ├── neutral1.c │ │ ├── neutral2.c │ │ ├── neutral3.c │ │ ├── neutral4.c │ │ ├── tent1.c │ │ ├── up1.c │ │ ├── up10.c │ │ ├── up11.c │ │ ├── up12.c │ │ ├── up13.c │ │ ├── up14.c │ │ ├── up15.c │ │ ├── up17.c │ │ ├── up18.c │ │ ├── up19.c │ │ ├── up2.c │ │ ├── up20.c │ │ ├── up21.c │ │ ├── up22.c │ │ ├── up23.c │ │ ├── up24.c │ │ ├── up25.c │ │ ├── up26.c │ │ ├── up27.c │ │ ├── up28.c │ │ ├── up29.c │ │ ├── up3.c │ │ ├── up30.c │ │ ├── up31.c │ │ ├── up4.c │ │ ├── up5.c │ │ ├── up6.c │ │ ├── up7.c │ │ ├── up8.c │ │ └── up9.c │ ├── kelemvor.h │ ├── monsters │ │ ├── Cath.c │ │ ├── Halaquin.c │ │ ├── I-chou.c │ │ ├── Mystic.c │ │ ├── Rakth.c │ │ ├── adilah.c │ │ ├── aelemental.c │ │ ├── alder.c │ │ ├── alignment_d.c │ │ ├── anti2.c │ │ ├── archer2.c │ │ ├── bbear.c │ │ ├── behir.c │ │ ├── beholder.c │ │ ├── black_mage.c │ │ ├── brunhilda.c │ │ ├── bubba.c │ │ ├── cdriver.c │ │ ├── cguard.c │ │ ├── citizen.c │ │ ├── cl_vendor.c │ │ ├── crazed.c │ │ ├── cuberoom.c │ │ ├── deputy.c │ │ ├── drunk.c │ │ ├── e_archer.c │ │ ├── earcher.c │ │ ├── eelemental.c │ │ ├── egguard.c.txt │ │ ├── egguards.c │ │ ├── eguard.c │ │ ├── ehater.c │ │ ├── elfsave.c │ │ ├── ettercap.c │ │ ├── exp │ │ │ ├── follow.c │ │ │ ├── follow2.c │ │ │ └── follow3.c │ │ ├── f_vendor.c │ │ ├── felemental.c │ │ ├── forestd.c │ │ ├── fwander.c │ │ ├── gcube.c │ │ ├── gemCaravan.c │ │ ├── gguard.c │ │ ├── glory │ │ │ ├── Gantipaladin.c │ │ │ ├── Gbard.c │ │ │ ├── Gcleric.c │ │ │ ├── Gfighter.c │ │ │ ├── Gmage.c │ │ │ ├── Gpaladin.c │ │ │ ├── Granger.c │ │ │ ├── Gthief.c │ │ │ └── mparty_d.c │ │ ├── gralesh.c │ │ ├── grat.c │ │ ├── gspider.c │ │ ├── hangman_tree.c │ │ ├── harpy.c │ │ ├── heldien.c │ │ ├── hermit.c │ │ ├── hersh.c │ │ ├── horse.c │ │ ├── iehater.c │ │ ├── iladeth.c │ │ ├── janice.c │ │ ├── jeweler.c │ │ ├── korred.c │ │ ├── lathis.c │ │ ├── linny.c │ │ ├── manuel.c │ │ ├── merve.c │ │ ├── moose.c │ │ ├── mugger.c │ │ ├── nixie.c │ │ ├── ogre_mage.c │ │ ├── old_leader.c │ │ ├── opatrol.c │ │ ├── os_beggar.c │ │ ├── paladin2.c │ │ ├── patrol.c │ │ ├── patron.c │ │ ├── peppy.c │ │ ├── perfume.c │ │ ├── psdragon.c │ │ ├── rakath.c │ │ ├── recruiter.c │ │ ├── ring.c │ │ ├── sacretel.c │ │ ├── satyr.c │ │ ├── scavenger.c │ │ ├── scavengers_d.c │ │ ├── scribe.c │ │ ├── security.c │ │ ├── shaman.c │ │ ├── sksteed.c │ │ ├── slump.c │ │ ├── slump_storage.c │ │ ├── snakes │ │ │ ├── amphisbaena.c │ │ │ ├── boa.c │ │ │ ├── boalisk.c │ │ │ ├── cobra.c │ │ │ ├── copperhead.c │ │ │ ├── cottonmouth.c │ │ │ ├── gboa.c │ │ │ ├── gen_snake.c │ │ │ ├── gpython.c │ │ │ ├── grattlesnake.c │ │ │ ├── kcobra.c │ │ │ ├── python.c │ │ │ ├── rattlesnake.c │ │ │ └── typan.c │ │ ├── spatrol.c │ │ ├── sprite.c │ │ ├── steeldragon.c │ │ ├── stomach.c │ │ ├── tb_vendor.c │ │ ├── teller.c │ │ ├── thalusis.c │ │ ├── thief.c │ │ ├── treant.c │ │ ├── tree.c │ │ ├── trunk.c │ │ ├── unicorn.c │ │ ├── vranger.c │ │ ├── wall_patrol.c │ │ ├── we_archer.Styx │ │ ├── we_archer.c │ │ ├── we_archer.was5-14-02 │ │ ├── welemental.c │ │ ├── wfwander.c │ │ ├── wharpy.c │ │ ├── white_mage.c │ │ ├── wimp.c │ │ ├── wogre_mage.Styx122301 │ │ ├── wogre_mage.c │ │ ├── wonder.c │ │ ├── wpsdragon.Styx122301 │ │ ├── wpsdragon.c │ │ ├── wsprite.c │ │ ├── wunicorn.c │ │ ├── wwhorse.c │ │ └── zeki.c │ ├── newtharis │ │ ├── cavern.c │ │ ├── mobs │ │ │ ├── adilah.c │ │ │ ├── bankgolem.c │ │ │ ├── behir.c │ │ │ ├── cath.c │ │ │ ├── cloth_vendor.c │ │ │ ├── f_vendor.c │ │ │ ├── gcube.c │ │ │ ├── gralesh.c │ │ │ ├── guard.c │ │ │ ├── hersh.c │ │ │ ├── manuel.c │ │ │ ├── met_vendor.c │ │ │ ├── nixie.c │ │ │ ├── os_beggar.c │ │ │ ├── peppy.c │ │ │ ├── ralsh.c │ │ │ ├── sacretel.c │ │ │ ├── slump.c │ │ │ ├── slump_storage.c │ │ │ ├── tb_vendor.c │ │ │ └── zeki.c │ │ ├── mountain │ │ │ ├── spath1.c │ │ │ ├── spath2.c │ │ │ ├── spath3.c │ │ │ └── spath4.c │ │ ├── obj │ │ │ ├── NOTE │ │ │ ├── ambiance.c │ │ │ └── bnote.c │ │ ├── rooms │ │ │ ├── bard.c │ │ │ ├── east1.c │ │ │ ├── east2.c │ │ │ ├── east3.c │ │ │ ├── egate1.c │ │ │ ├── egate2.c │ │ │ ├── elf1.c │ │ │ ├── elf2.c │ │ │ ├── elf3.c │ │ │ ├── elf4.c │ │ │ ├── fountain.c │ │ │ ├── jewelry.c │ │ │ ├── mbar.c │ │ │ ├── ngate1.c │ │ │ ├── ngate2.c │ │ │ ├── north1.c │ │ │ ├── north2.c │ │ │ ├── north3.c │ │ │ ├── north4.c │ │ │ ├── north5.c │ │ │ ├── north6.c │ │ │ ├── office.c │ │ │ ├── portal.c │ │ │ ├── reg2.c │ │ │ ├── square1.c │ │ │ ├── square2.c │ │ │ ├── square3.c │ │ │ ├── square4.c │ │ │ ├── square5.c │ │ │ ├── square6.c │ │ │ ├── square7.c │ │ │ ├── square8.c │ │ │ ├── tguild.c │ │ │ ├── tharis_bank1.c │ │ │ ├── tharis_church1.c │ │ │ ├── tharis_church2.c │ │ │ ├── tharis_clothing.c │ │ │ ├── tharis_crystals.c │ │ │ ├── tharis_dwarf.c │ │ │ ├── tharis_general.c │ │ │ ├── tharis_healer.c │ │ │ ├── tharis_hotel2.c │ │ │ ├── tharis_hotel3.c │ │ │ ├── tharis_hotel4.c │ │ │ ├── tharis_mage_comps.c │ │ │ ├── tharis_mage_entrance.c │ │ │ ├── tharis_mage_outside.c │ │ │ ├── tharis_mage_spells.c │ │ │ ├── thief_tailor.c │ │ │ ├── tstore.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel10.c │ │ │ ├── tunnel11.c │ │ │ ├── tunnel12.c │ │ │ ├── tunnel13.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ ├── tunnel4.c │ │ │ ├── tunnel5.c │ │ │ ├── tunnel6.c │ │ │ ├── tunnel7.c │ │ │ ├── tunnel8.c │ │ │ ├── tunnel9.c │ │ │ ├── wall1.c │ │ │ ├── wall10.c │ │ │ ├── wall17.c │ │ │ ├── wall18.c │ │ │ ├── wall19.c │ │ │ ├── wall2.c │ │ │ ├── wall20.c │ │ │ ├── wall21.c │ │ │ ├── wall22.c │ │ │ ├── wall23.c │ │ │ ├── wall24.c │ │ │ ├── wall25.c │ │ │ ├── wall26.c │ │ │ ├── wall27.c │ │ │ ├── wall28.c │ │ │ ├── wall29.c │ │ │ ├── wall3.c │ │ │ ├── wall30.c │ │ │ ├── wall31.c │ │ │ ├── wall32.c │ │ │ ├── wall33.c │ │ │ ├── wall34.c │ │ │ ├── wall35.c │ │ │ ├── wall36.c │ │ │ ├── wall4.c │ │ │ ├── wall5.c │ │ │ ├── wall6.c │ │ │ ├── wall7.c │ │ │ ├── wall8.c │ │ │ ├── wall9.c │ │ │ ├── west1.c │ │ │ ├── west2.c │ │ │ ├── west3.c │ │ │ ├── west4.c │ │ │ ├── west5.c │ │ │ ├── west_tower.c │ │ │ ├── wgate1.c │ │ │ └── wgate2.c │ │ ├── sewers │ │ │ ├── cavern.c │ │ │ ├── crush.c │ │ │ ├── fakesewer.c │ │ │ ├── fall1.c │ │ │ ├── sewer1.c │ │ │ ├── sewer10.c │ │ │ ├── sewer11.c │ │ │ ├── sewer12.c │ │ │ ├── sewer13.c │ │ │ ├── sewer14.c │ │ │ ├── sewer15.c │ │ │ ├── sewer16.c │ │ │ ├── sewer17.c │ │ │ ├── sewer18.c │ │ │ ├── sewer1b.c │ │ │ ├── sewer2.c │ │ │ ├── sewer3.c │ │ │ ├── sewer4.c │ │ │ ├── sewer5.c │ │ │ ├── sewer6.c │ │ │ ├── sewer7.c │ │ │ ├── sewer8.c │ │ │ ├── sewer9.c │ │ │ ├── slide1.c │ │ │ └── slide2.c │ │ ├── storage │ │ │ ├── bazaar.c │ │ │ ├── cloth_storage.c │ │ │ ├── cloth_vendor.c │ │ │ ├── elf.c │ │ │ ├── met_vendor.c │ │ │ ├── mud.c │ │ │ ├── rich.c │ │ │ ├── sewer.c │ │ │ ├── shar_path.c │ │ │ ├── slum.c │ │ │ ├── tailor_storage.c │ │ │ ├── trade.c │ │ │ ├── tunnel.c │ │ │ └── wall.c │ │ └── tharis.h │ ├── nolesti │ │ ├── IDEA │ │ ├── armor │ │ │ ├── amulet_light.c │ │ │ ├── chainmail.c │ │ │ ├── circlet.c │ │ │ ├── coif.c │ │ │ ├── dress.c │ │ │ ├── elven_crown.c │ │ │ ├── golden_diadem.c │ │ │ ├── golden_sandals.c │ │ │ ├── king_robe.c │ │ │ ├── robe.c │ │ │ ├── royal_cloak.c │ │ │ ├── royal_ring.c │ │ │ └── white_dress.c │ │ ├── mons │ │ │ ├── king.c │ │ │ └── scout.c │ │ └── weaps │ │ │ ├── elf_sword.c │ │ │ ├── elven_sword.c │ │ │ ├── fine_sword.c │ │ │ ├── rod.c │ │ │ └── sceptre.c │ ├── obj │ │ ├── BNOTE │ │ ├── NOTE │ │ ├── NOTICE │ │ ├── black_robes.c │ │ ├── blue_robes.c │ │ ├── bnote.c │ │ ├── bpowder.bane │ │ ├── bpowder.c │ │ ├── caltrops.c │ │ ├── charm.c │ │ ├── clothing │ │ │ ├── bodysuit.c │ │ │ ├── det_invis.c │ │ │ ├── erobe.c │ │ │ ├── fcloak.c │ │ │ ├── girdle.c │ │ │ ├── gloves.c │ │ │ ├── hose.c │ │ │ ├── invisible.c │ │ │ ├── leather_gloves.c │ │ │ ├── pants.c │ │ │ ├── plcloak.c │ │ │ ├── rboots.c │ │ │ ├── sandals.c │ │ │ ├── sboots.c │ │ │ ├── shirt.c │ │ │ ├── shoes.c │ │ │ ├── sjacket.c │ │ │ ├── tabi_boots.c │ │ │ └── tunic.c │ │ ├── cuberoom.c │ │ ├── cwagon.c │ │ ├── dbrobe.c │ │ ├── dryad_essence.c │ │ ├── esword.c │ │ ├── greenrobe.c │ │ ├── ishy_rains.c │ │ ├── jaws.c │ │ ├── katana.c │ │ ├── lathander_renewal.c │ │ ├── linny.c │ │ ├── moon_radiance.c │ │ ├── mrmedalion.c │ │ ├── notice.c │ │ ├── oghma_rhapsody.c │ │ ├── paper.c │ │ ├── parchment.c │ │ ├── pbwscroll.c │ │ ├── perfume.c │ │ ├── psword.c │ │ ├── randrobe.c │ │ ├── rings │ │ │ ├── bangle_bracelet.c │ │ │ ├── braided_bracelet.c │ │ │ ├── bronze_torque.c │ │ │ ├── claw_earrings.c │ │ │ ├── coiffe.c │ │ │ ├── de.c │ │ │ ├── fairy_story │ │ │ ├── fairy_tale.c │ │ │ ├── fibula.c │ │ │ ├── hj.c │ │ │ ├── kp.c │ │ │ ├── peacock_brooch.c │ │ │ ├── pendant_royal.c │ │ │ ├── pendant_three.c │ │ │ ├── ring_brooch.c │ │ │ ├── rose_anklet.c │ │ │ ├── sg.c │ │ │ └── so.c │ │ ├── satyr_charm.c │ │ ├── scroll_chest1.c │ │ ├── scroll_chest2.c │ │ ├── secret_shar.c │ │ ├── skincloak.c │ │ ├── smokebomb.c │ │ ├── stomach.c │ │ ├── street_light.c │ │ ├── thief_tools.c │ │ ├── treething.c │ │ ├── trunk.c │ │ ├── trunk2.c │ │ ├── vaxe.c │ │ ├── vchain.c │ │ ├── voucher.c │ │ ├── water_tide.c │ │ ├── white_robes.c │ │ ├── wrist_sheath.c │ │ └── wrist_sheath.c.bak.gar.upgrade │ ├── path.c │ ├── peasant.c │ ├── preview.map │ ├── road │ │ ├── cave1.c │ │ ├── cave2.c │ │ ├── cave3.c │ │ ├── eroad1.c │ │ ├── eroad10.c │ │ ├── eroad11.c │ │ ├── eroad12.c │ │ ├── eroad13.c │ │ ├── eroad14.c │ │ ├── eroad15.c │ │ ├── eroad16.c │ │ ├── eroad17.c │ │ ├── eroad18.c │ │ ├── eroad19.c │ │ ├── eroad2.c │ │ ├── eroad20.c │ │ ├── eroad21.c │ │ ├── eroad22.c │ │ ├── eroad23.c │ │ ├── eroad24.c │ │ ├── eroad25.c │ │ ├── eroad26.c │ │ ├── eroad27.c │ │ ├── eroad28.c │ │ ├── eroad29.c │ │ ├── eroad3.c │ │ ├── eroad30.c │ │ ├── eroad31.c │ │ ├── eroad32.c │ │ ├── eroad33.c │ │ ├── eroad34.c │ │ ├── eroad35.c │ │ ├── eroad36.c │ │ ├── eroad37.c │ │ ├── eroad4.c │ │ ├── eroad5.c │ │ ├── eroad6.c │ │ ├── eroad7.c │ │ ├── eroad8.c │ │ ├── eroad9.c │ │ ├── hlodge.c │ │ ├── mill.c │ │ ├── path1.c │ │ ├── path2.c │ │ ├── path3.c │ │ ├── path4.c │ │ ├── road.c │ │ ├── road1.c │ │ ├── road10.c │ │ ├── road11.c │ │ ├── road12.c │ │ ├── road13.c │ │ ├── road14.c │ │ ├── road15.c │ │ ├── road16.c │ │ ├── road17.c │ │ ├── road18.c │ │ ├── road19.c │ │ ├── road2.c │ │ ├── road20.c │ │ ├── road21.c │ │ ├── road22.c │ │ ├── road23.c │ │ ├── road24.c │ │ ├── road25.c │ │ ├── road26.c │ │ ├── road27.c │ │ ├── road28.c │ │ ├── road29.c │ │ ├── road3.c │ │ ├── road30.c │ │ ├── road4.c │ │ ├── road5.c │ │ ├── road6.c │ │ ├── road7.c │ │ ├── road8.c │ │ ├── road9.c │ │ ├── sroad1.c │ │ ├── sroad2.c │ │ ├── sroad3.c │ │ ├── sroad4.c │ │ ├── sroad5.c │ │ ├── sroad6.c │ │ ├── wroad1.c │ │ ├── wroad10.c │ │ ├── wroad11.c │ │ ├── wroad12.c │ │ ├── wroad13.c │ │ ├── wroad14.c │ │ ├── wroad15.c │ │ ├── wroad16.c │ │ ├── wroad17.c │ │ ├── wroad18.c │ │ ├── wroad19.c │ │ ├── wroad2.c │ │ ├── wroad20.c │ │ ├── wroad21.c │ │ ├── wroad22.c │ │ ├── wroad23.c │ │ ├── wroad24.c │ │ ├── wroad25.c │ │ ├── wroad26.c │ │ ├── wroad27.c │ │ ├── wroad28.c │ │ ├── wroad29.c │ │ ├── wroad3.c │ │ ├── wroad30.c │ │ ├── wroad4.c │ │ ├── wroad5.c │ │ ├── wroad6.c │ │ ├── wroad7.c │ │ ├── wroad8.c │ │ └── wroad9.c │ ├── tehir.c │ ├── tharis.h │ └── virtual │ │ ├── mount_daemon.c │ │ ├── mount_server.c │ │ └── mountains │ │ ├── 0,6.antiforest.c │ │ ├── 10,9.antiforest.c │ │ ├── 11,10.antiforest.c │ │ ├── 20,10.antiforest.c │ │ ├── 9,10.antiforest.c │ │ ├── mount.desc │ │ ├── mount.exits │ │ └── mount.terrain ├── token_hunt │ ├── henchmen │ │ ├── hench_boss.c │ │ ├── henchman.c │ │ ├── henchmen.h │ │ ├── names.h │ │ ├── waiting_room.c │ │ └── whistle.c │ ├── high_dino.c │ ├── high_vendor.c │ ├── low_dino.c │ ├── low_vendor.c │ ├── mid_dino.c │ ├── mid_vendor.c │ ├── obj │ │ ├── high │ │ │ ├── aarmor.c │ │ │ ├── ancientblade.c │ │ │ ├── arcaneflamecrown.c │ │ │ ├── asheath.c │ │ │ ├── burninghands.c │ │ │ ├── chillingtouch.c │ │ │ ├── csong.c │ │ │ ├── dragonrobe.c │ │ │ ├── driftwood_crown.c │ │ │ ├── drow_phial.c │ │ │ ├── drowchain.c │ │ │ ├── elfboots.c │ │ │ ├── eryinesleather.c │ │ │ ├── flamesilk.c │ │ │ ├── forgottensoul.c │ │ │ ├── freewind.c │ │ │ ├── gstar.c │ │ │ ├── longmileboots.c │ │ │ ├── maskdagger.c │ │ │ ├── medusabracer.c │ │ │ ├── na_compbag.c │ │ │ ├── na_satchel.c │ │ │ ├── nightydsp.c │ │ │ ├── redboots.c │ │ │ ├── refreshingpouch.c │ │ │ ├── sai.c │ │ │ ├── shadowrobes.c │ │ │ ├── shifterrobes.c │ │ │ ├── songblade.c │ │ │ ├── spidertights.c │ │ │ ├── stonebreaker.c │ │ │ ├── tasword.c │ │ │ ├── valkyrplate.c │ │ │ ├── wizard_oil.c │ │ │ ├── wolfg.c │ │ │ └── wood_crown.c │ │ ├── low │ │ │ ├── acursedwhip.c │ │ │ ├── akaboots.c │ │ │ ├── akadifan.c │ │ │ ├── ascloak.c │ │ │ ├── battlegloryplate.c │ │ │ ├── bleg.c │ │ │ ├── bluepants.c │ │ │ ├── blueshoes.c │ │ │ ├── boneclaw.c │ │ │ ├── bootsofwanderlust.c │ │ │ ├── cestus2.c │ │ │ ├── creepingmail.c │ │ │ ├── darkgem_boots.c │ │ │ ├── darkgem_shield.c │ │ │ ├── desertsanddag.c │ │ │ ├── dhorncloak.c │ │ │ ├── flanchards.c │ │ │ ├── goblintatters.c │ │ │ ├── longmileboots.c │ │ │ ├── maskdagger.c │ │ │ ├── mystrarobes.c │ │ │ ├── nightmare_robe.c │ │ │ ├── ogrestaff.c │ │ │ ├── phantomboots.c │ │ │ ├── phantomsilk.c │ │ │ ├── phantomsuit.c │ │ │ ├── platinumbreast.c │ │ │ ├── pocketdoublet.c │ │ │ ├── rainbowbangles.c │ │ │ ├── rapierdam.c │ │ │ ├── rboot.c │ │ │ ├── redboots.c │ │ │ ├── rhino_bow.c │ │ │ ├── rhino_damage.c │ │ │ ├── rosecrown.c │ │ │ ├── rubytalongaunt.c │ │ │ ├── sapphirelance.c │ │ │ ├── stormrapier.c │ │ │ ├── vocalamulet.c │ │ │ ├── wdress.c │ │ │ └── woodsmanshirt.c │ │ └── mid │ │ │ ├── akablazer.c │ │ │ ├── akaboots.c │ │ │ ├── akadibracers.c │ │ │ ├── bearclaw.c │ │ │ ├── belt1.c │ │ │ ├── belt2.c │ │ │ ├── bltrench.c │ │ │ ├── blueshoes.c │ │ │ ├── chainedovercoat.c │ │ │ ├── extradsash.c │ │ │ ├── flamearmor.c │ │ │ ├── forestarmor.c │ │ │ ├── forestsgleam.c │ │ │ ├── glitteringarmor.c │ │ │ ├── goblintatters.c │ │ │ ├── goldenstagarmor.c │ │ │ ├── goldenstagblade.c │ │ │ ├── goldenstagcloth.c │ │ │ ├── goldenstaghelm.c │ │ │ ├── goldenstagring.c │ │ │ ├── invisring.c │ │ │ ├── kittyears.c │ │ │ ├── miering.c │ │ │ ├── ogregauntlets.c │ │ │ ├── orisword1.c │ │ │ ├── orisword2.c │ │ │ ├── paingiver.c │ │ │ ├── paingreaves.c │ │ │ ├── rarmor.c │ │ │ ├── seraphimarmor.c │ │ │ ├── sharbodice.c │ │ │ ├── sunewhimple.c │ │ │ └── vajraknuckles.c │ ├── single_token.c │ ├── token_hunt.h │ ├── token_inventory.c │ ├── token_location_d.c │ ├── token_marker.c │ ├── token_monster.c │ ├── token_storage │ │ ├── high_store.c │ │ ├── low_store.c │ │ ├── mid_store.c │ │ ├── token_inventory.c │ │ └── token_location_d.c │ ├── token_vendor.c │ ├── tokens.c │ └── wagon.c ├── tsarven │ ├── equip │ │ ├── garmor.c │ │ ├── ghelm.c │ │ ├── gsword.c │ │ ├── gsword1.c │ │ ├── gsword2.c │ │ ├── iarmor.c │ │ ├── ihalberd.c │ │ ├── ihelm.c │ │ ├── ipike.c │ │ ├── iscimitar.c │ │ └── songblade.c │ ├── garden │ │ ├── ebridge.c │ │ ├── gazebo.c │ │ └── nbridge.c │ ├── include │ │ └── southern.h │ └── lirremar │ │ └── DESC ├── undead │ ├── creature.c │ ├── desert.h │ ├── mon │ │ ├── alainn.c │ │ ├── archer.c │ │ ├── baldandar.c │ │ ├── bartender.c │ │ ├── behir.c │ │ ├── behir_stomach.c │ │ ├── bishop.c │ │ ├── charlotte.c │ │ ├── demon.c │ │ ├── dire_wolf.c │ │ ├── gargoyle.c │ │ ├── ghoul.c │ │ ├── golem.c │ │ ├── guardian_maker.c │ │ ├── hand_of_justice.c │ │ ├── imp_assassin.c │ │ ├── kartakass.c │ │ ├── king_morock.c │ │ ├── klaus.c │ │ ├── knight_of_ximes.c │ │ ├── knocker.c │ │ ├── korrene.c │ │ ├── locust.c │ │ ├── lord_soth.c │ │ ├── medusa.c │ │ ├── minotaur.c │ │ ├── moss.c │ │ ├── nicoli.c │ │ ├── nicoli_storage.c │ │ ├── ogre_gate_guard.c │ │ ├── ogre_guard.c │ │ ├── omthgar.c │ │ ├── plague_rat.c │ │ ├── priest.c │ │ ├── sabrina.c │ │ ├── sal.c │ │ ├── sathid.c │ │ ├── seer.c │ │ ├── sister_of_fate1.c │ │ ├── sister_of_fate2.c │ │ ├── sister_of_fate3.c │ │ ├── skeletal_infantry.c │ │ ├── skeletal_knight.c │ │ ├── skeleton.c │ │ ├── skeleton_maker.c │ │ ├── thakarta.c │ │ ├── tyrwolf.c │ │ ├── undead_beast.c │ │ ├── wererat.c │ │ ├── wolf.c │ │ ├── wyvern.c │ │ ├── xeryl.c │ │ ├── xyrren.c │ │ ├── zombic_hands.c │ │ └── zombie.c │ ├── obj │ │ ├── ancient_great_blade.c │ │ ├── aspbow.c │ │ ├── aspsnake.c │ │ ├── black_heal.c │ │ ├── chaos_blade.c │ │ ├── clabbard_sword.c │ │ ├── club_of_titans.c │ │ ├── crystal_shield.c │ │ ├── death_plate.c │ │ ├── diamond_ring.c │ │ ├── dwarf_kings_plate.c │ │ ├── dwarf_lords_plate.c │ │ ├── eyeball.c │ │ ├── fmpotion.c │ │ ├── goodblade.c │ │ ├── halberd.c │ │ ├── holy_cross.c │ │ ├── katar.c │ │ ├── medusa_snake.c │ │ ├── mfpotion.c │ │ ├── minoaxe.c │ │ ├── minotaur_horn.c │ │ ├── necklace_of_eyes.c │ │ ├── powergem.c │ │ ├── r_helm.c │ │ ├── ratblade.c │ │ ├── sickle_of_venom.c │ │ ├── smallberet.c │ │ ├── smallboots.c │ │ ├── smallchain.c │ │ ├── smallcloak.c │ │ ├── smallgauntlets.c │ │ ├── smallhat.c │ │ ├── smallmrobe.c │ │ ├── smallmrobe2.c │ │ ├── smallpants.c │ │ ├── smallshirt.c │ │ ├── sothlongsword.c │ │ ├── sothsword.c │ │ ├── thunderous_hooves.c │ │ ├── whip_of_spikes.c │ │ └── wolfhammer.c │ ├── random_setter.c │ ├── rooms │ │ ├── bound │ │ │ ├── bridge.c │ │ │ ├── path.c │ │ │ ├── path10.c │ │ │ ├── path11.c │ │ │ ├── path12.c │ │ │ ├── path13.c │ │ │ ├── path14.c │ │ │ ├── path15.c │ │ │ ├── path16.c │ │ │ ├── path17.c │ │ │ ├── path18.c │ │ │ ├── path19.c │ │ │ ├── path2.c │ │ │ ├── path20.c │ │ │ ├── path21.c │ │ │ ├── path22.c │ │ │ ├── path23.c │ │ │ ├── path24.c │ │ │ ├── path25.c │ │ │ ├── path26.c │ │ │ ├── path27.c │ │ │ ├── path28.c │ │ │ ├── path29.c │ │ │ ├── path3.c │ │ │ ├── path30.c │ │ │ ├── path31.c │ │ │ ├── path32.c │ │ │ ├── path33.c │ │ │ ├── path34.c │ │ │ ├── path35.c │ │ │ ├── path36.c │ │ │ ├── path37.c │ │ │ ├── path38.c │ │ │ ├── path39.c │ │ │ ├── path4.c │ │ │ ├── path5.c │ │ │ ├── path6.c │ │ │ ├── path7.c │ │ │ ├── path8.c │ │ │ ├── path9.c │ │ │ ├── room.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room41.c │ │ │ ├── room42.c │ │ │ ├── room43.c │ │ │ ├── room44.c │ │ │ ├── room45.c │ │ │ ├── room46.c │ │ │ ├── room47.c │ │ │ ├── room48.c │ │ │ ├── room49.c │ │ │ ├── room5.c │ │ │ ├── room50.c │ │ │ ├── room51.c │ │ │ ├── room52.c │ │ │ ├── room53.c │ │ │ ├── room54.c │ │ │ ├── room55.c │ │ │ ├── room56.c │ │ │ ├── room57.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── room8.c │ │ │ ├── room9.c │ │ │ ├── sroom.c │ │ │ ├── sroom10.c │ │ │ ├── sroom11.c │ │ │ ├── sroom12.c │ │ │ ├── sroom13.c │ │ │ ├── sroom14.c │ │ │ ├── sroom15.c │ │ │ ├── sroom16.c │ │ │ ├── sroom17.c │ │ │ ├── sroom18.c │ │ │ ├── sroom19.c │ │ │ ├── sroom2.c │ │ │ ├── sroom20.c │ │ │ ├── sroom21.c │ │ │ ├── sroom22.c │ │ │ ├── sroom23.c │ │ │ ├── sroom24.c │ │ │ ├── sroom25.c │ │ │ ├── sroom26.c │ │ │ ├── sroom27.c │ │ │ ├── sroom28.c │ │ │ ├── sroom29.c │ │ │ ├── sroom3.c │ │ │ ├── sroom30.c │ │ │ ├── sroom31.c │ │ │ ├── sroom4.c │ │ │ ├── sroom5.c │ │ │ ├── sroom6.c │ │ │ ├── sroom7.c │ │ │ ├── sroom8.c │ │ │ └── sroom9.c │ │ ├── bound_five.c │ │ ├── bound_four.c │ │ ├── bound_one.c │ │ ├── bound_seven.c │ │ ├── bound_six.c │ │ ├── bound_three.c │ │ ├── bound_two.c │ │ ├── desert │ │ │ ├── desert_0,0.c │ │ │ ├── desert_0,1.c │ │ │ ├── desert_0,10.c │ │ │ ├── desert_0,11.c │ │ │ ├── desert_0,12.c │ │ │ ├── desert_0,13.c │ │ │ ├── desert_0,14.c │ │ │ ├── desert_0,2.c │ │ │ ├── desert_0,3.c │ │ │ ├── desert_0,4.c │ │ │ ├── desert_0,5.c │ │ │ ├── desert_0,6.c │ │ │ ├── desert_0,7.c │ │ │ ├── desert_0,8.c │ │ │ ├── desert_0,9.c │ │ │ ├── desert_1,0.c │ │ │ ├── desert_1,1.c │ │ │ ├── desert_1,10.c │ │ │ ├── desert_1,11.c │ │ │ ├── desert_1,12.c │ │ │ ├── desert_1,13.c │ │ │ ├── desert_1,14.c │ │ │ ├── desert_1,2.c │ │ │ ├── desert_1,3.c │ │ │ ├── desert_1,4.c │ │ │ ├── desert_1,5.c │ │ │ ├── desert_1,6.c │ │ │ ├── desert_1,7.c │ │ │ ├── desert_1,8.c │ │ │ ├── desert_1,9.c │ │ │ ├── desert_10,0.c │ │ │ ├── desert_10,1.c │ │ │ ├── desert_10,10.c │ │ │ ├── desert_10,11.c │ │ │ ├── desert_10,12.c │ │ │ ├── desert_10,13.c │ │ │ ├── desert_10,14.c │ │ │ ├── desert_10,2.c │ │ │ ├── desert_10,3.c │ │ │ ├── desert_10,4.c │ │ │ ├── desert_10,5.c │ │ │ ├── desert_10,6.c │ │ │ ├── desert_10,7.c │ │ │ ├── desert_10,8.c │ │ │ ├── desert_10,9.c │ │ │ ├── desert_11,0.c │ │ │ ├── desert_11,1.c │ │ │ ├── desert_11,10.c │ │ │ ├── desert_11,11.c │ │ │ ├── desert_11,12.c │ │ │ ├── desert_11,13.c │ │ │ ├── desert_11,14.c │ │ │ ├── desert_11,2.c │ │ │ ├── desert_11,3.c │ │ │ ├── desert_11,4.c │ │ │ ├── desert_11,5.c │ │ │ ├── desert_11,6.c │ │ │ ├── desert_11,7.c │ │ │ ├── desert_11,8.c │ │ │ ├── desert_11,9.c │ │ │ ├── desert_12,0.c │ │ │ ├── desert_12,1.c │ │ │ ├── desert_12,10.c │ │ │ ├── desert_12,11.c │ │ │ ├── desert_12,12.c │ │ │ ├── desert_12,13.c │ │ │ ├── desert_12,14.c │ │ │ ├── desert_12,2.c │ │ │ ├── desert_12,3.c │ │ │ ├── desert_12,4.c │ │ │ ├── desert_12,5.c │ │ │ ├── desert_12,6.c │ │ │ ├── desert_12,7.c │ │ │ ├── desert_12,8.c │ │ │ ├── desert_12,9.c │ │ │ ├── desert_13,0.c │ │ │ ├── desert_13,1.c │ │ │ ├── desert_13,10.c │ │ │ ├── desert_13,11.c │ │ │ ├── desert_13,12.c │ │ │ ├── desert_13,13.c │ │ │ ├── desert_13,14.c │ │ │ ├── desert_13,2.c │ │ │ ├── desert_13,3.c │ │ │ ├── desert_13,4.c │ │ │ ├── desert_13,5.c │ │ │ ├── desert_13,6.c │ │ │ ├── desert_13,7.c │ │ │ ├── desert_13,8.c │ │ │ ├── desert_13,9.c │ │ │ ├── desert_14,0.c │ │ │ ├── desert_14,1.c │ │ │ ├── desert_14,10.c │ │ │ ├── desert_14,11.c │ │ │ ├── desert_14,12.c │ │ │ ├── desert_14,13.c │ │ │ ├── desert_14,14.c │ │ │ ├── desert_14,2.c │ │ │ ├── desert_14,3.c │ │ │ ├── desert_14,4.c │ │ │ ├── desert_14,5.c │ │ │ ├── desert_14,6.c │ │ │ ├── desert_14,7.c │ │ │ ├── desert_14,8.c │ │ │ ├── desert_14,9.c │ │ │ ├── desert_2,0.c │ │ │ ├── desert_2,1.c │ │ │ ├── desert_2,10.c │ │ │ ├── desert_2,11.c │ │ │ ├── desert_2,12.c │ │ │ ├── desert_2,13.c │ │ │ ├── desert_2,14.c │ │ │ ├── desert_2,2.c │ │ │ ├── desert_2,3.c │ │ │ ├── desert_2,4.c │ │ │ ├── desert_2,5.c │ │ │ ├── desert_2,6.c │ │ │ ├── desert_2,7.c │ │ │ ├── desert_2,8.c │ │ │ ├── desert_2,9.c │ │ │ ├── desert_3,0.c │ │ │ ├── desert_3,1.c │ │ │ ├── desert_3,10.c │ │ │ ├── desert_3,11.c │ │ │ ├── desert_3,12.c │ │ │ ├── desert_3,13.c │ │ │ ├── desert_3,14.c │ │ │ ├── desert_3,2.c │ │ │ ├── desert_3,3.c │ │ │ ├── desert_3,4.c │ │ │ ├── desert_3,5.c │ │ │ ├── desert_3,6.c │ │ │ ├── desert_3,7.c │ │ │ ├── desert_3,8.c │ │ │ ├── desert_3,9.c │ │ │ ├── desert_4,0.c │ │ │ ├── desert_4,1.c │ │ │ ├── desert_4,10.c │ │ │ ├── desert_4,11.c │ │ │ ├── desert_4,12.c │ │ │ ├── desert_4,13.c │ │ │ ├── desert_4,14.c │ │ │ ├── desert_4,2.c │ │ │ ├── desert_4,3.c │ │ │ ├── desert_4,4.c │ │ │ ├── desert_4,5.c │ │ │ ├── desert_4,6.c │ │ │ ├── desert_4,7.c │ │ │ ├── desert_4,8.c │ │ │ ├── desert_4,9.c │ │ │ ├── desert_5,0.c │ │ │ ├── desert_5,1.c │ │ │ ├── desert_5,10.c │ │ │ ├── desert_5,11.c │ │ │ ├── desert_5,12.c │ │ │ ├── desert_5,13.c │ │ │ ├── desert_5,14.c │ │ │ ├── desert_5,2.c │ │ │ ├── desert_5,3.c │ │ │ ├── desert_5,4.c │ │ │ ├── desert_5,5.c │ │ │ ├── desert_5,6.c │ │ │ ├── desert_5,7.c │ │ │ ├── desert_5,8.c │ │ │ ├── desert_5,9.c │ │ │ ├── desert_6,0.c │ │ │ ├── desert_6,1.c │ │ │ ├── desert_6,10.c │ │ │ ├── desert_6,11.c │ │ │ ├── desert_6,12.c │ │ │ ├── desert_6,13.c │ │ │ ├── desert_6,14.c │ │ │ ├── desert_6,2.c │ │ │ ├── desert_6,3.c │ │ │ ├── desert_6,4.c │ │ │ ├── desert_6,5.c │ │ │ ├── desert_6,6.c │ │ │ ├── desert_6,7.c │ │ │ ├── desert_6,8.c │ │ │ ├── desert_6,9.c │ │ │ ├── desert_7,0.c │ │ │ ├── desert_7,1.c │ │ │ ├── desert_7,10.c │ │ │ ├── desert_7,11.c │ │ │ ├── desert_7,12.c │ │ │ ├── desert_7,13.c │ │ │ ├── desert_7,14.c │ │ │ ├── desert_7,2.c │ │ │ ├── desert_7,3.c │ │ │ ├── desert_7,4.c │ │ │ ├── desert_7,5.c │ │ │ ├── desert_7,6.c │ │ │ ├── desert_7,7.c │ │ │ ├── desert_7,8.c │ │ │ ├── desert_7,9.c │ │ │ ├── desert_8,0.c │ │ │ ├── desert_8,1.c │ │ │ ├── desert_8,10.c │ │ │ ├── desert_8,11.c │ │ │ ├── desert_8,12.c │ │ │ ├── desert_8,13.c │ │ │ ├── desert_8,14.c │ │ │ ├── desert_8,2.c │ │ │ ├── desert_8,3.c │ │ │ ├── desert_8,4.c │ │ │ ├── desert_8,5.c │ │ │ ├── desert_8,6.c │ │ │ ├── desert_8,7.c │ │ │ ├── desert_8,8.c │ │ │ ├── desert_8,9.c │ │ │ ├── desert_9,0.c │ │ │ ├── desert_9,1.c │ │ │ ├── desert_9,10.c │ │ │ ├── desert_9,11.c │ │ │ ├── desert_9,12.c │ │ │ ├── desert_9,13.c │ │ │ ├── desert_9,14.c │ │ │ ├── desert_9,2.c │ │ │ ├── desert_9,3.c │ │ │ ├── desert_9,4.c │ │ │ ├── desert_9,5.c │ │ │ ├── desert_9,6.c │ │ │ ├── desert_9,7.c │ │ │ ├── desert_9,8.c │ │ │ └── desert_9,9.c │ │ ├── desert_one.c │ │ ├── field │ │ │ ├── room.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room20.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room5.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── room8.c │ │ │ └── room9.c │ │ ├── field_one.c │ │ ├── forest │ │ │ ├── room.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room20.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room41.c │ │ │ ├── room42.c │ │ │ ├── room43.c │ │ │ ├── room44.c │ │ │ ├── room45.c │ │ │ ├── room46.c │ │ │ ├── room47.c │ │ │ ├── room48.c │ │ │ ├── room49.c │ │ │ ├── room5.c │ │ │ ├── room50.c │ │ │ ├── room51.c │ │ │ ├── room52.c │ │ │ ├── room53.c │ │ │ ├── room54.c │ │ │ ├── room55.c │ │ │ ├── room56.c │ │ │ ├── room57.c │ │ │ ├── room58.c │ │ │ ├── room59.c │ │ │ ├── room6.c │ │ │ ├── room60.c │ │ │ ├── room61.c │ │ │ ├── room62.c │ │ │ ├── room63.c │ │ │ ├── room64.c │ │ │ ├── room65.c │ │ │ ├── room66.c │ │ │ ├── room67.c │ │ │ ├── room68.c │ │ │ ├── room69.c │ │ │ ├── room7.c │ │ │ ├── room70.c │ │ │ ├── room71.c │ │ │ ├── room72.c │ │ │ ├── room73.c │ │ │ ├── room74.c │ │ │ ├── room75.c │ │ │ ├── room76.c │ │ │ ├── room77.c │ │ │ ├── room78.c │ │ │ ├── room79.c │ │ │ ├── room8.c │ │ │ ├── room80.c │ │ │ └── room9.c │ │ ├── forest_one.c │ │ ├── gen_storage.c │ │ ├── maze │ │ │ ├── haj.c │ │ │ ├── mint.c │ │ │ ├── room.c │ │ │ ├── room10.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room16.c │ │ │ ├── room17.c │ │ │ ├── room18.c │ │ │ ├── room19.c │ │ │ ├── room2.c │ │ │ ├── room20.c │ │ │ ├── room21.c │ │ │ ├── room22.c │ │ │ ├── room23.c │ │ │ ├── room24.c │ │ │ ├── room25.c │ │ │ ├── room26.c │ │ │ ├── room27.c │ │ │ ├── room28.c │ │ │ ├── room29.c │ │ │ ├── room3.c │ │ │ ├── room30.c │ │ │ ├── room31.c │ │ │ ├── room32.c │ │ │ ├── room33.c │ │ │ ├── room34.c │ │ │ ├── room35.c │ │ │ ├── room36.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room41.c │ │ │ ├── room42.c │ │ │ ├── room43.c │ │ │ ├── room44.c │ │ │ ├── room5.c │ │ │ ├── room6.c │ │ │ ├── room7.c │ │ │ ├── room8.c │ │ │ └── room9.c │ │ ├── maze_one.c │ │ ├── mts │ │ │ ├── bridge.c │ │ │ ├── bridge2.c │ │ │ ├── entrance.c │ │ │ ├── lair.c │ │ │ ├── lair10.c │ │ │ ├── lair11.c │ │ │ ├── lair12.c │ │ │ ├── lair13.c │ │ │ ├── lair14.c │ │ │ ├── lair15.c │ │ │ ├── lair16.c │ │ │ ├── lair17.c │ │ │ ├── lair18.c │ │ │ ├── lair19.c │ │ │ ├── lair2.c │ │ │ ├── lair20.c │ │ │ ├── lair21.c │ │ │ ├── lair22.c │ │ │ ├── lair23.c │ │ │ ├── lair24.c │ │ │ ├── lair25.c │ │ │ ├── lair26.c │ │ │ ├── lair3.c │ │ │ ├── lair4.c │ │ │ ├── lair5.c │ │ │ ├── lair6.c │ │ │ ├── lair7.c │ │ │ ├── lair8.c │ │ │ ├── lair9.c │ │ │ ├── room.c │ │ │ ├── room10.c │ │ │ ├── room100.c │ │ │ ├── room101.c │ │ │ ├── room102.c │ │ │ ├── room103.c │ │ │ ├── room104.c │ │ │ ├── room105.c │ │ │ ├── room107.c │ │ │ ├── room11.c │ │ │ ├── room12.c │ │ │ ├── room13.c │ │ │ ├── room14.c │ │ │ ├── room15.c │ │ │ ├── room2.c │ │ │ ├── room3.c │ │ │ ├── room37.c │ │ │ ├── room38.c │ │ │ ├── room39.c │ │ │ ├── room4.c │ │ │ ├── room40.c │ │ │ ├── room41.c │ │ │ ├── room42.c │ │ │ ├── room43.c │ │ │ ├── room44.c │ │ │ ├── room45.c │ │ │ ├── room46.c │ │ │ ├── room47.c │ │ │ ├── room48.c │ │ │ ├── room49.c │ │ │ ├── room5.c │ │ │ ├── room50.c │ │ │ ├── room51.c │ │ │ ├── room52.c │ │ │ ├── room53.c │ │ │ ├── room54.c │ │ │ ├── room55.c │ │ │ ├── room56.c │ │ │ ├── room57.c │ │ │ ├── room58.c │ │ │ ├── room59.c │ │ │ ├── room6.c │ │ │ ├── room60.c │ │ │ ├── room61.c │ │ │ ├── room62.c │ │ │ ├── room63.c │ │ │ ├── room64.c │ │ │ ├── room65.c │ │ │ ├── room66.c │ │ │ ├── room67.c │ │ │ ├── room68.c │ │ │ ├── room69.c │ │ │ ├── room7.c │ │ │ ├── room70.c │ │ │ ├── room71.c │ │ │ ├── room72.c │ │ │ ├── room73.c │ │ │ ├── room74.c │ │ │ ├── room75.c │ │ │ ├── room76.c │ │ │ ├── room77.c │ │ │ ├── room78.c │ │ │ ├── room79.c │ │ │ ├── room8.c │ │ │ ├── room80.c │ │ │ ├── room81.c │ │ │ ├── room82.c │ │ │ ├── room83.c │ │ │ ├── room84.c │ │ │ ├── room85.c │ │ │ ├── room86.c │ │ │ ├── room87.c │ │ │ ├── room88.c │ │ │ ├── room89.c │ │ │ ├── room9.c │ │ │ ├── room90.c │ │ │ ├── room91.c │ │ │ ├── room92.c │ │ │ ├── room93.c │ │ │ ├── room94.c │ │ │ ├── room95.c │ │ │ ├── room96.c │ │ │ └── room97.c │ │ ├── mts_eight.c │ │ ├── mts_five.c │ │ ├── mts_four.c │ │ ├── mts_one.c │ │ ├── mts_seven.c │ │ ├── mts_six.c │ │ ├── mts_three.c │ │ ├── mts_two.c │ │ ├── pub.c │ │ ├── room97.c │ │ ├── smith_storage.c │ │ ├── street.c │ │ ├── swamp │ │ │ ├── swamp1.c │ │ │ ├── swamp10.c │ │ │ ├── swamp11.c │ │ │ ├── swamp12.c │ │ │ ├── swamp13.c │ │ │ ├── swamp14.c │ │ │ ├── swamp15.c │ │ │ ├── swamp16.c │ │ │ ├── swamp17.c │ │ │ ├── swamp18.c │ │ │ ├── swamp19.c │ │ │ ├── swamp2.c │ │ │ ├── swamp20.c │ │ │ ├── swamp21.c │ │ │ ├── swamp22.c │ │ │ ├── swamp23.c │ │ │ ├── swamp24.c │ │ │ ├── swamp25.c │ │ │ ├── swamp26.c │ │ │ ├── swamp27.c │ │ │ ├── swamp28.c │ │ │ ├── swamp29.c │ │ │ ├── swamp3.c │ │ │ ├── swamp30.c │ │ │ ├── swamp31.c │ │ │ ├── swamp32.c │ │ │ ├── swamp33.c │ │ │ ├── swamp34.c │ │ │ ├── swamp35.c │ │ │ ├── swamp36.c │ │ │ ├── swamp37.c │ │ │ ├── swamp38.c │ │ │ ├── swamp39.c │ │ │ ├── swamp4.c │ │ │ ├── swamp40.c │ │ │ ├── swamp5.c │ │ │ ├── swamp50.c │ │ │ ├── swamp51.c │ │ │ ├── swamp52.c │ │ │ ├── swamp53.c │ │ │ ├── swamp54.c │ │ │ ├── swamp55.c │ │ │ ├── swamp56.c │ │ │ ├── swamp57.c │ │ │ ├── swamp58.c │ │ │ ├── swamp59.c │ │ │ ├── swamp6.c │ │ │ ├── swamp60.c │ │ │ ├── swamp61.c │ │ │ ├── swamp7.c │ │ │ ├── swamp8.c │ │ │ └── swamp9.c │ │ ├── swamp_one.c │ │ ├── tomb │ │ │ ├── chamber.c │ │ │ ├── chamber2.c │ │ │ ├── chamber3.c │ │ │ ├── chamber4.c │ │ │ ├── chamber5.c │ │ │ ├── chamber6.c │ │ │ ├── chamber7.c │ │ │ ├── chamber8.c │ │ │ ├── death.c │ │ │ ├── gate.c │ │ │ ├── hall.c │ │ │ ├── hall10.c │ │ │ ├── hall11.c │ │ │ ├── hall12.c │ │ │ ├── hall13.c │ │ │ ├── hall14.c │ │ │ ├── hall15.c │ │ │ ├── hall16.c │ │ │ ├── hall17.c │ │ │ ├── hall18.c │ │ │ ├── hall2.c │ │ │ ├── hall3.c │ │ │ ├── hall4.c │ │ │ ├── hall5.c │ │ │ ├── hall6.c │ │ │ ├── hall7.c │ │ │ ├── hall8.c │ │ │ ├── hall9.c │ │ │ ├── stair.c │ │ │ ├── stair2.c │ │ │ ├── stair3.c │ │ │ ├── temproad.c │ │ │ ├── temproad2.c │ │ │ ├── temproad3.c │ │ │ └── temproad4.c │ │ ├── tomb_five.c │ │ ├── tomb_four.c │ │ ├── tomb_one.c │ │ ├── tomb_three.c │ │ ├── tomb_two.c │ │ ├── town │ │ │ ├── bank.c │ │ │ ├── bards.c │ │ │ ├── church1.c │ │ │ ├── church2.c │ │ │ ├── ditch.c │ │ │ ├── ditch2.c │ │ │ ├── ditch3.c │ │ │ ├── ditch4.c │ │ │ ├── ditch5.c │ │ │ ├── ditch6.c │ │ │ ├── forge.c │ │ │ ├── general.c │ │ │ ├── healer.c │ │ │ ├── inn.c │ │ │ ├── inn2.c │ │ │ ├── inn3.c │ │ │ ├── inn4.c │ │ │ ├── inn5.c │ │ │ ├── mage.c │ │ │ ├── old │ │ │ │ ├── cast.c │ │ │ │ ├── cast10.c │ │ │ │ ├── cast11.c │ │ │ │ ├── cast12.c │ │ │ │ ├── cast13.c │ │ │ │ ├── cast14.c │ │ │ │ ├── cast2.c │ │ │ │ ├── cast3.c │ │ │ │ ├── cast4.c │ │ │ │ ├── cast5.c │ │ │ │ ├── cast6.c │ │ │ │ ├── cast7.c │ │ │ │ ├── cast8.c │ │ │ │ ├── cast9.c │ │ │ │ ├── church.c │ │ │ │ ├── dock.c │ │ │ │ ├── guard.c │ │ │ │ ├── guard10.c │ │ │ │ ├── guard11.c │ │ │ │ ├── guard12.c │ │ │ │ ├── guard13.c │ │ │ │ ├── guard14.c │ │ │ │ ├── guard15.c │ │ │ │ ├── guard16.c │ │ │ │ ├── guard17.c │ │ │ │ ├── guard18.c │ │ │ │ ├── guard19.c │ │ │ │ ├── guard2.c │ │ │ │ ├── guard20.c │ │ │ │ ├── guard21.c │ │ │ │ ├── guard22.c │ │ │ │ ├── guard3.c │ │ │ │ ├── guard4.c │ │ │ │ ├── guard5.c │ │ │ │ ├── guard6.c │ │ │ │ ├── guard7.c │ │ │ │ ├── guard8.c │ │ │ │ ├── guard9.c │ │ │ │ ├── healer.c │ │ │ │ ├── inn.c │ │ │ │ ├── room.c │ │ │ │ ├── room10.c │ │ │ │ ├── room11.c │ │ │ │ ├── room12.c │ │ │ │ ├── room13.c │ │ │ │ ├── room14.c │ │ │ │ ├── room15.c │ │ │ │ ├── room16.c │ │ │ │ ├── room17.c │ │ │ │ ├── room18.c │ │ │ │ ├── room19.c │ │ │ │ ├── room2.c │ │ │ │ ├── room20.c │ │ │ │ ├── room21.c │ │ │ │ ├── room22.c │ │ │ │ ├── room23.c │ │ │ │ ├── room24.c │ │ │ │ ├── room25.c │ │ │ │ ├── room26.c │ │ │ │ ├── room27.c │ │ │ │ ├── room28.c │ │ │ │ ├── room3.c │ │ │ │ ├── room4.c │ │ │ │ ├── room5.c │ │ │ │ ├── room6.c │ │ │ │ ├── room7.c │ │ │ │ ├── room8.c │ │ │ │ └── room9.c │ │ │ ├── portal.c │ │ │ ├── psion.c │ │ │ ├── pub.c │ │ │ ├── smith.c │ │ │ ├── stable.c │ │ │ ├── street1.c │ │ │ ├── street10.c │ │ │ ├── street11.c │ │ │ ├── street12.c │ │ │ ├── street13.c │ │ │ ├── street14.c │ │ │ ├── street15.c │ │ │ ├── street16.c │ │ │ ├── street17.c │ │ │ ├── street18.c │ │ │ ├── street19.c │ │ │ ├── street2.c │ │ │ ├── street20.c │ │ │ ├── street3.c │ │ │ ├── street4.c │ │ │ ├── street5.c │ │ │ ├── street6.c │ │ │ ├── street7.c │ │ │ ├── street8.c │ │ │ ├── street9.c │ │ │ ├── tether.c │ │ │ ├── thieves.c │ │ │ ├── trader.c │ │ │ └── weapons.c │ │ ├── town_five.c │ │ ├── town_four.c │ │ ├── town_one.c │ │ ├── town_six.c │ │ ├── town_three.c │ │ ├── town_two.c │ │ ├── warehouse.c │ │ └── weapon_storage.c │ └── undead.h ├── underdark │ ├── barracks │ │ └── rooms │ │ │ ├── barracks.h │ │ │ └── inherit │ │ │ ├── barracks.c │ │ │ └── environment.c │ ├── danger │ │ └── tower │ │ │ ├── mon │ │ │ └── jaeric.c │ │ │ ├── obj │ │ │ └── starrobe.c │ │ │ └── rooms │ │ │ ├── decorative01.c │ │ │ ├── decorative02.c │ │ │ ├── decorative03.c │ │ │ ├── decorative04.c │ │ │ ├── inherit │ │ │ ├── decorative.c │ │ │ ├── maze.c │ │ │ ├── mirrors.c │ │ │ ├── offices.c │ │ │ └── stairs.c │ │ │ ├── maze01.c │ │ │ ├── maze02.c │ │ │ ├── maze03.c │ │ │ ├── maze04.c │ │ │ ├── maze05.c │ │ │ ├── maze06.c │ │ │ ├── maze07.c │ │ │ ├── maze08.c │ │ │ ├── maze09.c │ │ │ ├── maze10.c │ │ │ ├── maze11.c │ │ │ ├── maze12.c │ │ │ ├── maze13.c │ │ │ ├── maze14.c │ │ │ ├── maze15.c │ │ │ ├── maze16.c │ │ │ ├── maze17.c │ │ │ ├── maze18.c │ │ │ ├── maze19.c │ │ │ ├── maze20.c │ │ │ ├── maze21.c │ │ │ ├── maze22.c │ │ │ ├── maze23.c │ │ │ ├── maze24.c │ │ │ ├── maze25.c │ │ │ ├── maze26.c │ │ │ ├── maze27.c │ │ │ ├── maze28.c │ │ │ ├── maze29.c │ │ │ ├── maze30.c │ │ │ ├── office01.c │ │ │ ├── office02.c │ │ │ ├── thedoor.c │ │ │ ├── top.c │ │ │ └── warded.c │ ├── daroldralych │ │ ├── books │ │ │ ├── combatstyles.txt │ │ │ ├── faerzress.txt │ │ │ ├── fallofjuran.txt │ │ │ ├── geography.txt │ │ │ ├── prominenthouses.txt │ │ │ ├── sharlolth.txt │ │ │ └── slaves.txt │ │ ├── defs.h │ │ ├── inherit │ │ │ ├── alley.c │ │ │ ├── dock.c │ │ │ ├── square.c │ │ │ ├── street.c │ │ │ ├── tower.c │ │ │ └── tunnel.c │ │ ├── layout.c │ │ ├── mon │ │ │ ├── bardess.c │ │ │ ├── dirzstral.c │ │ │ ├── felyndra.c │ │ │ ├── ghauntar.c │ │ │ ├── hurzagh.c │ │ │ ├── ilivaere.c │ │ │ ├── ilmayne.c │ │ │ ├── jhaelolin.c │ │ │ ├── naddaer.c │ │ │ ├── nsykah.c │ │ │ ├── phyrrae.c │ │ │ ├── shrityrr.c │ │ │ ├── spirerin.c │ │ │ ├── vuzlyn.c │ │ │ ├── xyros.c │ │ │ ├── zekcyrl.c │ │ │ └── zilvanna.c │ │ ├── mounts │ │ │ ├── cavvekan.c │ │ │ ├── packlizard.c │ │ │ ├── ravener.c │ │ │ ├── rothe.c │ │ │ └── spider.c │ │ ├── obj │ │ │ ├── armor │ │ │ │ ├── bracers1.c │ │ │ │ ├── bracers2.c │ │ │ │ ├── breastplate.c │ │ │ │ ├── buckler.c │ │ │ │ ├── fullplate.c │ │ │ │ ├── helm.c │ │ │ │ ├── hide.c │ │ │ │ ├── leather.c │ │ │ │ ├── mesh.c │ │ │ │ ├── shield.c │ │ │ │ └── studded.c │ │ │ ├── cityward.c │ │ │ ├── clothes │ │ │ │ └── spgown.c │ │ │ ├── dartboard.c │ │ │ ├── jewelry │ │ │ │ ├── circlet.c │ │ │ │ ├── earcuff.c │ │ │ │ ├── fingerring.c │ │ │ │ └── hairpins.c │ │ │ ├── magic │ │ │ │ ├── darknessring.c │ │ │ │ ├── invisring.c │ │ │ │ ├── messmedallion.c │ │ │ │ ├── poisonring.c │ │ │ │ ├── spider.c │ │ │ │ ├── spiderring.c │ │ │ │ └── webchoker.c │ │ │ ├── mirror.c │ │ │ └── statue.c │ │ ├── rooms │ │ │ ├── alley1.c │ │ │ ├── alley10.c │ │ │ ├── alley11.c │ │ │ ├── alley12.c │ │ │ ├── alley2.c │ │ │ ├── alley3.c │ │ │ ├── alley4.c │ │ │ ├── alley5.c │ │ │ ├── alley6.c │ │ │ ├── alley7.c │ │ │ ├── alley8.c │ │ │ ├── alley9.c │ │ │ ├── arcanist.c │ │ │ ├── bank.c │ │ │ ├── dock1.c │ │ │ ├── dock2.c │ │ │ ├── dock3.c │ │ │ ├── dock4.c │ │ │ ├── dock5.c │ │ │ ├── dock6.c │ │ │ ├── dock7.c │ │ │ ├── dock8.c │ │ │ ├── dock9.c │ │ │ ├── east1.c │ │ │ ├── east2.c │ │ │ ├── east3.c │ │ │ ├── east4.c │ │ │ ├── gateeast.c │ │ │ ├── gatesouth.c │ │ │ ├── gatewest.c │ │ │ ├── general.c │ │ │ ├── hall.c │ │ │ ├── inn1.c │ │ │ ├── inn2.c │ │ │ ├── library.c │ │ │ ├── northeast1.c │ │ │ ├── northeast2.c │ │ │ ├── northwest1.c │ │ │ ├── outer1.c │ │ │ ├── outer10.c │ │ │ ├── outer11.c │ │ │ ├── outer12.c │ │ │ ├── outer13.c │ │ │ ├── outer14.c │ │ │ ├── outer15.c │ │ │ ├── outer16.c │ │ │ ├── outer17.c │ │ │ ├── outer18.c │ │ │ ├── outer19.c │ │ │ ├── outer2.c │ │ │ ├── outer20.c │ │ │ ├── outer21.c │ │ │ ├── outer22.c │ │ │ ├── outer23.c │ │ │ ├── outer24.c │ │ │ ├── outer25.c │ │ │ ├── outer26.c │ │ │ ├── outer27.c │ │ │ ├── outer3.c │ │ │ ├── outer4.c │ │ │ ├── outer5.c │ │ │ ├── outer6.c │ │ │ ├── outer7.c │ │ │ ├── outer8.c │ │ │ ├── outer9.c │ │ │ ├── poffice.c │ │ │ ├── scribe.c │ │ │ ├── smith.c │ │ │ ├── south1.c │ │ │ ├── south2.c │ │ │ ├── south3.c │ │ │ ├── south4.c │ │ │ ├── southeast1.c │ │ │ ├── southeast2.c │ │ │ ├── southeast3.c │ │ │ ├── southwest1.c │ │ │ ├── southwest2.c │ │ │ ├── square1.c │ │ │ ├── square2.c │ │ │ ├── square3.c │ │ │ ├── square4.c │ │ │ ├── square5.c │ │ │ ├── square6.c │ │ │ ├── square7.c │ │ │ ├── square8.c │ │ │ ├── square9.c │ │ │ ├── stable.c │ │ │ ├── temple1.c │ │ │ ├── temple2.c │ │ │ ├── temple3.c │ │ │ ├── temple4.c │ │ │ ├── tower1.c │ │ │ ├── tower10.c │ │ │ ├── tower2.c │ │ │ ├── tower3.c │ │ │ ├── tower4.c │ │ │ ├── tower5.c │ │ │ ├── tower6.c │ │ │ ├── tower7.c │ │ │ ├── tower8.c │ │ │ ├── tower9.c │ │ │ ├── west1.c │ │ │ ├── west2.c │ │ │ ├── west3.c │ │ │ └── west4.c │ │ └── storage │ │ │ ├── general.c │ │ │ ├── poffice.c │ │ │ └── smith.c │ ├── defs.h │ ├── inherit │ │ ├── bend.c │ │ ├── bentry.c │ │ ├── bridge.c │ │ ├── btunnel.c │ │ ├── cavern.c │ │ ├── cavern2.c │ │ ├── chasm.c │ │ ├── chasmpath.c │ │ ├── crossroad.c │ │ ├── main.c │ │ ├── spiderarches.c │ │ ├── spidercrypt.c │ │ ├── spidershaft.c │ │ └── tunnel.c │ ├── juran │ │ ├── juran.h │ │ ├── tun01.c │ │ ├── tun02.c │ │ ├── tun03.c │ │ ├── tun04.c │ │ ├── tun05.c │ │ ├── tunnel1.c │ │ ├── tunnel2.c │ │ ├── tunnel3.c │ │ ├── tunnel4.c │ │ └── tunnel5.c │ ├── lower │ │ └── dragon │ │ │ ├── lair.c │ │ │ ├── lair.h │ │ │ ├── mon │ │ │ ├── arkhon.c │ │ │ └── rathargh.c │ │ │ ├── obj │ │ │ ├── alignamulet.c │ │ │ ├── barrier.c │ │ │ ├── chargegem.c │ │ │ ├── chokingdust.c │ │ │ ├── decanter.c │ │ │ ├── dustbox.c │ │ │ ├── flamebow-tick.c │ │ │ ├── flamebow.c │ │ │ ├── gauntlets.c │ │ │ ├── gemstone.c │ │ │ ├── genie.c │ │ │ ├── geniescuff.c │ │ │ ├── gleamingmote.c │ │ │ ├── greaterrop.c │ │ │ ├── gsunblade.c │ │ │ ├── lance.c │ │ │ ├── lenses.c │ │ │ ├── marhtesa.c │ │ │ ├── mendingprism.c │ │ │ ├── painting.c │ │ │ ├── rathsummon.c │ │ │ ├── shadowdancer.c │ │ │ ├── sheoldagger.c │ │ │ ├── shimmaryn.c │ │ │ ├── spellbracelets.c │ │ │ ├── statue.c │ │ │ ├── stonebreaker.c │ │ │ ├── stoneplate.c │ │ │ ├── telepathycirclet.c │ │ │ ├── tpboots.c │ │ │ └── weaponring.c │ │ │ ├── treasurevault.c │ │ │ ├── tunnel.c │ │ │ ├── tunnel1.c │ │ │ ├── tunnel2.c │ │ │ ├── tunnel3.c │ │ │ ├── tunnel4.c │ │ │ ├── tunnel5.c │ │ │ └── tunnel6.c │ ├── mid │ │ ├── bridge01.c │ │ ├── bridge02.c │ │ ├── bridge03.c │ │ ├── bridge04.c │ │ ├── bridge05.c │ │ ├── bridge06.c │ │ ├── bridge07.c │ │ ├── bridge08.c │ │ ├── bridge09.c │ │ ├── bridge10.c │ │ ├── bridge11.c │ │ ├── caverna3.c │ │ ├── cavernb2.c │ │ ├── cavernb3.c │ │ ├── cavernb4.c │ │ ├── cavernc1.c │ │ ├── cavernc2.c │ │ ├── cavernc3.c │ │ ├── cavernc4.c │ │ ├── cavernd1.c │ │ ├── cavernd2.c │ │ ├── cavernd3.c │ │ ├── cavernd4.c │ │ ├── caverne1.c │ │ ├── caverne2.c │ │ ├── caverne3.c │ │ ├── caverne4.c │ │ ├── cavernf1.c │ │ ├── cavernf2.c │ │ ├── cavernf3.c │ │ ├── cavernf4.c │ │ ├── caverng1.c │ │ ├── caverng2.c │ │ ├── caverng3.c │ │ ├── caverng4.c │ │ ├── cavernh1.c │ │ ├── cavernh2.c │ │ ├── cavernh3.c │ │ ├── cavernh4.c │ │ ├── caverni0.c │ │ ├── caverni1.c │ │ ├── caverni2.c │ │ ├── caverni3.c │ │ ├── caverni4.c │ │ ├── cavernj0.c │ │ ├── cavernj1.c │ │ ├── cavernj2.c │ │ ├── cavernj3.c │ │ ├── cavernj4.c │ │ ├── cavernk0.c │ │ ├── cavernk1.c │ │ ├── cavernk2.c │ │ ├── cavernk3.c │ │ ├── cavernk4.c │ │ ├── cavernl0.c │ │ ├── cavernl1.c │ │ ├── cavernl2.c │ │ ├── cavernl3.c │ │ ├── cavernl4.c │ │ ├── cavernl5.c │ │ ├── cavernm0.c │ │ ├── cavernm1.c │ │ ├── cavernm2.c │ │ ├── cavernm3.c │ │ ├── cavernm4.c │ │ ├── cavernm5.c │ │ ├── cavernn1.c │ │ ├── cavernn2.c │ │ ├── cavernn3.c │ │ ├── cavernn4.c │ │ ├── cavernn5.c │ │ ├── cavernn6.c │ │ ├── cavernn7.c │ │ ├── caverno1.c │ │ ├── caverno2.c │ │ ├── caverno3.c │ │ ├── caverno4.c │ │ ├── caverno5.c │ │ ├── caverno6.c │ │ ├── caverno7.c │ │ ├── caverno8.c │ │ ├── cavernp2.c │ │ ├── cavernp3.c │ │ ├── cavernp4.c │ │ ├── cavernp5.c │ │ ├── cavernp6.c │ │ ├── cavernp7.c │ │ ├── cavernq1.c │ │ ├── cavernq2.c │ │ ├── cavernq3.c │ │ ├── cavernq4.c │ │ ├── cavernq6.c │ │ ├── cavernr1.c │ │ ├── cavernr2.c │ │ ├── chasm01.c │ │ ├── chasm02.c │ │ ├── chasm03.c │ │ ├── chasm04.c │ │ ├── chasm05.c │ │ ├── chasm06.c │ │ ├── chasm07.c │ │ ├── chasm08.c │ │ ├── chasm09.c │ │ ├── chasm10.c │ │ ├── chasm11.c │ │ ├── chasm12.c │ │ ├── chasm13.c │ │ ├── chasm14.c │ │ ├── chasm15.c │ │ ├── chasm16.c │ │ ├── chasm17.c │ │ ├── chasm18.c │ │ ├── chasm19.c │ │ ├── chasm20.c │ │ ├── chasm21.c │ │ ├── chasm22.c │ │ ├── chasm23.c │ │ ├── chasm24.c │ │ ├── chasm25.c │ │ ├── chasm26.c │ │ ├── chasm27.c │ │ ├── chasm28.c │ │ ├── chasm29.c │ │ ├── main01.c │ │ ├── main02.c │ │ ├── main03.c │ │ ├── main04.c │ │ ├── main05.c │ │ ├── main06.c │ │ ├── main07.c │ │ ├── main08.c │ │ ├── main09.c │ │ ├── main10.c │ │ ├── main11.c │ │ ├── main12.c │ │ ├── main13.c │ │ ├── main14.c │ │ ├── main15.c │ │ ├── main16.c │ │ ├── main17.c │ │ ├── main18.c │ │ ├── main19.c │ │ ├── main20.c │ │ ├── main21.c │ │ ├── main22.c │ │ ├── main23.c │ │ ├── main24.c │ │ ├── main25.c │ │ ├── main26.c │ │ ├── main27.c │ │ ├── main28.c │ │ ├── main29.c │ │ ├── main30.c │ │ ├── main31.c │ │ ├── mon │ │ │ ├── cat.c │ │ │ ├── cube.c │ │ │ ├── cuberoom.c │ │ │ ├── elemental.c │ │ │ ├── gnomepriest.c │ │ │ ├── gnomewarr.c │ │ │ ├── grellphil.c │ │ │ ├── grellworker.c │ │ │ ├── hydra.c │ │ │ ├── illithid.c │ │ │ ├── piercer.c │ │ │ ├── ravener.c │ │ │ ├── ravener2.c │ │ │ ├── troll.c │ │ │ └── troll2.c │ │ ├── portal1.c │ │ ├── questcave.c │ │ ├── tunnel01.c │ │ ├── tunnel02.c │ │ ├── tunnel03.c │ │ ├── tunnel04.c │ │ ├── tunnel05.c │ │ ├── tunnel06.c │ │ ├── tunnel07.c │ │ ├── tunnel08.c │ │ └── tunnel09.c │ ├── mines │ │ ├── defs.h │ │ ├── inherit │ │ │ ├── gnocavern.c │ │ │ ├── gnocavern2.c │ │ │ ├── kobcavern.c │ │ │ ├── kobcavern2.c │ │ │ ├── nucavern.c │ │ │ ├── nucavern2.c │ │ │ └── warrens.c │ │ ├── mon │ │ │ ├── earthelement.c │ │ │ ├── floele.c │ │ │ ├── gnobasic.c │ │ │ ├── gnominer.c │ │ │ ├── gnominer2.c │ │ │ ├── gnopriest.c │ │ │ ├── gnowarden.c │ │ │ ├── gnowarr.c │ │ │ ├── gnowarr2.c │ │ │ ├── hookgrunt.c │ │ │ ├── hookqueen.c │ │ │ ├── kobchamp.c │ │ │ ├── kobchamp2.c │ │ │ ├── koboldbasic.c │ │ │ └── kobsorc.c │ │ ├── obj │ │ │ ├── dragoncloak.c │ │ │ ├── dragonmask.c │ │ │ ├── earthamulet.c │ │ │ ├── gnochain.c │ │ │ ├── gnojack.c │ │ │ ├── gnorobe.c │ │ │ ├── gnotoken.c │ │ │ ├── kobstudded.c │ │ │ ├── kobtoken.c │ │ │ └── remains.c │ │ ├── room │ │ │ ├── fissure.c │ │ │ ├── gnocaverna4.c │ │ │ ├── gnocavernb3.c │ │ │ ├── gnocavernc2.c │ │ │ ├── gnocavernd1.c │ │ │ ├── gnocavernd2.c │ │ │ ├── gnocaverne2.c │ │ │ ├── gnocaverne3.c │ │ │ ├── gnocavernf1.c │ │ │ ├── gnocavernf3.c │ │ │ ├── kobcaverna3.c │ │ │ ├── kobcavernb2.c │ │ │ ├── kobcavernb3.c │ │ │ ├── kobcavernb4.c │ │ │ ├── kobcavernc1.c │ │ │ ├── kobcavernc2.c │ │ │ ├── kobcavernc3.c │ │ │ ├── kobcavernc5.c │ │ │ ├── kobcavernd2.c │ │ │ ├── kobcavernd4.c │ │ │ ├── nucaverna1.c │ │ │ ├── nucaverna2.c │ │ │ ├── nucaverna4.c │ │ │ ├── nucaverna5.c │ │ │ ├── nucavernb1.c │ │ │ ├── nucavernb2.c │ │ │ ├── nucavernb3.c │ │ │ ├── nucavernc1.c │ │ │ ├── nucavernc2.c │ │ │ ├── nucavernd2.c │ │ │ ├── nucaverne1.c │ │ │ ├── nucavernz1.c │ │ │ ├── nucavernz2.c │ │ │ ├── nucavernz3.c │ │ │ └── nucavernz4.c │ │ └── spell │ │ │ ├── _acid_shield.c │ │ │ ├── _electric_shield.c │ │ │ ├── _fire_shield.c │ │ │ ├── _gas_shield.c │ │ │ ├── _ice_shield.c │ │ │ ├── _unique_scales.c │ │ │ ├── emgem.c │ │ │ └── nightmare.c │ ├── mon │ │ ├── slave.c │ │ ├── warrior1.c │ │ ├── warrior2.c │ │ └── warrior3.c │ ├── obj │ │ ├── catpelt.c │ │ ├── dchain.c │ │ ├── hookhammer.c │ │ ├── lightningspear.c │ │ ├── sboots.c │ │ └── slboots.c │ ├── ud_ruins │ │ ├── entry_sequence.c │ │ ├── mon │ │ │ ├── caller_in_darkness.c │ │ │ ├── chwidencha.c │ │ │ ├── drider_recluse.c │ │ │ ├── hook_horror.c │ │ │ ├── kuo_toa.c │ │ │ ├── kuo_toa_leviathan.c │ │ │ └── sword_spider.c │ │ ├── obj │ │ │ ├── attunement_clasp.c │ │ │ ├── chime_of_opening.c │ │ │ ├── fomorian_leather.c │ │ │ ├── greater_drider_whip.c │ │ │ ├── illusion_powder.c │ │ │ ├── illusionp_obj.c │ │ │ ├── kuo_bow.c │ │ │ ├── mistblade.c │ │ │ ├── mushroom_staff.c │ │ │ └── pugilists_robe.c │ │ ├── rooms │ │ │ ├── cliff │ │ │ │ ├── cliff_1.c │ │ │ │ ├── cliff_2.c │ │ │ │ ├── cliff_3.c │ │ │ │ ├── shrine1.c │ │ │ │ └── shrine2.c │ │ │ ├── lair │ │ │ │ ├── drider_house.c │ │ │ │ ├── lair_1.c │ │ │ │ ├── lair_10.c │ │ │ │ ├── lair_11.c │ │ │ │ ├── lair_12.c │ │ │ │ ├── lair_13.c │ │ │ │ ├── lair_14.c │ │ │ │ ├── lair_15.c │ │ │ │ ├── lair_2.c │ │ │ │ ├── lair_3.c │ │ │ │ ├── lair_4.c │ │ │ │ ├── lair_5.c │ │ │ │ ├── lair_6.c │ │ │ │ ├── lair_7.c │ │ │ │ ├── lair_8.c │ │ │ │ └── lair_9.c │ │ │ ├── river │ │ │ │ ├── exit_room_0.c │ │ │ │ ├── exit_room_1.c │ │ │ │ ├── exit_room_2.c │ │ │ │ ├── rapids.c │ │ │ │ ├── river_1.c │ │ │ │ ├── river_10.c │ │ │ │ ├── river_11.c │ │ │ │ ├── river_12.c │ │ │ │ ├── river_13.c │ │ │ │ ├── river_14.c │ │ │ │ ├── river_2.c │ │ │ │ ├── river_3.c │ │ │ │ ├── river_4.c │ │ │ │ ├── river_5.c │ │ │ │ ├── river_6.c │ │ │ │ ├── river_7.c │ │ │ │ ├── river_8.c │ │ │ │ └── river_9.c │ │ │ └── ruins │ │ │ │ ├── ruins_1.c │ │ │ │ ├── ruins_10.c │ │ │ │ ├── ruins_11.c │ │ │ │ ├── ruins_12.c │ │ │ │ ├── ruins_13.c │ │ │ │ ├── ruins_14.c │ │ │ │ ├── ruins_15.c │ │ │ │ ├── ruins_16.c │ │ │ │ ├── ruins_17.c │ │ │ │ ├── ruins_2.c │ │ │ │ ├── ruins_3.c │ │ │ │ ├── ruins_4.c │ │ │ │ ├── ruins_5.c │ │ │ │ ├── ruins_6.c │ │ │ │ ├── ruins_7.c │ │ │ │ ├── ruins_8.c │ │ │ │ └── ruins_9.c │ │ ├── storage │ │ │ ├── _cliff_base.c │ │ │ ├── _lair_base.c │ │ │ ├── _river_base.c │ │ │ └── _ruins_base.c │ │ └── ud_ruins.h │ ├── underdark.h │ └── upper │ │ ├── chasm01.c │ │ ├── chasm02.c │ │ ├── chasm03.c │ │ ├── chasm04.c │ │ ├── chasm05.c │ │ ├── chasm06.c │ │ ├── chasm07.c │ │ ├── chasm08.c │ │ ├── chasm09.c │ │ ├── chasm10.c │ │ ├── chasm11.c │ │ ├── chasm12.c │ │ ├── chasm13.c │ │ ├── chasm14.c │ │ ├── chasm15.c │ │ ├── chasm16.c │ │ ├── chasm17.c │ │ ├── chasm18.c │ │ ├── chasm19.c │ │ ├── cross01.c │ │ ├── cross02.c │ │ ├── cross03.c │ │ ├── cross04.c │ │ ├── cross05.c │ │ ├── cross06.c │ │ ├── cross07.c │ │ ├── cross08.c │ │ ├── cross09.c │ │ ├── cross10.c │ │ ├── cross11.c │ │ ├── cross12.c │ │ ├── cross13.c │ │ ├── defs.h │ │ ├── inherits │ │ ├── tunnel1.c │ │ └── tunnel2.c │ │ ├── portal.c │ │ ├── t1r1.c │ │ ├── t1r2.c │ │ ├── t1r3.c │ │ ├── t1r4.c │ │ ├── t1r5.c │ │ ├── t1r6.c │ │ ├── t1r7.c │ │ ├── t2r1.c │ │ ├── t2r2.c │ │ ├── t2r3.c │ │ ├── t2r4.c │ │ ├── t2r5.c │ │ ├── t2r6.c │ │ ├── t2r7.c │ │ ├── t3r1.c │ │ ├── t3r2.c │ │ ├── t3r3.c │ │ ├── t3r4.c │ │ ├── t3r5.c │ │ ├── t3r6.c │ │ ├── t3r7.c │ │ ├── t4r1.c │ │ ├── t4r2.c │ │ ├── t4r3.c │ │ ├── t4r4.c │ │ ├── t4r5.c │ │ ├── t4r6.c │ │ ├── t4r7.c │ │ ├── t5r1.c │ │ ├── t5r2.c │ │ ├── t5r3.c │ │ ├── t5r4.c │ │ ├── t5r5.c │ │ ├── t5r6.c │ │ ├── t5r7.c │ │ ├── tonovitunnel │ │ ├── cavern01.c │ │ ├── cavern02.c │ │ ├── cavern03.c │ │ ├── cavern04.c │ │ ├── cavern05.c │ │ ├── newtunnel1.c │ │ ├── newtunnel10.c │ │ ├── newtunnel11.c │ │ ├── newtunnel12.c │ │ ├── newtunnel2.c │ │ ├── newtunnel3.c │ │ ├── newtunnel4.c │ │ ├── newtunnel5.c │ │ ├── newtunnel6.c │ │ ├── newtunnel7.c │ │ ├── newtunnel8.c │ │ ├── newtunnel9.c │ │ ├── river01.c │ │ ├── tonovi01.c │ │ ├── tonovi02.c │ │ ├── tonovi03.c │ │ ├── tonovi04.c │ │ ├── tonovi05.c │ │ ├── tormdock01.c │ │ ├── tormdock02.c │ │ ├── tormdock03.c │ │ ├── tunnel01.c │ │ ├── tunnel02.c │ │ ├── tunnel03.c │ │ ├── tunnel04.c │ │ ├── tunnel05.c │ │ ├── tunnel06.c │ │ ├── tunnel07.c │ │ ├── tunnel08.c │ │ ├── tunnel09.c │ │ ├── tunnel10.c │ │ ├── tunnel11.c │ │ ├── tunnel12.c │ │ ├── tunnel13.c │ │ ├── tunnel14.c │ │ ├── tunnel15.c │ │ ├── tunnel16.c │ │ ├── tunnel17.c │ │ ├── tunnel18.c │ │ ├── tunnel19.c │ │ ├── tunnel20.c │ │ ├── tunnel21.c │ │ ├── tunnel22.c │ │ ├── tunnel23.c │ │ ├── tunnel24.c │ │ ├── tunnel25.c │ │ └── tunnel26.c │ │ ├── tunnel27.c │ │ ├── tunnel28.c │ │ ├── tunnel29.c │ │ ├── tunnel30.c │ │ ├── tunnel31.c │ │ ├── tunnel32.c │ │ ├── tunnel33.c │ │ ├── tunnel34.c │ │ ├── tunnel35.c │ │ ├── tunnel36.c │ │ ├── tunnel37.c │ │ ├── tunnel38.c │ │ ├── tunnel39.c │ │ └── tunnel40.c └── verhedin │ ├── include │ └── city.h │ ├── new │ ├── acm0.c │ ├── acm1.c │ ├── acm10.c │ ├── acm11.c │ ├── acm12.c │ ├── acm2.c │ ├── acm3.c │ ├── acm4.c │ ├── acm5.c │ ├── acm6.c │ ├── acm7.c │ ├── acm8.c │ ├── acm9.c │ ├── agd1.c │ ├── agd10.c │ ├── agd11.c │ ├── agd12.c │ ├── agd13.c │ ├── agd14.c │ ├── agd2.c │ ├── agd3.c │ ├── agd4.c │ ├── agd5.c │ ├── agd6.c │ ├── agd7.c │ ├── agd8.c │ ├── agd9.c │ ├── aoa1.c │ ├── aoa2.c │ ├── aoa3.c │ ├── aoa4.c │ ├── ba1.c │ ├── ba2.c │ ├── ba3.c │ ├── ba4.c │ ├── ba5.c │ ├── ba6.c │ ├── ha1.c │ ├── ha2.c │ ├── ha3.c │ ├── ha4.c │ ├── ib1.c │ ├── ib2.c │ ├── ib3.c │ ├── ib4.c │ ├── iw1.c │ ├── iw10.c │ ├── iw11.c │ ├── iw12.c │ ├── iw13.c │ ├── iw14.c │ ├── iw15.c │ ├── iw2.c │ ├── iw3.c │ ├── iw4.c │ ├── iw5.c │ ├── iw6.c │ ├── iw7.c │ ├── iw8.c │ ├── iw9.c │ ├── rr1.c │ ├── rr10.c │ ├── rr11.c │ ├── rr12.c │ ├── rr2.c │ ├── rr3.c │ ├── rr4.c │ ├── rr5.c │ ├── rr6.c │ ├── rr7.c │ ├── rr8.c │ ├── rr9.c │ ├── sol1.c │ ├── sol2.c │ ├── sol3.c │ ├── sol4.c │ ├── sol5.c │ ├── som1.c │ ├── som2.c │ ├── som3.c │ ├── som4.c │ ├── som5.c │ ├── som6.c │ ├── som7.c │ ├── som8.c │ ├── som9.c │ ├── surath1.c │ ├── tc1.c │ ├── tc2.c │ └── tc3.c │ ├── old │ ├── hr1.c │ ├── hr10.c │ ├── hr11.c │ ├── hr12.c │ ├── hr13.c │ ├── hr14.c │ ├── hr2.c │ ├── hr3.c │ ├── hr4.c │ ├── hr5.c │ ├── hr6.c │ ├── hr7.c │ ├── hr8.c │ ├── hr9.c │ ├── ms1.c │ ├── ms10.c │ ├── ms11.c │ ├── ms2.c │ ├── ms3.c │ ├── ms4.c │ ├── ms5.c │ ├── ms6.c │ ├── ms7.c │ ├── ms8.c │ ├── ms9.c │ ├── ps1.c │ ├── ps2.c │ ├── ps3.c │ ├── ps4.c │ ├── ps5.c │ ├── rir1.c │ ├── rir10.c │ ├── rir11.c │ ├── rir12.c │ ├── rir2.c │ ├── rir3.c │ ├── rir4.c │ ├── rir5.c │ ├── rir6.c │ ├── rir7.c │ ├── rir8.c │ ├── rir9.c │ ├── wr1.c │ ├── wr2.c │ ├── wr3.c │ ├── wr4.c │ ├── wr5.c │ ├── wr6.c │ ├── wr7.c │ ├── wr8.c │ └── wr9.c │ └── virtual │ ├── sea_daemon.c │ ├── sea_server.c │ ├── wadi │ ├── 0,2.wadi.c │ ├── 11,1.wadi.c │ ├── 11,3.wadi.c │ ├── 12,1.wadi.c │ ├── 14,4.wadi.c │ ├── 15,4.wadi.c │ ├── 16,1.wadi.c │ ├── 20,1.wadi.c │ ├── 4,3.wadi.c │ ├── 8,2.wadi.c │ ├── 9,4.wadi.c │ ├── chainhouse1.dock.c │ ├── chainhouse2.dock.c │ ├── chainhouse3.dock.c │ ├── cove1.dock.c │ ├── dock.c │ ├── landing.c │ ├── nabat.dock.c │ ├── obj │ │ ├── boat.c │ │ ├── boatroom.c │ │ ├── ferryroom.c │ │ └── nabatferry.c │ ├── pargineast.dock.c │ ├── parginwest.dock.c │ ├── quay.dock.c │ ├── verhedin.dock.c │ ├── wadi.desc │ ├── wadi.exits │ └── wadi.terrain │ ├── wadi_daemon.c │ └── wadi_server.c ├── daemon ├── alignment_d.c ├── alternative_world_d.c ├── area_keeper_d.c ├── area_map_d.c ├── avatar_d.c ├── bonus_d.c ├── castle.c ├── charisma_d.c ├── charisma_d.h ├── chat.c ├── class_news.c ├── cleric_calcs.c ├── climb_d.c ├── climbing │ ├── climb_pics.h │ └── climb_pics.l3 ├── combat_d.c ├── combat_grid │ └── combat_grid.h ├── combat_grid_d.c ├── command.c ├── config_d.c ├── converter.c ├── crayon_d.c ├── data_lists.c ├── death_effects_d.c ├── delay_d.c ├── delay_debug.c ├── description_d.c ├── destinations_d.c ├── dice_d.c ├── diety_d.c ├── economy_d.c ├── effects_d.c ├── equipment_d.c ├── events_d.c ├── factions_d.c ├── feat_d.c ├── fence_d.c ├── filters_d.c ├── find_target_d.c ├── game_features_d.c ├── gen_groups.c ├── generator_d.c ├── gold_tracker_d.c ├── government.c ├── grafitti_d.c ├── guild_d.c ├── guilds_d.c ├── help.c ├── help.h ├── henchman_d.c ├── hide_d.c ├── hint_d.c ├── ic_scry_locate_d.c ├── item_level_d.c ├── json.c ├── kill_and_event_records_d.c ├── killing_d.c ├── language_d.c ├── letter.c ├── levelcheck.c ├── library_d.c ├── living_d.c ├── localpost.c ├── magic_d.c ├── magic_effect.c ├── magic_ss_d.c ├── map_maker_d.c ├── mapping_d.c ├── maprooms │ ├── backslashroom.c │ ├── dashroom.c │ ├── dotroom.c │ └── slashroom.c ├── messaging_d.c ├── monster_d.c ├── monster_feat_d.c ├── multi_d.c ├── namegen.c ├── names.c ├── names.db ├── nameserver_d.c ├── news.c ├── news_d.c ├── notify.c ├── nwps_d.c ├── nwps_d.h ├── pathfinder_d.c ├── persistent_room_d.c ├── pic_shower_d.c ├── pictures │ ├── pictures.h │ └── picures.h ├── pk_d.c ├── place_d.c ├── placement_d.c ├── player_d.c ├── player_housing.c ├── player_skills_d.c ├── player_storage_d.c ├── poison_d.c ├── post.c ├── psion_calcs.c ├── quests.c ├── quests_high.c ├── quests_low.c ├── quests_mid.c ├── random_monster_treasure_d.c ├── recite_d.c ├── remotepost.c ├── reporter_d.c ├── retinue.c ├── river │ ├── boat_symbols.h │ ├── boat_symbols.lj │ ├── river_blocks.h │ └── river_blocks.lj ├── river_blocks.h ├── room_d.c ├── rumour.c ├── rumours │ ├── sources.h │ └── sources.lj ├── rumours_d.c ├── save_area_lists_d.c ├── save_d.c ├── saving_d.c ├── saving_throw_d.c ├── screen_d.c ├── search_d.c ├── slashroom.c ├── specials_d.c ├── spell_research.c ├── stabs_d.c ├── stoners_d.c ├── str_insert_d.c ├── stripper_d.c ├── tax_d.c ├── templefunds_d.c ├── terminal_d.c ├── terrain_srchmsg_d.c ├── timezones.c ├── trap_d.c ├── treasury_d.c ├── treesave_d.c ├── ud.c ├── unique_d.c ├── unique_item_d.c ├── updated_item_d.c ├── user_d.c ├── virtual_room_d.c ├── voting.c ├── weather_d.c ├── wholist_d.c ├── wiz_calcs.c ├── world_events_d.c ├── yd.c └── yuck_d.c ├── doc ├── efun │ ├── arrays │ │ ├── allocate.md │ │ ├── arrayp.md │ │ ├── filter_array.md │ │ ├── map_array.md │ │ ├── member_array.md │ │ ├── pointerp.md │ │ ├── sort_array.md │ │ └── unique_array.md │ ├── buffers │ │ ├── allocate_buffer.md │ │ ├── buffer_transcode.md │ │ ├── bufferp.md │ │ ├── crc32.md │ │ ├── read_buffer.md │ │ └── write_buffer.md │ ├── calls │ │ ├── call_other.md │ │ ├── call_out.md │ │ ├── catch.md │ │ ├── origin.md │ │ ├── previous_object.md │ │ ├── query_shadowing.md │ │ ├── remove_call_out.md │ │ ├── shadow.md │ │ ├── this_object.md │ │ └── throw.md │ ├── contrib │ │ ├── abs.md │ │ ├── assemble_class.md │ │ ├── base_name.md │ │ ├── classes.md │ │ ├── compressedp.md │ │ ├── copy.md │ │ ├── debug_message.md │ │ ├── disassemble_class.md │ │ ├── element_of.md │ │ ├── event.md │ │ ├── fetch_class_member.md │ │ ├── fetch_variable.md │ │ ├── file_length.md │ │ ├── function_owner.md │ │ ├── functions.md │ │ ├── get_garbage.md │ │ ├── heart_beats.md │ │ ├── is_daylight_savings_time.md │ │ ├── max.md │ │ ├── memory_summary.md │ │ ├── min.md │ │ ├── named_livings.md │ │ ├── network_stats.md │ │ ├── num_classes.md │ │ ├── pluralize.md │ │ ├── program_info.md │ │ ├── query_charmode.md │ │ ├── query_ip_port.md │ │ ├── query_notify_fail.md │ │ ├── query_num.md │ │ ├── query_replaced_program.md │ │ ├── real_time.md │ │ ├── remove_charmode.md │ │ ├── remove_get_char.md │ │ ├── remove_interactive.md │ │ ├── remove_shadow.md │ │ ├── repeat_string.md │ │ ├── replaceable.md │ │ ├── restore_from_string.md │ │ ├── roll_MdN.md │ │ ├── send_nullbyte.md │ │ ├── set_prompt.md │ │ ├── shuffle.md │ │ ├── store_class_member.md │ │ ├── store_variable.md │ │ ├── string_difference.md │ │ ├── terminal_colour.md │ │ ├── test_load.md │ │ ├── upper_case.md │ │ ├── variables.md │ │ └── zonetime.md │ ├── db │ │ ├── db_close.md │ │ ├── db_commit.md │ │ ├── db_connect.md │ │ ├── db_exec.md │ │ ├── db_fetch.md │ │ ├── db_rollback.md │ │ └── db_status.md │ ├── ed │ │ ├── ed_cmd.md │ │ ├── ed_start.md │ │ └── query_ed_mode.md │ ├── filesystem │ │ ├── cp.md │ │ ├── file_size.md │ │ ├── get_dir.md │ │ ├── link.md │ │ ├── mkdir.md │ │ ├── read_bytes.md │ │ ├── read_file.md │ │ ├── rename.md │ │ ├── rm.md │ │ ├── rmdir.md │ │ ├── stat.md │ │ ├── write_bytes.md │ │ └── write_file.md │ ├── floats │ │ ├── acos.md │ │ ├── asin.md │ │ ├── atan.md │ │ ├── ceil.md │ │ ├── cos.md │ │ ├── exp.md │ │ ├── floatp.md │ │ ├── floor.md │ │ ├── log.md │ │ ├── pow.md │ │ ├── round.md │ │ ├── sin.md │ │ ├── sqrt.md │ │ ├── tan.md │ │ └── to_int.md │ ├── functions │ │ ├── bind.md │ │ ├── evaluate.md │ │ └── functionp.md │ ├── general │ │ ├── map.md │ │ ├── nullp.md │ │ ├── restore_variable.md │ │ ├── save_variable.md │ │ ├── sizeof.md │ │ ├── typeof.md │ │ └── undefinedp.md │ ├── index.md │ ├── interactive │ │ ├── add_action.md │ │ ├── command.md │ │ ├── commands.md │ │ ├── disable_commands.md │ │ ├── disable_wizard.md │ │ ├── ed.md │ │ ├── enable_commands.md │ │ ├── exec.md │ │ ├── find_player.md │ │ ├── get_char.md │ │ ├── in_edit.md │ │ ├── in_input.md │ │ ├── input_to.md │ │ ├── interactive.md │ │ ├── message.md │ │ ├── notify_fail.md │ │ ├── printf.md │ │ ├── query_encoding.md │ │ ├── query_host_name.md │ │ ├── query_idle.md │ │ ├── query_ip_name.md │ │ ├── query_ip_number.md │ │ ├── query_snoop.md │ │ ├── query_snooping.md │ │ ├── receive.md │ │ ├── remove_action.md │ │ ├── resolve.md │ │ ├── say.md │ │ ├── set_encoding.md │ │ ├── set_this_player.md │ │ ├── shout.md │ │ ├── snoop.md │ │ ├── telnet_nop.md │ │ ├── this_interactive.md │ │ ├── this_player.md │ │ ├── userp.md │ │ ├── users.md │ │ └── write.md │ ├── internals │ │ ├── cache_stats.md │ │ ├── debug_info.md │ │ ├── debugmalloc.md │ │ ├── dump_file_descriptors.md │ │ ├── dump_prog.md │ │ ├── dump_socket_status.md │ │ ├── dumpallobj.md │ │ ├── get_config.md │ │ ├── malloc_status.md │ │ ├── memory_info.md │ │ ├── moncontrol.md │ │ ├── mud_status.md │ │ ├── opcprof.md │ │ ├── query_load_average.md │ │ ├── refs.md │ │ ├── rusage.md │ │ ├── set_debug_level.md │ │ ├── set_malloc_mask.md │ │ ├── swap.md │ │ ├── time_expression.md │ │ ├── trace.md │ │ └── traceprefix.md │ ├── mappings │ │ ├── allocate_mapping.md │ │ ├── filter_mapping.md │ │ ├── keys.md │ │ ├── map_delete.md │ │ ├── map_mapping.md │ │ ├── mapp.md │ │ ├── match_path.md │ │ ├── unique_mapping.md │ │ └── values.md │ ├── mudlib │ │ ├── author_stats.md │ │ ├── domain_stats.md │ │ ├── enable_wizard.md │ │ ├── export_uid.md │ │ ├── find_living.md │ │ ├── geteuid.md │ │ ├── getuid.md │ │ ├── living.md │ │ ├── livings.md │ │ ├── query_privs.md │ │ ├── set_author.md │ │ ├── set_light.md │ │ ├── set_living_name.md │ │ ├── set_privs.md │ │ ├── seteuid.md │ │ └── wizardp.md │ ├── numbers │ │ ├── intp.md │ │ ├── random.md │ │ ├── secure_random.md │ │ └── to_float.md │ ├── objects │ │ ├── all_inventory.md │ │ ├── children.md │ │ ├── clone_object.md │ │ ├── clonep.md │ │ ├── deep_inventory.md │ │ ├── destruct.md │ │ ├── environment.md │ │ ├── file_name.md │ │ ├── find_object.md │ │ ├── first_inventory.md │ │ ├── load_object.md │ │ ├── master.md │ │ ├── move_object.md │ │ ├── new.md │ │ ├── next_inventory.md │ │ ├── objectp.md │ │ ├── objects.md │ │ ├── present.md │ │ ├── query_heart_beat.md │ │ ├── reload_object.md │ │ ├── restore_object.md │ │ ├── save_object.md │ │ ├── set_heart_beat.md │ │ ├── set_hide.md │ │ ├── tell_object.md │ │ ├── tell_room.md │ │ └── virtualp.md │ ├── parsing │ │ ├── parse_command.md │ │ ├── process_string.md │ │ ├── process_value.md │ │ └── query_verb.md │ ├── pcre │ │ ├── pcre_assoc.md │ │ ├── pcre_cache.md │ │ ├── pcre_extract.md │ │ ├── pcre_match.md │ │ ├── pcre_match_all.md │ │ ├── pcre_replace.md │ │ ├── pcre_replace_callback.md │ │ └── pcre_version.md │ ├── sockets │ │ ├── socket_accept.md │ │ ├── socket_acquire.md │ │ ├── socket_address.md │ │ ├── socket_bind.md │ │ ├── socket_close.md │ │ ├── socket_connect.md │ │ ├── socket_create.md │ │ ├── socket_error.md │ │ ├── socket_listen.md │ │ ├── socket_release.md │ │ ├── socket_status.md │ │ └── socket_write.md │ ├── strings │ │ ├── capitalize.md │ │ ├── clear_bit.md │ │ ├── crypt.md │ │ ├── explode.md │ │ ├── implode.md │ │ ├── lower_case.md │ │ ├── ltrim.md │ │ ├── reg_assoc.md │ │ ├── regexp.md │ │ ├── replace_string.md │ │ ├── rtrim.md │ │ ├── set_bit.md │ │ ├── sprintf.md │ │ ├── sscanf.md │ │ ├── strcmp.md │ │ ├── string_decode.md │ │ ├── string_encode.md │ │ ├── stringp.md │ │ ├── strlen.md │ │ ├── strsrch.md │ │ ├── strwidth.md │ │ ├── test_bit.md │ │ └── trim.md │ └── system │ │ ├── all_previous_objects.md │ │ ├── call_out_info.md │ │ ├── ctime.md │ │ ├── deep_inherit_list.md │ │ ├── error.md │ │ ├── errorp.md │ │ ├── eval_cost.md │ │ ├── find_call_out.md │ │ ├── function_exists.md │ │ ├── function_profile.md │ │ ├── inherit_list.md │ │ ├── inherits.md │ │ ├── localtime.md │ │ ├── max_eval_cost.md │ │ ├── reclaim_objects.md │ │ ├── replace_program.md │ │ ├── reset_eval_cost.md │ │ ├── set_eval_limit.md │ │ ├── set_reset.md │ │ ├── shutdown.md │ │ ├── strftime.md │ │ ├── strptime.md │ │ ├── time.md │ │ ├── trace_end.md │ │ ├── trace_start.md │ │ └── uptime.md ├── help │ ├── README │ ├── avatar │ │ ├── avatar101 │ │ ├── avatar101b │ │ ├── builder │ │ ├── custom_characters │ │ ├── database │ │ ├── guidelines │ │ ├── imm-rules │ │ ├── magistrate_settings │ │ └── new-imm │ ├── creator │ │ ├── advertisement │ │ ├── alignment_adjustments │ │ ├── approval │ │ ├── areas-who.c │ │ ├── armor │ │ ├── armor_table │ │ ├── coding_cliffnotes │ │ ├── containers │ │ ├── debug_hints │ │ ├── debug_macro │ │ ├── domain_members │ │ ├── domain_themes │ │ ├── doors │ │ ├── editor │ │ ├── evals │ │ ├── fishing │ │ ├── house-prices │ │ ├── light │ │ ├── lrweapons │ │ ├── messages │ │ ├── monster_races │ │ ├── mud.help │ │ ├── new_quest │ │ ├── player_races │ │ ├── poisoning │ │ ├── postal │ │ ├── profs │ │ ├── properties │ │ ├── query_reset_number │ │ ├── quest_template │ │ ├── quests │ │ ├── rogue_tables │ │ ├── saving_throws │ │ ├── set │ │ ├── set_property │ │ ├── set_search │ │ ├── start │ │ ├── strvsenc.tbl │ │ ├── trap_doc │ │ ├── visions │ │ ├── weapon_specials │ │ ├── weapon_types │ │ ├── weapons │ │ ├── weapons2 │ │ ├── wiz_laws │ │ └── wiz_rules │ └── user │ │ ├── advanced_player │ │ ├── age │ │ ├── alignment │ │ ├── alignments │ │ ├── chaotic_evil │ │ ├── chaotic_good │ │ ├── chaotic_neutral │ │ ├── lawful_evil │ │ ├── lawful_good │ │ ├── lawful_neutral │ │ ├── neutral_evil │ │ ├── neutral_good │ │ └── true_neutral │ │ ├── attacker │ │ ├── bio-quests │ │ ├── bounties │ │ ├── bounty │ │ ├── cards │ │ ├── classes │ │ ├── arcane_archer │ │ ├── arcane_trickster │ │ ├── archdruid │ │ ├── archmage │ │ ├── archpsion │ │ ├── assassin │ │ ├── barbarian │ │ ├── bard │ │ ├── base_class │ │ ├── beast_master │ │ ├── bladeweaver │ │ ├── bloodlines │ │ ├── chronicler │ │ ├── classes │ │ ├── cleric │ │ ├── crypt_stalker │ │ ├── cypher │ │ ├── discipline_roleplay │ │ ├── disciplines │ │ ├── divine_grace │ │ ├── domains │ │ ├── druid │ │ ├── duelist │ │ ├── eldritch_knight │ │ ├── favored_types │ │ ├── fighter │ │ ├── grandmaster_of_the_way │ │ ├── gravecaller │ │ ├── hellfire_warlock │ │ ├── hierophant │ │ ├── immortal_defender │ │ ├── inquisitor │ │ ├── mage │ │ ├── magus │ │ ├── metamind │ │ ├── mindblade │ │ ├── monk │ │ ├── multiclasses │ │ ├── oracle │ │ ├── paladin │ │ ├── pale_lord │ │ ├── prestige_classes │ │ ├── priest_domains │ │ ├── primeval_champion │ │ ├── psion │ │ ├── psywarrior │ │ ├── radiant_servant │ │ ├── rage_prophet │ │ ├── ranger │ │ ├── ranger_roleplay │ │ ├── risen_martyr │ │ ├── schools │ │ ├── shadow_adept │ │ ├── shadowdancer │ │ ├── sorcerer │ │ ├── stonelord │ │ ├── thief │ │ ├── tome_bound_master │ │ ├── vampire_lord │ │ ├── versatile_arcanist │ │ ├── warlock │ │ ├── warlock_heritages │ │ ├── warmaster │ │ ├── warmind │ │ ├── way_of_the_elements │ │ ├── way_of_the_fist │ │ └── way_of_the_shadow │ │ ├── color │ │ ├── color_codes │ │ ├── communication │ │ ├── deities │ │ ├── ashra │ │ ├── callamir │ │ ├── cevahir │ │ ├── deities │ │ ├── draem │ │ ├── dream │ │ ├── edea │ │ ├── jarmila │ │ ├── khyron │ │ ├── kismet │ │ ├── krey │ │ ├── kreys │ │ ├── kreysneothosies │ │ ├── lord_shadow │ │ ├── lysara │ │ ├── nilith │ │ ├── nim │ │ ├── nimnavanon │ │ ├── seija │ │ └── the_faceless_one │ │ ├── diseases │ │ ├── domains │ │ ├── air_domain │ │ ├── animal_domain │ │ ├── cavern_domain │ │ ├── chaos_domain │ │ ├── charm_domain │ │ ├── cold_domain │ │ ├── creation_domain │ │ ├── darkness_domain │ │ ├── destruction_domain │ │ ├── earth_domain │ │ ├── elements_domain │ │ ├── evil_domain │ │ ├── fate_domain │ │ ├── fire_domain │ │ ├── good_domain │ │ ├── illusion_domain │ │ ├── knowledge_domain │ │ ├── law_domain │ │ ├── madness_domain │ │ ├── magic_domain │ │ ├── martyr_domain │ │ ├── mentalism_domain │ │ ├── moon_domain │ │ ├── plague_domain │ │ ├── plant_domain │ │ ├── protection_domain │ │ ├── renewal_domain │ │ ├── repose_domain │ │ ├── stars_domain │ │ ├── storms_domain │ │ ├── strength_domain │ │ ├── suffering_domain │ │ ├── sun_domain │ │ ├── travel_domain │ │ ├── trickery_domain │ │ ├── tyranny_domain │ │ ├── undeath_domain │ │ ├── vigilance_domain │ │ ├── void_domain │ │ ├── war_domain │ │ └── water_domain │ │ ├── editor │ │ ├── emoteat_codes │ │ ├── emoteat_guide │ │ ├── enhancements │ │ ├── exp_tax │ │ ├── faq │ │ ├── fence │ │ ├── fencing │ │ ├── guidelines │ │ ├── attributes │ │ ├── charisma │ │ ├── constitution │ │ ├── dexterity │ │ ├── intelligence │ │ ├── stats │ │ ├── strength │ │ └── wisdom │ │ ├── guides │ │ └── newbie_tutorial.txt │ │ ├── hints │ │ ├── horse_guide │ │ ├── horses │ │ ├── introduce │ │ ├── language │ │ ├── level │ │ ├── lore │ │ └── calendar │ │ ├── mail_syntax │ │ ├── mats │ │ ├── mysteries │ │ ├── ancestor_mystery │ │ ├── apocalypse_mystery │ │ ├── battle_mystery │ │ ├── bones_mystery │ │ ├── darkness_mystery │ │ ├── dragon_mystery │ │ ├── elemental_mystery │ │ ├── flame_mystery │ │ ├── godclaw_mystery │ │ ├── heavens_mystery │ │ ├── life_mystery │ │ ├── lore_mystery │ │ ├── lunar_mystery │ │ ├── metal_mystery │ │ ├── mysteries │ │ ├── nature_mystery │ │ ├── reaper_mystery │ │ ├── shadow_mystery │ │ ├── solar_mystery │ │ ├── spellscar_mystery │ │ ├── stone_mystery │ │ ├── waves_mystery │ │ ├── whimsy_mystery │ │ ├── wind_mystery │ │ └── winter_mystery │ │ ├── new_caster │ │ ├── newbie │ │ ├── newbie_tutorial │ │ ├── pk_interactions │ │ ├── plots │ │ ├── policies │ │ └── handfasting │ │ ├── races │ │ ├── aasimar │ │ ├── air_genasi │ │ ├── aquatic_elf │ │ ├── barrus │ │ ├── beastkin │ │ ├── bugbear │ │ ├── centaur │ │ ├── deep_gnome │ │ ├── deva │ │ ├── dhampir │ │ ├── drow │ │ ├── dryad │ │ ├── dwarf │ │ ├── earth_genasi │ │ ├── elf │ │ ├── faery │ │ ├── fey'ri │ │ ├── feytouched │ │ ├── firbolg │ │ ├── fire_genasi │ │ ├── forest_gnome │ │ ├── genasi │ │ ├── ghostwise_halfling │ │ ├── gnoll │ │ ├── gnome │ │ ├── goblin │ │ ├── gold_dwarf │ │ ├── gray_dwarf │ │ ├── gray_orc │ │ ├── half-drow │ │ ├── half-elf │ │ ├── half-ogre │ │ ├── half-orc │ │ ├── halfling │ │ ├── hobgoblin │ │ ├── human │ │ ├── human_ethnicities │ │ ├── innate_spells │ │ ├── kitsune │ │ ├── kobold │ │ ├── lightfoot_halfling │ │ ├── minotaur │ │ ├── moon_elf │ │ ├── mountain_orc │ │ ├── nymph │ │ ├── ogre │ │ ├── ogre-mage │ │ ├── ogre_mage │ │ ├── orc │ │ ├── orog │ │ ├── races │ │ ├── ratkin │ │ ├── rock_gnome │ │ ├── satyr │ │ ├── saurian │ │ ├── shade │ │ ├── shield_dwarf │ │ ├── sildruath │ │ ├── soulforged │ │ ├── squole │ │ ├── strongheart_halfling │ │ ├── sun_elf │ │ ├── szarkai │ │ ├── tanarukk │ │ ├── tiefling │ │ ├── trixie │ │ ├── troll │ │ ├── undead │ │ ├── vampire │ │ ├── voadkyn │ │ ├── water_genasi │ │ ├── wemic │ │ ├── wererat │ │ ├── weretiger │ │ ├── werewolf │ │ ├── wild_elf │ │ ├── wood_elf │ │ └── yuan-ti │ │ ├── ranged_weapons │ │ ├── rend │ │ ├── rules │ │ ├── death │ │ ├── fade_to_black │ │ ├── line_use │ │ ├── pk │ │ ├── pkill │ │ ├── pkilling │ │ ├── roleplaying │ │ └── rules │ │ ├── search │ │ ├── shoot │ │ ├── shop │ │ ├── skills │ │ ├── academics │ │ ├── athletics │ │ ├── craft,_armorsmith │ │ ├── craft,_jeweller │ │ ├── craft,_leatherworker │ │ ├── craft,_tailor │ │ ├── craft,_weaponsmith │ │ ├── craft,_woodworker │ │ ├── dungeoneering │ │ ├── endurance │ │ ├── healing │ │ ├── influence │ │ ├── perception │ │ ├── rope_use │ │ ├── spellcraft │ │ ├── stealth │ │ ├── survival │ │ └── thievery │ │ ├── souls │ │ ├── spoken_languages │ │ ├── standard_damage │ │ ├── status_effects │ │ ├── styles │ │ └── syntax └── lpc │ ├── constructs │ ├── for.md │ ├── function.md │ ├── if.md │ ├── include.md │ ├── inherit.md │ ├── prototypes.md │ ├── switch.md │ └── while.md │ ├── index.md │ ├── preprocessor │ ├── README.md │ ├── define.md │ └── include.md │ └── types │ ├── array.md │ ├── buffer.md │ ├── float.md │ ├── function.md │ ├── general.md │ ├── mappings.md │ ├── strings.md │ └── substructures.md ├── fluffos.cfg.example ├── include ├── bardcomps.h ├── bloodlines.h ├── class_spells.h ├── class_types.h ├── cleric_spells.h ├── clerics.h ├── common_destinations.h ├── components.h ├── crafting.h ├── detect_thoughts.h ├── dieties.h ├── disciplinespells.h ├── domination.h ├── enhancements.h ├── favored_types.h ├── feats.h ├── function.h ├── html_converter.h ├── invocations.h ├── langs.h ├── levelcheck.h ├── localtime.h ├── magic_effects.h ├── master_limits.h ├── materials.h ├── monks.h ├── mysteries.h ├── namegen.h ├── origin.h ├── parser_error.h ├── powersbylevel.h ├── prc_improv_spells.h ├── psions.h ├── runtime_config.h ├── schoolspells.h ├── skills.h ├── socket_err.h ├── spell.h ├── spell_domains.h ├── spell_domains_spells.h ├── spell_research.h ├── spellcomponents.h ├── spellsbylevel.h ├── teleport.h ├── type.h ├── valid_bonuses.h └── wizards.h ├── local_options.example ├── news ├── _arrested ├── _ip_banished ├── _link ├── _lost_wiz ├── _register ├── bard ├── cavalier ├── child ├── cleric ├── dex ├── druid ├── fighter ├── hm ├── iced ├── immortal ├── locked ├── monsterxp ├── newbie ├── newname ├── news ├── paladin ├── player ├── rabbit ├── ranger ├── sorcerer ├── str ├── thief ├── welcome └── wizard └── std ├── Object.c ├── acquired_template ├── none.c ├── undead.c ├── vampire.c ├── wererat.c ├── weretiger.c └── werewolf.c ├── adm ├── poison.c └── prohibited.h ├── adt ├── README ├── adt_defs.h.orig ├── cstack.c ├── ilist.c ├── iqueue.c ├── iset.c ├── istack.c ├── queue.c ├── semaphore.c └── stack.c ├── ammo.c ├── arena ├── arena.c └── arenamain.c ├── armour.c ├── artifact.c ├── bag_logic.c ├── bank.c ├── bank_storage.c ├── bard_comp_vend.c ├── barkeep.c ├── battle.c ├── bboard.c ├── bounty.c ├── caravan.c ├── castle.c ├── changes.c ├── church.c ├── class ├── antipaladin.c ├── arcane_archer.c ├── arcane_trickster.c ├── archdruid.c ├── archmage.c ├── archpsion.c ├── assassin.c ├── barbarian.c ├── bard.c ├── beast_master.c ├── bladeweaver.c ├── cavalier.c ├── chronicler.c ├── cleric.c ├── crypt_stalker.c ├── cypher.c ├── druid.c ├── duelist.c ├── eldritch_knight.c ├── fighter.c ├── grandmaster_of_the_way.c ├── gravecaller.c ├── hellfire_warlock.c ├── hierophant.c ├── immortal_defender.c ├── inquisitor.c ├── mage.c ├── magus.c ├── metamind.c ├── mindblade.c ├── monk.c ├── oracle.c ├── paladin.c ├── pale_lord.c ├── primeval_champion.c ├── psion.c ├── psywarrior.c ├── radiant_servant.c ├── rage_prophet.c ├── ranger.c ├── risen_martyr.c ├── shadow_adept.c ├── shadowdancer.c ├── sorcerer.c ├── stonelord.c ├── thief.c ├── tome_bound_master.c ├── vampire_lord.c ├── versatile_arcanist.c ├── warlock.c ├── warmaster.c └── warmind.c ├── class_set.c ├── comp_vend.c ├── container.c ├── controld.c ├── controlroom.c ├── controlvault.c ├── conversion2.c ├── daemon.c ├── decay.c ├── diseases ├── disease_obj.c └── diseases │ ├── blinding_sickness.c │ ├── cackle_fever.c │ ├── demon_fever.c │ ├── devil_chills.c │ ├── filth_fever.c │ ├── mindfire.c │ ├── red_ache.c │ ├── shakes.c │ ├── slimy_doom.c │ └── wererat_infection.c ├── drink.c ├── effect ├── status │ ├── confused.c │ ├── cowering.c │ ├── dazzled.c │ ├── exhausted.c │ ├── fatigued.c │ ├── frightened.c │ ├── negative_level.c │ ├── panicked.c │ ├── shaken.c │ ├── sickened.c │ └── staggered.c └── status_eff.c ├── effect_object.c ├── effects └── effect.c ├── factionitems.c ├── factions └── torm.c ├── feat.c ├── fence.c ├── firearm.c ├── flying_mount.c ├── flying_room.c ├── food.c ├── gaol.c ├── government.c ├── guardsman.c ├── guild.c ├── guilds ├── guild.c ├── guild_money.c └── members.c ├── healer.c ├── hm ├── castle.c ├── hm_room.c └── room_maker.c ├── hotel.c ├── identifier.c ├── jail_cell.c ├── jail_main.c ├── jailer.c ├── lab.c ├── lang.c ├── library.c ├── living-poison.c ├── living.c ├── living ├── body.c ├── combat.c ├── env.c ├── follow.c ├── messages.c └── skills.c ├── lrweapon.c ├── magic ├── alchemy.c ├── bak │ └── teleport.c ├── cleanse.c ├── confusion.c ├── dispel.c ├── raise_undead.c ├── spell.c └── teleport.c ├── magistrate.c ├── material.c ├── members.c ├── money.c ├── monster.c ├── move.c ├── news └── rn.c ├── newuser.c ├── npc.c ├── nwp └── nwp.c ├── obj ├── body_part.c ├── brand.c ├── cloth.c ├── coins.c ├── corpse.c ├── dark_orb.c ├── deed.c ├── fence_store.c ├── fence_store_epic.c ├── fence_store_high.c ├── fence_store_int.c ├── fence_store_lesser.c ├── fence_store_mid.c ├── fence_store_newbie.c ├── light_orb.c ├── light_orb.new ├── map_maker.c ├── map_maker_d.c ├── metal.c ├── npc_mon.c ├── player_list.c ├── post.c ├── ring.c ├── shopkeep.c ├── skin.c ├── slither_storage.c ├── target.c ├── thief ├── torch.c ├── wagon.c ├── wed_ring.c ├── wood.c └── workroom.c ├── oldbank.c ├── overlook.c ├── pier.c ├── plate.c ├── player_storage_room.c ├── pocketarmour.c ├── poison.c ├── potion.c ├── prop_logic.c ├── psi_comp_vend.c ├── psi_lab.c ├── psion_vend.c ├── psionportal.c ├── pstore.c ├── psychic.c ├── qobject.c ├── quest_ob.c ├── quest_room.c ├── races ├── barrus.c ├── beastkin.c ├── bugbear.c ├── centaur.c ├── deva.c ├── drow.c ├── dryad.c ├── dwarf.c ├── elf.c ├── faery.c ├── firbolg.c ├── gnoll.c ├── gnome.c ├── goblin.c ├── half-drow.c ├── half-elf.c ├── half-ogre.c ├── half-orc.c ├── halfling.c ├── hobgoblin.c ├── human.c ├── kitsune.c ├── kobold.c ├── minotaur.c ├── monster_races │ ├── alaghi.c │ ├── demon.c │ ├── draconian.c │ ├── dragon.c │ ├── elven-dragon.c │ ├── ghost.c │ ├── giant.c │ ├── golem.c │ ├── illithid.c │ ├── kender.c │ ├── lich.c │ ├── lupine.c │ ├── minotaur.c │ ├── pegataur.c │ ├── skeleton.c │ ├── thri-kreen.c │ ├── titan.c │ ├── troll.c │ ├── unborn.c │ └── with.c ├── nymph.c ├── ogre-mage.c ├── ogre.c ├── orc.c ├── ratkin.c ├── satyr.c ├── saurian.c ├── shade.c ├── shapeshifted_races │ ├── circe_pig.c │ ├── druid_bear.c │ ├── druid_bird.c │ ├── druid_cat.c │ ├── druid_dragon.c │ ├── druid_elemental.c │ ├── druid_large_animal.c │ ├── druid_small_animal.c │ ├── druid_wolf.c │ ├── lythari_wolf.c │ ├── mage_demon.c │ ├── mage_dragon.c │ ├── mage_elemental.c │ ├── mage_golem.c │ ├── mage_pixie.c │ ├── mage_shapes.h │ ├── mage_spider.c │ ├── mage_troll.c │ ├── restricted_commands.c │ ├── spell_alter_self.c │ ├── spell_glamer.c │ ├── vampire_bat.c │ ├── vampire_vampire.c │ ├── vampire_varghulf.c │ ├── vampire_wolf.c │ ├── wererat_curse.c │ ├── wererat_rat.c │ ├── wererat_wererat.c │ ├── weretiger_tiger.c │ ├── weretiger_weretiger.c │ ├── werewolf_werewolf.c │ ├── werewolf_wolf.c │ └── yuan-ti_viper.c ├── soulforged.c ├── squole.c ├── troll.c ├── voadkyn.c ├── wemic.c └── yuan-ti.c ├── random_monsters.c ├── riding_animal.c ├── room.c ├── room ├── _flee.c ├── exiteffect.c ├── exits.c ├── items.c ├── lexits.c ├── senses.c ├── terrain.c └── weather.c ├── rquestroom.c ├── scribe.c ├── sea ├── boat.c ├── broom.c ├── dock.c ├── enter.c ├── helm.c ├── shanty.c ├── shit.c └── waterroom.c ├── senses.c ├── shapeshift.c ├── shop.c ├── shop.help ├── sign.c ├── speaker.c ├── spell_vend.c ├── spellcaster.c ├── stable.c ├── store.c ├── tcon.c ├── temple.c ├── templelab.c ├── templelibrary.c ├── templemisc.c ├── throwing_weapon.c ├── tobj.c ├── townsman.c ├── trainer.c ├── trap_data.c ├── user.c ├── user ├── alias.c ├── autoload.c ├── bitflags.c ├── edit.c ├── history.c ├── more.c ├── nicknames.c ├── refs.c ├── save.c ├── trace.c ├── tsh.c └── wild_card.c ├── vacuum.c ├── vault.c ├── vendor.c ├── vendor_pstore.c ├── virtual ├── compile.c └── server.c ├── voting.c ├── water.c ├── weapon.c ├── weaponless_monsters.c └── weaponless_users.c /adm/include/acheck.log: -------------------------------------------------------------------------------- 1 | Robe of-da: PASSED 2 | -------------------------------------------------------------------------------- /adm/include/astronomy.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /adm/include/effect.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /adm/include/mbalance.h: -------------------------------------------------------------------------------- 1 | // 2 | 3 | -------------------------------------------------------------------------------- /cmds/hm/.login: -------------------------------------------------------------------------------- 1 | finger holle 2 | honey HONEY! 3 | -------------------------------------------------------------------------------- /d/attaya/seneca/cguilds/mage/mona.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d/attaya/seneca/seneca: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d/avatars/tsera/cmon.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d/avatars/tsera/tcat.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d/dagger/drow/note: -------------------------------------------------------------------------------- 1 | if(ETO == TP) { 2 | -------------------------------------------------------------------------------- /d/danger/caverns/beholder.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/caverns/gauth.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /d/danger/caverns/gbeholder.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beastfront.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beastmouth.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beaststomach.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beastthroat.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/Beast/beasttop9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/beastling.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/dire.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/fiendish.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/mon/treant.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_0,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_1,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_10,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_11,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_12,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_13,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_14,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_15,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_16,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_17,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_18,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_19,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_2,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_20,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_21,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_22,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_23,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_24,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_25,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_26,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_27,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_28,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_29,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_3,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_30,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_31,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_32,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_33,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_34,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_35,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_36,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_37,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_38,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_39,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_4,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_40,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_41,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_42,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_43,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_44,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_45,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_46,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_47,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_48,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_49,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_5,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,0.c: -------------------------------------------------------------------------------- 1 | x 2 | x 3 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,16.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_6,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_7,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_8,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,0.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,1.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,10.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,11.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,12.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,13.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,14.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,15.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,17.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,2.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,3.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,4.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,5.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,6.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,7.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,8.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms/forest_9,9.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_0,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_0,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_0,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_1,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_1,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_1,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_1,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_10,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_10,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_10,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_10,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_11,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_11,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_11,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_11,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_12,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_12,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_12,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_12,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_13,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_13,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_13,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_13,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_14,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_14,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_14,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_14,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_15,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_15,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_15,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_15,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_16,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_16,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_16,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_16,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_17,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_17,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_17,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_17,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_18,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_18,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_18,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_18,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_19,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_19,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_19,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_19,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_2,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_2,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_2,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_2,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_20,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_20,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_20,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_20,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_21,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_21,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_21,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_21,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_22,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_22,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_22,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_22,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_23,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_23,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_23,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_23,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_24,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_24,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_24,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_24,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_25,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_25,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_25,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_25,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_26,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_26,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_26,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_26,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_27,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_27,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_27,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_27,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_28,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_28,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_28,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_28,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_29,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_29,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_29,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_29,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_3,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_3,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_3,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_3,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_30,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_30,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_30,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_30,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_31,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_31,19.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_31,20.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_31,21.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/forest/rooms2/forest_32,18.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/tower/mon/guardian.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/forest/village/mon/howler.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/forest/village/mon/hunter.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/forest/village/mon/maktar.c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /d/danger/obj/fortifyrobes.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/danger/obj/impeccable.c: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /d/db/Zyrian.dbh: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /d/db/Zyrianrandom.db: -------------------------------------------------------------------------------- 1 | @cough 2 | -------------------------------------------------------------------------------- /d/db/alonso.dbh: -------------------------------------------------------------------------------- 1 | ashlyn 2 | daughter 3 | -------------------------------------------------------------------------------- /d/db/aravilar.dbh: -------------------------------------------------------------------------------- 1 | orcs 2 | poison 3 | cleric 4 | -------------------------------------------------------------------------------- /d/db/barkeep1.dbh: -------------------------------------------------------------------------------- 1 | thirst 2 | -------------------------------------------------------------------------------- /d/db/buemor.dbh: -------------------------------------------------------------------------------- 1 | pokiir 2 | -------------------------------------------------------------------------------- /d/db/caldur.dbh: -------------------------------------------------------------------------------- 1 | malar 2 | orcs 3 | -------------------------------------------------------------------------------- /d/db/cassius.dbh: -------------------------------------------------------------------------------- 1 | pot 2 | pokiir 3 | -------------------------------------------------------------------------------- /d/db/dunkirk.dbh: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /d/db/fairy.dbh: -------------------------------------------------------------------------------- 1 | drow 2 | -------------------------------------------------------------------------------- /d/db/flugar.dbh: -------------------------------------------------------------------------------- 1 | small 2 | -------------------------------------------------------------------------------- /d/db/joerandom.db: -------------------------------------------------------------------------------- 1 | @smile 2 | -------------------------------------------------------------------------------- /d/db/joerandom.dbh: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /d/db/joerumor.dbh: -------------------------------------------------------------------------------- 1 | tester 2 | -------------------------------------------------------------------------------- /d/db/kedathia.dbh: -------------------------------------------------------------------------------- 1 | pokiir 2 | -------------------------------------------------------------------------------- /d/db/killer.dbh: -------------------------------------------------------------------------------- 1 | killer 2 | -------------------------------------------------------------------------------- /d/db/manuel.dbh: -------------------------------------------------------------------------------- 1 | odysuit 2 | loves 3 | oots 4 | -------------------------------------------------------------------------------- /d/db/mordor.dbh: -------------------------------------------------------------------------------- 1 | drink 2 | -------------------------------------------------------------------------------- /d/db/penny.dbh: -------------------------------------------------------------------------------- 1 | pokiir 2 | -------------------------------------------------------------------------------- /d/db/petire.dbh: -------------------------------------------------------------------------------- 1 | pokiir 2 | tournament 3 | -------------------------------------------------------------------------------- /d/db/pirate.dbh: -------------------------------------------------------------------------------- 1 | tournament 2 | -------------------------------------------------------------------------------- /d/db/raetsel.dbh: -------------------------------------------------------------------------------- 1 | eye 2 | -------------------------------------------------------------------------------- /d/db/samson.dbh: -------------------------------------------------------------------------------- 1 | sheep 2 | sick 3 | put down 4 | -------------------------------------------------------------------------------- /d/db/shaman.dbh: -------------------------------------------------------------------------------- 1 | kadi 2 | arrow 3 | -------------------------------------------------------------------------------- /d/db/shepherd.dbh: -------------------------------------------------------------------------------- 1 | sick 2 | -------------------------------------------------------------------------------- /d/db/temple_cleric.dbh: -------------------------------------------------------------------------------- 1 | symbol 2 | -------------------------------------------------------------------------------- /d/db/ticio.db: -------------------------------------------------------------------------------- 1 | @kill 2 | -------------------------------------------------------------------------------- /d/db/ticio.dbh: -------------------------------------------------------------------------------- 1 | @slap 2 | -------------------------------------------------------------------------------- /d/db/waitress.dbh: -------------------------------------------------------------------------------- 1 | food 2 | -------------------------------------------------------------------------------- /d/islands/common/eldebaro/newrooms/roomroom47.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /d/koenig/hideout/room1.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room10.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room11.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room12.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room13.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room14.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room15.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room16.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room17.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room18.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room19.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room2.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room20.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room3.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room4.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room5.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room6.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room7.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room8.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/koenig/hideout/room9.c: -------------------------------------------------------------------------------- 1 | MAKE 2 | -------------------------------------------------------------------------------- /d/shadow/mon/newguard.c: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /d/shadow/newbie.h: -------------------------------------------------------------------------------- 1 | #define newbieareaoff 1 2 | -------------------------------------------------------------------------------- /d/shadow/room/tour/.plan: -------------------------------------------------------------------------------- 1 | ss 2 | -------------------------------------------------------------------------------- /d/test/garrett.txt: -------------------------------------------------------------------------------- 1 | Test Push 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/obj/starrobe.c: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze01.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze02.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze03.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze04.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze05.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze06.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze07.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze08.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze09.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze10.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze11.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze12.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze13.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze14.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze15.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze16.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze17.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze18.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze19.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze20.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze21.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze22.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze23.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze24.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze25.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze26.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze27.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze28.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze29.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/maze30.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/top.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /d/underdark/danger/tower/rooms/warded.c: -------------------------------------------------------------------------------- 1 | Sup! 2 | -------------------------------------------------------------------------------- /daemon/nameserver_d.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/help/user/shoot: -------------------------------------------------------------------------------- 1 | ranged_weapons -------------------------------------------------------------------------------- /include/disciplinespells.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/bard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/druid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/fighter: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /news/ranger: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/sorcerer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/thief: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------