├── CHANGELOG.md ├── CONTRIBUTING.md ├── FEATURES.md ├── MODDING.md ├── Open Game License.md ├── README.md ├── ai ├── ally.lua ├── new.lua ├── party.lua ├── simple.lua ├── summon.lua ├── target.lua └── xorn_tunneler.lua ├── class ├── Actor.lua ├── Ego.lua ├── Game.lua ├── GameState.lua ├── Grid.lua ├── HotkeysIconsDisplay.lua ├── MapEffects.lua ├── NPC.lua ├── NPCEgo.lua ├── NameGenerator.lua ├── Object.lua ├── Party.lua ├── PartyMember.lua ├── Player.lua ├── PlayerDisplay.lua ├── Projectile.lua ├── Store.lua ├── Trap.lua ├── World.lua ├── Zone.lua ├── generator │ ├── actor │ │ ├── EncounterRandom.lua │ │ ├── Encounters.lua │ │ ├── OnSpots.lua │ │ ├── Random.lua │ │ └── XornTunnelers.lua │ ├── map │ │ ├── CavernAlternate.lua │ │ ├── MossyCavern.lua │ │ ├── RandomWorldmap.lua │ │ ├── Roomer.lua │ │ ├── RoomsLoader.lua │ │ ├── T2DungeonLevel.lua │ │ ├── T2LevelGenerator.lua │ │ └── TownWalled.lua │ └── object │ │ ├── OnSpots.lua │ │ └── Random.lua ├── interface │ ├── ActorLife.lua │ ├── ActorSkills.lua │ ├── ActorSpells.lua │ ├── Combat.lua │ ├── ObjectIdentify.lua │ ├── PartyDeath.lua │ ├── PlayerExplore.lua │ ├── PlayerJournal.lua │ ├── PlayerLore.lua │ ├── PlayerReligion.lua │ ├── TooltipsData.lua │ └── WorldAchievements.lua ├── patch │ ├── ActorFrame.lua │ ├── ActorTalentDialog.lua │ ├── ActorsSeenDisplayMin.lua │ ├── Birther.lua │ ├── Chat.lua │ ├── Dialog.lua │ ├── FlyingText.lua │ ├── FontList.lua │ ├── LogFlasher.lua │ ├── ShowInventory.lua │ ├── Talkbox.lua │ ├── Tooltip.lua │ └── UserChat.lua └── uiset │ ├── UISet.lua │ └── Veins.lua ├── data ├── achievements │ └── achievements.lua ├── birth │ ├── background.lua │ ├── casters.lua │ ├── class.lua │ ├── deities.lua │ ├── descriptors.lua │ ├── domains.lua │ ├── halfcasters.lua │ ├── martial.lua │ ├── prestige.lua │ └── races.lua ├── calendar.lua ├── chats │ ├── banker.lua │ ├── female_courtesan.lua │ ├── healer.lua │ ├── hireling.lua │ ├── innkeeper.lua │ ├── male_courtesan.lua │ ├── sage.lua │ ├── shop.lua │ └── trainer.lua ├── damage_types.lua ├── factions.lua ├── font │ ├── Augusta.ttf │ ├── Blkchcry.ttf │ ├── CutiveMono - OFL.txt │ ├── CutiveMono-Regular.ttf │ ├── Droid-LICENSE.txt │ ├── DroidSansFallback.ttf │ ├── Dumbledor - gemfont license.txt │ ├── EagleLake-OFL.txt │ ├── EagleLake-Regular.ttf │ ├── FantasqueSansMono - OFL.txt │ ├── FantasqueSansMono - README.md │ ├── FantasqueSansMono-Regular.ttf │ ├── Grange.ttf │ ├── HamletOrNot.ttf │ ├── IMMORTAL.ttf │ ├── Immortal - License.txt │ ├── LICENSE.txt │ ├── LiberationMono - Red Hat Liberation License.txt │ ├── LiberationMono-Regular.ttf │ ├── MONOFONT.ttf │ ├── Nosfer.ttf │ ├── NotCourierSans - COPYING.txt │ ├── NotCourierSans - FONTLOG.txt │ ├── NotCourierSans - GPL-2.txt │ ├── NotCourierSans.ttf │ ├── NotoSans-Bold.ttf │ ├── NovaMono - OFL.txt │ ├── NovaMono.ttf │ ├── OxygenMono - OFL.txt │ ├── OxygenMono-Regular.ttf │ ├── PTM55FT - OFL.txt │ ├── PTM55FT.ttf │ ├── Saint-Andrews Queen - License - LisezMoi.txt │ ├── SaintAndrewsQueen.ttf │ ├── Symbola.ttf │ ├── TITUSCBZ.TTF │ ├── Tangerine - OFL.txt │ ├── Tangerine_Regular.ttf │ ├── dum1.ttf │ ├── dum1thin.ttf │ ├── dum1wide.ttf │ ├── monofonto - read_me.html │ ├── monofur - License.txt │ └── monofur55.ttf ├── general │ ├── events │ │ ├── noble test.lua │ │ └── radiation.lua │ ├── grids │ │ ├── basic.lua │ │ ├── cavern.lua │ │ ├── drow.lua │ │ ├── elemental.lua │ │ ├── elven.lua │ │ ├── surface.lua │ │ ├── tower.lua │ │ ├── town.lua │ │ └── worldmap.lua │ ├── npcs │ │ ├── aberration.lua │ │ ├── all.lua │ │ ├── animals.lua │ │ ├── animals_druid.lua │ │ ├── animals_other.lua │ │ ├── aquatic.lua │ │ ├── construct.lua │ │ ├── demon.lua │ │ ├── draconic.lua │ │ ├── elementals.lua │ │ ├── encounters │ │ │ ├── encounters_generic.lua │ │ │ └── encounters_specific.lua │ │ ├── fey.lua │ │ ├── giant.lua │ │ ├── good.lua │ │ ├── humanoid.lua │ │ ├── magical_beasts.lua │ │ ├── magical_beasts_highend.lua │ │ ├── monstrous_humanoid.lua │ │ ├── mounts.lua │ │ ├── neutral.lua │ │ ├── ooze.lua │ │ ├── outsider.lua │ │ ├── outsider_air.lua │ │ ├── outsider_earth.lua │ │ ├── outsider_evil.lua │ │ ├── outsider_fire.lua │ │ ├── outsider_good.lua │ │ ├── outsider_water.lua │ │ ├── planar_water.lua │ │ ├── plants.lua │ │ ├── templates │ │ │ ├── animals.lua │ │ │ ├── dragons.lua │ │ │ ├── humanoid.lua │ │ │ └── special_npc.lua │ │ ├── townies_drow.lua │ │ ├── townies_elven.lua │ │ ├── undead.lua │ │ ├── variant │ │ │ └── trainers.lua │ │ └── vermin.lua │ ├── objects │ │ ├── armor.lua │ │ ├── consumables.lua │ │ ├── containers.lua │ │ ├── exotic.lua │ │ ├── exoticranged.lua │ │ ├── gems.lua │ │ ├── lite.lua │ │ ├── lore.lua │ │ ├── magic_items.lua │ │ ├── money.lua │ │ ├── more_wondrous.lua │ │ ├── objects.lua │ │ ├── pickaxes.lua │ │ ├── poisons.lua │ │ ├── properties │ │ │ ├── ammo.lua │ │ │ ├── armor.lua │ │ │ ├── bonus_armor.lua │ │ │ ├── bonus_shields.lua │ │ │ ├── bonus_weapons.lua │ │ │ ├── boots.lua │ │ │ ├── bracers.lua │ │ │ ├── charged.lua │ │ │ ├── containers.lua │ │ │ ├── lite.lua │ │ │ ├── materials_armor.lua │ │ │ ├── materials_shields.lua │ │ │ ├── poisons.lua │ │ │ ├── potions.lua │ │ │ ├── shields.lua │ │ │ ├── thrown.lua │ │ │ ├── tomes.lua │ │ │ ├── weapons.lua │ │ │ └── wondrous_items.lua │ │ ├── ranged.lua │ │ ├── reach.lua │ │ ├── shields.lua │ │ ├── specific_items.lua │ │ ├── thrown.lua │ │ ├── tools.lua │ │ ├── variant │ │ │ ├── body_parts_armor.lua │ │ │ ├── money_weight.lua │ │ │ ├── piecemeal_armor.lua │ │ │ └── spellbooks.lua │ │ ├── weapons.lua │ │ └── wondrous_items.lua │ ├── stores │ │ └── general.lua │ └── traps │ │ ├── general.lua │ │ ├── magical.lua │ │ ├── random.lua │ │ └── store.lua ├── gfx │ ├── background │ │ ├── Veins.png │ │ └── tome-logo.png │ ├── dark-ui │ │ └── equipdoll │ │ │ ├── ammo_inv.png │ │ │ ├── amulet_inv.png │ │ │ ├── armor_inv.png │ │ │ ├── arms_inv.png │ │ │ ├── belt_inv.png │ │ │ ├── boots_inv.png │ │ │ ├── cloak_inv.png │ │ │ ├── gloves_inv.png │ │ │ ├── head_inv.png │ │ │ ├── legs_inv.png │ │ │ ├── light_inv.png │ │ │ ├── mainhand_inv.png │ │ │ ├── offhand_inv.png │ │ │ ├── ring_inv.png │ │ │ ├── shoulder_inv.png │ │ │ └── tool_inv.png │ ├── default │ │ ├── attachements.lua │ │ └── tiles │ │ │ ├── UT │ │ │ ├── air_floor.png │ │ │ ├── air_wall.png │ │ │ ├── aranea.png │ │ │ ├── bird_piranha.png │ │ │ ├── book.png │ │ │ ├── bugbear.png │ │ │ ├── constrictor.png │ │ │ ├── diamond.png │ │ │ ├── door_iron.png │ │ │ ├── door_iron_barred.png │ │ │ ├── drow_house_guard.png │ │ │ ├── earth_floor.png │ │ │ ├── earth_wall.png │ │ │ ├── fire_floor.png │ │ │ ├── floor_cobblestone.png │ │ │ ├── gargoyle.png │ │ │ ├── gibbering_mouther.png │ │ │ ├── gray_render.png │ │ │ ├── hag.png │ │ │ ├── hell_hound.png │ │ │ ├── hyena.png │ │ │ ├── ice.png │ │ │ ├── jackal.png │ │ │ ├── lamia.png │ │ │ ├── merfolk.png │ │ │ ├── mohrg.png │ │ │ ├── mud.png │ │ │ ├── naga.png │ │ │ ├── ogre_mage.png │ │ │ ├── sand.png │ │ │ ├── shallow_water.png │ │ │ ├── spectral_panther.png │ │ │ ├── sphinx.png │ │ │ ├── tiger.png │ │ │ ├── titan.png │ │ │ ├── trog.png │ │ │ ├── viper.png │ │ │ ├── wall_cave.png │ │ │ ├── wall_stone.png │ │ │ ├── water_floor.png │ │ │ ├── wolf.png │ │ │ ├── wolf_winter.png │ │ │ └── worldmap_floor.png │ │ │ ├── license.txt │ │ │ ├── mobiles │ │ │ ├── aboleth.png │ │ │ ├── aboleth2.png │ │ │ ├── allip.png │ │ │ ├── angel.png │ │ │ ├── ant.png │ │ │ ├── ant_queen.png │ │ │ ├── ant_soldier.png │ │ │ ├── athach.png │ │ │ ├── barghest.png │ │ │ ├── basilisk.png │ │ │ ├── bat.png │ │ │ ├── beetle.png │ │ │ ├── behir.png │ │ │ ├── blink_dog.png │ │ │ ├── bodak.png │ │ │ ├── centipede.png │ │ │ ├── chaos_beast.png │ │ │ ├── cobra.png │ │ │ ├── destrachan.png │ │ │ ├── devourer.png │ │ │ ├── dire_rat.png │ │ │ ├── djinn.png │ │ │ ├── doppelganger.png │ │ │ ├── dragon │ │ │ │ ├── dragon_black_adult.png │ │ │ │ ├── dragon_black_ancient.png │ │ │ │ ├── dragon_black_great_wyrm.png │ │ │ │ ├── dragon_black_wyrm.png │ │ │ │ ├── dragon_black_wyrmling.png │ │ │ │ ├── dragon_blue_adult.png │ │ │ │ ├── dragon_blue_ancient.png │ │ │ │ ├── dragon_blue_great_wyrm.png │ │ │ │ ├── dragon_blue_wyrm.png │ │ │ │ ├── dragon_blue_wyrmling.png │ │ │ │ ├── dragon_bronze_adult.png │ │ │ │ ├── dragon_bronze_ancient.png │ │ │ │ ├── dragon_bronze_great_wyrm.png │ │ │ │ ├── dragon_bronze_wyrm.png │ │ │ │ ├── dragon_bronze_wyrmling.png │ │ │ │ ├── dragon_gold_adult.png │ │ │ │ ├── dragon_gold_ancient.png │ │ │ │ ├── dragon_gold_wyrm.png │ │ │ │ ├── dragon_gold_wyrmling.png │ │ │ │ ├── dragon_green_adult.png │ │ │ │ ├── dragon_green_ancient.png │ │ │ │ ├── dragon_green_great_wyrm.png │ │ │ │ ├── dragon_green_wyrm.png │ │ │ │ ├── dragon_green_wyrmling.png │ │ │ │ ├── dragon_red_adult.png │ │ │ │ ├── dragon_red_ancient.png │ │ │ │ ├── dragon_red_great_wyrm.png │ │ │ │ ├── dragon_red_wyrm.png │ │ │ │ ├── dragon_red_wyrmling.png │ │ │ │ ├── dragon_silver_adult.png │ │ │ │ ├── dragon_silver_ancient.png │ │ │ │ ├── dragon_silver_great_wyrm.png │ │ │ │ ├── dragon_silver_wyrm.png │ │ │ │ ├── dragon_silver_wyrmling.png │ │ │ │ └── dragon_white_great_wyrm.png │ │ │ ├── dragon_turtle.png │ │ │ ├── dragonne.png │ │ │ ├── drow.png │ │ │ ├── drow_noble_male.png │ │ │ ├── eagle.png │ │ │ ├── elemental_air.png │ │ │ ├── elemental_earth.png │ │ │ ├── elemental_fire.png │ │ │ ├── elemental_water.png │ │ │ ├── ettercap.png │ │ │ ├── ettin.png │ │ │ ├── fungi_phantom.png │ │ │ ├── gelatinous_cube.png │ │ │ ├── ghast.png │ │ │ ├── ghoul.png │ │ │ ├── gnoll.png │ │ │ ├── goblin.png │ │ │ ├── golem.png │ │ │ ├── gorgon.png │ │ │ ├── grid_bug.png │ │ │ ├── griffon.png │ │ │ ├── griffon_magic.png │ │ │ ├── harpy.png │ │ │ ├── harpy2.png │ │ │ ├── horse_brown.png │ │ │ ├── horse_silver.png │ │ │ ├── horse_spotted.png │ │ │ ├── human.png │ │ │ ├── hydra.png │ │ │ ├── kobold.png │ │ │ ├── lacedon.png │ │ │ ├── lich.png │ │ │ ├── lizard.png │ │ │ ├── lizardfolk.png │ │ │ ├── medusa.png │ │ │ ├── mephit.png │ │ │ ├── minotaur.png │ │ │ ├── mummy.png │ │ │ ├── nightshade.png │ │ │ ├── npc │ │ │ │ ├── drow_fighter.png │ │ │ │ ├── drow_mage.png │ │ │ │ ├── drow_priest.png │ │ │ │ ├── drow_sorcerer.png │ │ │ │ ├── dwarf_fighter.png │ │ │ │ ├── dwarf_mage.png │ │ │ │ ├── dwarf_priest.png │ │ │ │ ├── dwarf_ranger.png │ │ │ │ ├── dwarf_rogue.png │ │ │ │ ├── dwarf_sorcerer.png │ │ │ │ ├── elf_rogue.png │ │ │ │ ├── gnome_fighter.png │ │ │ │ ├── gnome_priest.png │ │ │ │ ├── gnome_rogue.png │ │ │ │ ├── gnome_sorcerer.png │ │ │ │ ├── halfelf_mage.png │ │ │ │ ├── halfelf_priest.png │ │ │ │ ├── halfelf_rogue.png │ │ │ │ ├── halfelf_sorcerer.png │ │ │ │ ├── halfling_fighter.png │ │ │ │ ├── halfling_mage.png │ │ │ │ ├── halfling_priest.png │ │ │ │ ├── halfling_sorcerer.png │ │ │ │ ├── halforc_fighter.png │ │ │ │ ├── halforc_mage.png │ │ │ │ ├── halforc_priest.png │ │ │ │ ├── halforc_ranger.png │ │ │ │ ├── halforc_sorcerer.png │ │ │ │ ├── human_rogue.png │ │ │ │ └── human_sorcerer.png │ │ │ ├── ogre.png │ │ │ ├── ogre_mage.png │ │ │ ├── orc.png │ │ │ ├── phantom_fungi.png │ │ │ ├── player.png │ │ │ ├── player_gnome_mage.png │ │ │ ├── player_halfling_rogue.png │ │ │ ├── player_halforc_rogue.png │ │ │ ├── pseudodragon.png │ │ │ ├── rakshasa.png │ │ │ ├── rat.png │ │ │ ├── ravid.png │ │ │ ├── remorhaz.png │ │ │ ├── roc.png │ │ │ ├── salamander.png │ │ │ ├── satyr.png │ │ │ ├── scorpion.png │ │ │ ├── shadow.png │ │ │ ├── shambling_mound.png │ │ │ ├── shrieker.png │ │ │ ├── skeleton.png │ │ │ ├── skum.png │ │ │ ├── snake.png │ │ │ ├── spider.png │ │ │ ├── stirge.png │ │ │ ├── tojanida.png │ │ │ ├── tortoise.png │ │ │ ├── troll.png │ │ │ ├── troll_scrag.png │ │ │ ├── violet_fungi.png │ │ │ ├── wight.png │ │ │ ├── will-o-wisp.png │ │ │ ├── wolf.png │ │ │ ├── worm.png │ │ │ ├── worm_frost.png │ │ │ ├── worm_grick.png │ │ │ ├── worm_purple.png │ │ │ ├── wraith.png │ │ │ ├── xill.png │ │ │ ├── xorn.png │ │ │ └── yeth_hound.png │ │ │ ├── new │ │ │ ├── aasimar.png │ │ │ ├── acid.png │ │ │ ├── ankheg.png │ │ │ ├── azer.png │ │ │ ├── bag.png │ │ │ ├── blood.png │ │ │ ├── blood_ape.png │ │ │ ├── bolas.png │ │ │ ├── book.png │ │ │ ├── bracers.png │ │ │ ├── bulette.png │ │ │ ├── centaur.png │ │ │ ├── chasm.png │ │ │ ├── cloaker.png │ │ │ ├── cockatrice.png │ │ │ ├── constrictor.png │ │ │ ├── corpse.png │ │ │ ├── darts.png │ │ │ ├── deep_gnome_fighter.png │ │ │ ├── displacer_beast.png │ │ │ ├── door_darkwood.png │ │ │ ├── door_drow.png │ │ │ ├── door_warded.png │ │ │ ├── doubleaxe.png │ │ │ ├── doublesword.png │ │ │ ├── dragon │ │ │ │ ├── dragon_brass_adult.png │ │ │ │ ├── dragon_brass_ancient.png │ │ │ │ ├── dragon_brass_great_wyrm.png │ │ │ │ ├── dragon_brass_wyrm.png │ │ │ │ ├── dragon_brass_wyrmling.png │ │ │ │ ├── dragon_copper_adult.png │ │ │ │ ├── dragon_copper_ancient.png │ │ │ │ ├── dragon_copper_great_wyrm.png │ │ │ │ ├── dragon_copper_wyrm.png │ │ │ │ ├── dragon_copper_wyrmling.png │ │ │ │ ├── dragon_white_adult.png │ │ │ │ ├── dragon_white_ancient.png │ │ │ │ ├── dragon_white_wyrm.png │ │ │ │ └── dragon_white_wyrmling.png │ │ │ ├── drider.png │ │ │ ├── drow_child.png │ │ │ ├── drow_commoner.png │ │ │ ├── drow_courtesan_female.png │ │ │ ├── drow_noble_female.png │ │ │ ├── drow_ranger.png │ │ │ ├── drow_rogue.png │ │ │ ├── drow_shop.png │ │ │ ├── drow_wall.png │ │ │ ├── duergar_fighter.png │ │ │ ├── dungeon tree.png │ │ │ ├── elf_fighter.png │ │ │ ├── elf_mage.png │ │ │ ├── elf_priest.png │ │ │ ├── elf_sorcerer.png │ │ │ ├── elven_cat.png │ │ │ ├── faerie_lantern.png │ │ │ ├── fire_wall.png │ │ │ ├── flask_water.png │ │ │ ├── floor_cave.png │ │ │ ├── formian.png │ │ │ ├── fountain.png │ │ │ ├── fungi.png │ │ │ ├── gargoyle_gray.png │ │ │ ├── gem.png │ │ │ ├── gem_amber.png │ │ │ ├── gem_amethyst.png │ │ │ ├── gem_aqua.png │ │ │ ├── gem_blood.png │ │ │ ├── gem_blue.png │ │ │ ├── gem_citrine.png │ │ │ ├── gem_clear.png │ │ │ ├── gem_coral.png │ │ │ ├── gem_dark.png │ │ │ ├── gem_emerald.png │ │ │ ├── gem_garnet.png │ │ │ ├── gem_jade.png │ │ │ ├── gem_malachite.png │ │ │ ├── gem_moon.png │ │ │ ├── gem_neg.png │ │ │ ├── gem_orange.png │ │ │ ├── gem_orchid.png │ │ │ ├── gem_rose.png │ │ │ ├── gem_starruby.png │ │ │ ├── gem_topaz.png │ │ │ ├── gem_turquoise.png │ │ │ ├── gnome_mage.png │ │ │ ├── gnome_ranger.png │ │ │ ├── greaves.png │ │ │ ├── grimlock.png │ │ │ ├── halfelf_fighter.png │ │ │ ├── halfelf_ranger.png │ │ │ ├── halfling_ranger.png │ │ │ ├── halfling_rogue.png │ │ │ ├── halforc_rogue.png │ │ │ ├── handwraps.png │ │ │ ├── howler.png │ │ │ ├── human_fighter.png │ │ │ ├── human_mage.png │ │ │ ├── human_priest.png │ │ │ ├── human_shop.png │ │ │ ├── ice_floor.png │ │ │ ├── incubus.png │ │ │ ├── incubus_nowings.png │ │ │ ├── ioun_stone.png │ │ │ ├── javelin.png │ │ │ ├── krenshar.png │ │ │ ├── locathah.png │ │ │ ├── monk_robes.png │ │ │ ├── morningstar.png │ │ │ ├── moss.png │ │ │ ├── note.png │ │ │ ├── nymph.png │ │ │ ├── ochre_jelly.png │ │ │ ├── ooze.png │ │ │ ├── otyugh.png │ │ │ ├── phase_spider.png │ │ │ ├── player │ │ │ │ ├── player_drow_fighter.png │ │ │ │ ├── player_drow_mage.png │ │ │ │ ├── player_drow_priest.png │ │ │ │ ├── player_drow_ranger.png │ │ │ │ ├── player_drow_rogue.png │ │ │ │ ├── player_drow_sorcerer.png │ │ │ │ ├── player_dwarf_fighter.png │ │ │ │ ├── player_dwarf_mage.png │ │ │ │ ├── player_dwarf_priest.png │ │ │ │ ├── player_dwarf_ranger.png │ │ │ │ ├── player_dwarf_rogue.png │ │ │ │ ├── player_dwarf_sorcerer.png │ │ │ │ ├── player_elf_fighter.png │ │ │ │ ├── player_elf_mage.png │ │ │ │ ├── player_elf_priest.png │ │ │ │ ├── player_elf_ranger.png │ │ │ │ ├── player_elf_rogue.png │ │ │ │ ├── player_elf_sorcerer.png │ │ │ │ ├── player_gnome_fighter.png │ │ │ │ ├── player_gnome_priest.png │ │ │ │ ├── player_gnome_ranger.png │ │ │ │ ├── player_gnome_rogue.png │ │ │ │ ├── player_gnome_sorcerer.png │ │ │ │ ├── player_halfelf_fighter.png │ │ │ │ ├── player_halfelf_mage.png │ │ │ │ ├── player_halfelf_priest.png │ │ │ │ ├── player_halfelf_ranger.png │ │ │ │ ├── player_halfelf_rogue.png │ │ │ │ ├── player_halfelf_sorcerer.png │ │ │ │ ├── player_halfling_fighter.png │ │ │ │ ├── player_halfling_mage.png │ │ │ │ ├── player_halfling_ranger.png │ │ │ │ ├── player_halfling_sorcerer.png │ │ │ │ ├── player_halforc_fighter.png │ │ │ │ ├── player_halforc_mage.png │ │ │ │ ├── player_halforc_ranger.png │ │ │ │ ├── player_halforc_sorcerer.png │ │ │ │ ├── player_human_mage.png │ │ │ │ ├── player_human_priest.png │ │ │ │ ├── player_human_ranger.png │ │ │ │ ├── player_human_rogue.png │ │ │ │ └── player_human_sorcerer.png │ │ │ ├── player_drow.png │ │ │ ├── portal_air.png │ │ │ ├── portal_earth.png │ │ │ ├── portal_fire.png │ │ │ ├── portal_water.png │ │ │ ├── raven.png │ │ │ ├── shocker_lizard.png │ │ │ ├── sickle.png │ │ │ ├── succubus.PNG │ │ │ ├── tattoo.png │ │ │ ├── tiefling.png │ │ │ ├── town.png │ │ │ ├── unicorn.png │ │ │ ├── urgrosh.png │ │ │ ├── vargouille.png │ │ │ ├── wall_elven.png │ │ │ ├── wall_warded.png │ │ │ ├── water_wall.png │ │ │ ├── waterskin.png │ │ │ ├── wine_drow.png │ │ │ ├── wine_elven.png │ │ │ ├── worldmap_dungeon.png │ │ │ ├── worldmap_elven.png │ │ │ ├── worldmap_stairs_down.png │ │ │ ├── worldmap_stairs_up.png │ │ │ └── worldmap_warded.png │ │ │ ├── object │ │ │ ├── adamantine_coins.png │ │ │ ├── amulet_health.png │ │ │ ├── amulet_insignia.png │ │ │ ├── amulet_natural.png │ │ │ ├── armor_cord.png │ │ │ ├── armor_leather.png │ │ │ ├── armor_padded.png │ │ │ ├── armor_studded.png │ │ │ ├── arrows.png │ │ │ ├── axe_throwing.png │ │ │ ├── banded_armor.png │ │ │ ├── battleaxe.png │ │ │ ├── beer.png │ │ │ ├── belt.png │ │ │ ├── belt_jewel.png │ │ │ ├── biscuit.png │ │ │ ├── bolts.png │ │ │ ├── bones.png │ │ │ ├── boots.png │ │ │ ├── boots2.png │ │ │ ├── bow_long.png │ │ │ ├── bow_long_composite.png │ │ │ ├── bow_short.png │ │ │ ├── bow_short_composite.png │ │ │ ├── breastplate.png │ │ │ ├── bullets.png │ │ │ ├── chain_armor.png │ │ │ ├── chain_shirt.png │ │ │ ├── circlet.png │ │ │ ├── cloak.png │ │ │ ├── club.png │ │ │ ├── club_metal.png │ │ │ ├── club_spiked.png │ │ │ ├── copper_coins.png │ │ │ ├── crossbow_hand.png │ │ │ ├── crossbow_heavy.png │ │ │ ├── crossbow_light.png │ │ │ ├── crown_golden.png │ │ │ ├── dagger.png │ │ │ ├── dagger_throwing.png │ │ │ ├── elven_armor.png │ │ │ ├── elven_cloak.png │ │ │ ├── flail.png │ │ │ ├── flask.png │ │ │ ├── flavors │ │ │ │ ├── PotionAquamarine.png │ │ │ │ ├── PotionEmerald.png │ │ │ │ ├── PotionEmerald2.png │ │ │ │ ├── PotionLargeGreen.png │ │ │ │ ├── PotionLargeGrey.png │ │ │ │ ├── PotionLargeRose.png │ │ │ │ ├── PotionLargeTan.png │ │ │ │ ├── PotionLargeTan2.png │ │ │ │ ├── PotionLargeViolet.png │ │ │ │ ├── PotionLargeViolet2.png │ │ │ │ ├── PotionLargeYellow.png │ │ │ │ ├── PotionPurple.png │ │ │ │ ├── PotionRed.png │ │ │ │ ├── PotionRoundedDarkGreen.png │ │ │ │ ├── PotionRoundedTopaz.png │ │ │ │ ├── PotionShortBlue.png │ │ │ │ ├── PotionShortBrown.png │ │ │ │ ├── PotionShortGreen.png │ │ │ │ ├── PotionShortOrange.png │ │ │ │ ├── PotionShortPink.png │ │ │ │ ├── PotionShortPurple.png │ │ │ │ ├── PotionShortPurple2.png │ │ │ │ ├── PotionShortRed.png │ │ │ │ ├── PotionShortRose.png │ │ │ │ ├── PotionShortRuby.png │ │ │ │ ├── PotionShortSilver.png │ │ │ │ ├── PotionShortTan.png │ │ │ │ ├── PotionShortTan2.png │ │ │ │ ├── PotionShortViolet.png │ │ │ │ ├── PotionShortYellow.png │ │ │ │ ├── PotionSmallGrey.png │ │ │ │ ├── PotionSmallPurple.png │ │ │ │ ├── PotionSmallTriangularTeal.png │ │ │ │ ├── PotionSquareBlue.png │ │ │ │ ├── PotionTallBlue.png │ │ │ │ ├── PotionTallBlue2.png │ │ │ │ ├── PotionTallBrown.png │ │ │ │ ├── PotionTallGreen.png │ │ │ │ ├── PotionTallGreen2.png │ │ │ │ ├── PotionTallGrey.png │ │ │ │ ├── PotionTallMagenta.png │ │ │ │ ├── PotionTallPurple.png │ │ │ │ ├── PotionTallRed.png │ │ │ │ ├── PotionTallRed2.png │ │ │ │ ├── PotionTallRose.png │ │ │ │ ├── PotionTallRuby.png │ │ │ │ ├── PotionTallSilver.png │ │ │ │ ├── PotionTallSilver2.png │ │ │ │ ├── PotionTallSilver3.png │ │ │ │ ├── PotionTallSilver4.png │ │ │ │ ├── PotionTallTan.png │ │ │ │ ├── PotionTallWhite.png │ │ │ │ ├── PotionTallYellow.png │ │ │ │ ├── PotionTallYellow2.png │ │ │ │ ├── PotionTallYellow3.png │ │ │ │ ├── PotionTinyBrown.png │ │ │ │ ├── PotionTriangularGrey.png │ │ │ │ ├── PotionTriangularRuby.png │ │ │ │ ├── PotionTriangularYellow.png │ │ │ │ ├── scroll_aid.png │ │ │ │ ├── scroll_bless.png │ │ │ │ ├── scroll_confusion.png │ │ │ │ ├── scroll_curse1.png │ │ │ │ ├── scroll_detect1.png │ │ │ │ ├── scroll_detect2.png │ │ │ │ ├── scroll_detect_monsters.png │ │ │ │ ├── scroll_door.png │ │ │ │ ├── scroll_food.png │ │ │ │ ├── scroll_holy.png │ │ │ │ ├── scroll_holy_word.png │ │ │ │ ├── scroll_invisible.png │ │ │ │ ├── scroll_magic_weapon.png │ │ │ │ ├── scroll_map.png │ │ │ │ ├── scroll_necro.png │ │ │ │ ├── scroll_protect_undead.png │ │ │ │ ├── scroll_recall.png │ │ │ │ ├── scroll_star.png │ │ │ │ ├── scroll_strength.png │ │ │ │ ├── scroll_summon.png │ │ │ │ ├── scroll_sun.png │ │ │ │ ├── scroll_teleport.png │ │ │ │ ├── scroll_trap_detect.png │ │ │ │ ├── scroll_treasure.png │ │ │ │ └── scroll_undead.png │ │ │ ├── food.png │ │ │ ├── full_plate.png │ │ │ ├── gauntlets.png │ │ │ ├── gauntlets2.png │ │ │ ├── glaive.png │ │ │ ├── gloves.png │ │ │ ├── gold_coins.png │ │ │ ├── greataxe.png │ │ │ ├── greatsword.png │ │ │ ├── gythka.png │ │ │ ├── halberd.png │ │ │ ├── hammer.png │ │ │ ├── handaxe.png │ │ │ ├── helmet_metal.png │ │ │ ├── kit.png │ │ │ ├── kukri.png │ │ │ ├── lance.png │ │ │ ├── lantern.png │ │ │ ├── lantern_everlasting.png │ │ │ ├── longsword.png │ │ │ ├── mace.png │ │ │ ├── meat.png │ │ │ ├── meat_ration.png │ │ │ ├── mushroom_yellow.png │ │ │ ├── pickaxe.png │ │ │ ├── plate_armor.png │ │ │ ├── platinum_coins.png │ │ │ ├── poison_vial.png │ │ │ ├── potion.png │ │ │ ├── rags.png │ │ │ ├── rapier.png │ │ │ ├── red_jewels.png │ │ │ ├── ring.png │ │ │ ├── ring_signet.png │ │ │ ├── ring_signet3.png │ │ │ ├── robes.png │ │ │ ├── robes2.png │ │ │ ├── rod.png │ │ │ ├── scale_armor.png │ │ │ ├── scimitar.png │ │ │ ├── scroll.png │ │ │ ├── scythe.png │ │ │ ├── shield_buckler.png │ │ │ ├── shield_heavy_steel.png │ │ │ ├── shield_heavy_wooden.png │ │ │ ├── shield_light_steel.png │ │ │ ├── shield_light_wooden.png │ │ │ ├── shield_tower.png │ │ │ ├── shortsword.png │ │ │ ├── shuriken.png │ │ │ ├── silver_coins.png │ │ │ ├── sling.png │ │ │ ├── spear.png │ │ │ ├── spiked_chain.png │ │ │ ├── staff.png │ │ │ ├── torch.png │ │ │ ├── trident.png │ │ │ ├── wand.png │ │ │ ├── wand2.png │ │ │ ├── warhammer.png │ │ │ ├── whip.png │ │ │ └── wine.png │ │ │ ├── player │ │ │ ├── default │ │ │ │ ├── axe_double.png │ │ │ │ ├── banded.png │ │ │ │ ├── banded2.png │ │ │ │ ├── bow.png │ │ │ │ ├── bow_composite.png │ │ │ │ ├── bow_long.png │ │ │ │ ├── cap_black1.png │ │ │ │ ├── chainmail.png │ │ │ │ ├── chainmail3.png │ │ │ │ ├── cloak_green.png │ │ │ │ ├── club_left.png │ │ │ │ ├── club_right.png │ │ │ │ ├── crossbow.png │ │ │ │ ├── crossbow_hand.png │ │ │ │ ├── dagger_left.png │ │ │ │ ├── dagger_right.png │ │ │ │ ├── falchion.png │ │ │ │ ├── flail_ball.png │ │ │ │ ├── flail_ball2.png │ │ │ │ ├── flail_spike.png │ │ │ │ ├── gauntlet_blue.png │ │ │ │ ├── glove_brown.png │ │ │ │ ├── glove_red.png │ │ │ │ ├── great_sword.png │ │ │ │ ├── greataxe.png │ │ │ │ ├── greatclub.png │ │ │ │ ├── halberd.png │ │ │ │ ├── half_plate.png │ │ │ │ ├── half_plate2.png │ │ │ │ ├── half_plate3.png │ │ │ │ ├── hammer_left.png │ │ │ │ ├── hammer_right.png │ │ │ │ ├── hand_axe_left.png │ │ │ │ ├── hand_axe_right.png │ │ │ │ ├── helm_plume.png │ │ │ │ ├── katana_left.png │ │ │ │ ├── katana_right.png │ │ │ │ ├── kukri_left.png │ │ │ │ ├── kukri_right.png │ │ │ │ ├── lance.png │ │ │ │ ├── lance2.png │ │ │ │ ├── leather_armour.png │ │ │ │ ├── leather_armour2.png │ │ │ │ ├── leather_armour3.png │ │ │ │ ├── leather_green.png │ │ │ │ ├── leg_armor01.png │ │ │ │ ├── leg_armor02.png │ │ │ │ ├── leg_armor03.png │ │ │ │ ├── leg_armor04.png │ │ │ │ ├── long_sword_left.png │ │ │ │ ├── long_sword_right.png │ │ │ │ ├── mace2_left.png │ │ │ │ ├── mace2_right.png │ │ │ │ ├── mace3_left.png │ │ │ │ ├── mace3_right.png │ │ │ │ ├── mace_left.png │ │ │ │ ├── mace_right.png │ │ │ │ ├── middle_brown.png │ │ │ │ ├── middle_brown2.png │ │ │ │ ├── middle_brown3.png │ │ │ │ ├── middle_gold.png │ │ │ │ ├── monk_black.png │ │ │ │ ├── monk_blue.png │ │ │ │ ├── morningstar_left.png │ │ │ │ ├── morningstar_right.png │ │ │ │ ├── pants_l_white.png │ │ │ │ ├── pants_short_darkbrown.png │ │ │ │ ├── plate.png │ │ │ │ ├── rapier_left.png │ │ │ │ ├── rapier_right.png │ │ │ │ ├── readme.txt │ │ │ │ ├── robe_black_gold.png │ │ │ │ ├── robe_brown.png │ │ │ │ ├── robe_green.png │ │ │ │ ├── robe_green_gold.png │ │ │ │ ├── robe_red.png │ │ │ │ ├── robe_yellow.png │ │ │ │ ├── robes.png │ │ │ │ ├── scalemail.png │ │ │ │ ├── scalemail2.png │ │ │ │ ├── scimitar_left.png │ │ │ │ ├── scimitar_right.png │ │ │ │ ├── scythe.png │ │ │ │ ├── shadow.png │ │ │ │ ├── shield_kite2.png │ │ │ │ ├── shield_round1.png │ │ │ │ ├── shield_round2.png │ │ │ │ ├── shield_round3.png │ │ │ │ ├── short_sword_left.png │ │ │ │ ├── short_sword_right.png │ │ │ │ ├── sickle.png │ │ │ │ ├── sling.png │ │ │ │ ├── spear1.png │ │ │ │ ├── staff_mage.png │ │ │ │ ├── staff_plain.png │ │ │ │ ├── trident.png │ │ │ │ ├── war_axe_left.png │ │ │ │ ├── war_axe_right.png │ │ │ │ ├── whip_left.png │ │ │ │ └── whip_right.png │ │ │ └── racial_dolls │ │ │ │ ├── deep_dwarf_f.png │ │ │ │ ├── deep_dwarf_m.png │ │ │ │ ├── drow_f.png │ │ │ │ ├── drow_m.png │ │ │ │ ├── dwarf_f.png │ │ │ │ ├── dwarf_m.png │ │ │ │ ├── elf_f.png │ │ │ │ ├── elf_m.png │ │ │ │ ├── gnome_f.png │ │ │ │ ├── gnome_m.png │ │ │ │ ├── halfling_f.png │ │ │ │ ├── halfling_m.png │ │ │ │ ├── human_f.png │ │ │ │ ├── human_m.png │ │ │ │ ├── kobold_f.png │ │ │ │ ├── kobold_m.png │ │ │ │ ├── lizardfolk_f.png │ │ │ │ ├── lizardfolk_m.png │ │ │ │ ├── orc_f.png │ │ │ │ └── orc_m.png │ │ │ └── terrain │ │ │ ├── altar.png │ │ │ ├── bed.png │ │ │ ├── chest.png │ │ │ ├── deep_water.png │ │ │ ├── door.png │ │ │ ├── door_barred.png │ │ │ ├── door_opened.png │ │ │ ├── entrance.png │ │ │ ├── floor.png │ │ │ ├── floor_black.png │ │ │ ├── floor_bright.png │ │ │ ├── floor_building.png │ │ │ ├── floor_dark.png │ │ │ ├── floor_elven.png │ │ │ ├── floor_tiled.png │ │ │ ├── gate_closed.png │ │ │ ├── grass.png │ │ │ ├── lava.png │ │ │ ├── limestone.png │ │ │ ├── marble.png │ │ │ ├── marble_gate.png │ │ │ ├── mountain.png │ │ │ ├── shaft_down.png │ │ │ ├── shaft_up.png │ │ │ ├── stairs_down.png │ │ │ ├── stairs_up.png │ │ │ ├── table.png │ │ │ ├── veins.png │ │ │ ├── wall.png │ │ │ ├── wall_noble.png │ │ │ ├── water.png │ │ │ ├── white_cobbles.png │ │ │ ├── worldmap_ruins.png │ │ │ └── worldmap_wall.png │ ├── metal-ui │ │ └── equipdoll │ │ │ ├── ammo_inv.png │ │ │ ├── amulet_inv.png │ │ │ ├── armor_inv.png │ │ │ ├── arms_inv.png │ │ │ ├── belt_inv.png │ │ │ ├── boots_inv.png │ │ │ ├── cloak_inv.png │ │ │ ├── gloves_inv.png │ │ │ ├── head_inv.png │ │ │ ├── legs_inv.png │ │ │ ├── light_inv.png │ │ │ ├── mainhand_inv.png │ │ │ ├── offhand_inv.png │ │ │ ├── ring_inv.png │ │ │ ├── shoulder_inv.png │ │ │ └── tool_inv.png │ ├── particles │ │ ├── acid.lua │ │ ├── archery.lua │ │ ├── bleeding.lua │ │ ├── blood.lua │ │ ├── blood_trail.lua │ │ ├── chaos.lua │ │ ├── evil.lua │ │ ├── faerie.lua │ │ ├── fire.lua │ │ ├── fire2.lua │ │ ├── flames.lua │ │ ├── good.lua │ │ ├── hotkey_feedback.lua │ │ ├── law.lua │ │ ├── magic.lua │ │ ├── melee_attack.lua │ │ ├── neutral.lua │ │ ├── poison.lua │ │ ├── poisoned.lua │ │ ├── shadow_zone.lua │ │ └── starfield.lua │ ├── particles_images │ │ └── attack.png │ ├── portraits │ │ ├── base.png │ │ ├── base_drow.png │ │ ├── base_halfdrow.png │ │ ├── earring_square.png │ │ ├── earrings_square.png │ │ ├── eyebrows.png │ │ ├── eyebrows_drow.png │ │ ├── eyes_amber.png │ │ ├── eyes_black.png │ │ ├── eyes_blue.png │ │ ├── eyes_brown.png │ │ ├── eyes_gray.png │ │ ├── eyes_green.png │ │ ├── eyes_pink.png │ │ ├── eyes_red.png │ │ ├── eyes_seablue.png │ │ ├── eyes_seagreen.png │ │ ├── eyes_yellow.png │ │ ├── mouth.png │ │ ├── mouth2.png │ │ ├── necklace.png │ │ ├── nose.png │ │ ├── note.txt │ │ └── ozy │ │ │ ├── armor.png │ │ │ ├── background.png │ │ │ ├── base_hood.png │ │ │ ├── beard_black.png │ │ │ ├── beard_black2.png │ │ │ ├── beard_black3.png │ │ │ ├── beard_brown.png │ │ │ ├── beard_gray.png │ │ │ ├── beard_red.png │ │ │ ├── beard_white.png │ │ │ ├── cape.png │ │ │ ├── drow_eyebrows.png │ │ │ ├── drow_hair1.png │ │ │ ├── drow_hair2.png │ │ │ ├── drow_hair3.png │ │ │ ├── drow_hair4.png │ │ │ ├── drow_hood.png │ │ │ ├── drow_mouth.png │ │ │ ├── drow_mouth2.png │ │ │ ├── dwarf_base.png │ │ │ ├── dwarf_base2.png │ │ │ ├── dwarf_beard_black.png │ │ │ ├── dwarf_beard_brown.png │ │ │ ├── dwarf_beard_brown2.png │ │ │ ├── dwarf_beard_gray.png │ │ │ ├── dwarf_beard_white.png │ │ │ ├── dwarf_helmet.png │ │ │ ├── dwarf_moustache.png │ │ │ ├── dwarf_moustache2.png │ │ │ ├── dwarf_mouth.png │ │ │ ├── dwarf_mouth2.png │ │ │ ├── dwarf_nose.png │ │ │ ├── dwarf_nose2.png │ │ │ ├── dwarf_scars.png │ │ │ ├── eyebrows_black.png │ │ │ ├── eyebrows_black2.png │ │ │ ├── eyebrows_brown.png │ │ │ ├── eyebrows_gray.png │ │ │ ├── eyebrows_red.png │ │ │ ├── eyebrows_white.png │ │ │ ├── eyepatch.png │ │ │ ├── eyes_dwarf1.png │ │ │ ├── eyes_dwarf2.png │ │ │ ├── eyes_dwarf3.png │ │ │ ├── eyes_dwarf4.png │ │ │ ├── eyes_gnome.png │ │ │ ├── eyes_gnome2.png │ │ │ ├── eyes_half_fiend.png │ │ │ ├── eyes_slate.png │ │ │ ├── glasses1.png │ │ │ ├── glasses2.png │ │ │ ├── hair_black.png │ │ │ ├── hair_black2.png │ │ │ ├── hair_brown.png │ │ │ ├── hair_gray.png │ │ │ ├── hair_red.png │ │ │ ├── hair_white.png │ │ │ ├── hair_white2.png │ │ │ ├── noble_outfit.png │ │ │ ├── outfit_black.png │ │ │ ├── outfit_blue.png │ │ │ ├── outfit_pink.png │ │ │ └── robes.png │ ├── shaders │ │ ├── actoroutline.lua │ │ ├── circular_flames.frag │ │ ├── circular_flames.lua │ │ ├── cloud_anim.frag │ │ ├── cloud_anim.lua │ │ ├── cloud_anim.vert │ │ ├── distort.frag │ │ ├── distort.lua │ │ ├── dual_hue.frag │ │ ├── dual_hue.lua │ │ ├── fireball.frag │ │ ├── fireball.lua │ │ ├── fireboom.frag │ │ ├── fireboom.lua │ │ ├── flamehands.frag │ │ ├── flamehands.lua │ │ ├── flames.lua │ │ ├── flamewings.frag │ │ ├── flamewings.lua │ │ ├── full_fbo tome.frag │ │ ├── full_fbo.frag │ │ ├── full_fbo.lua │ │ ├── full_fbo_gatecrashers.frag │ │ ├── funky_bubbles.frag │ │ ├── funky_bubbles.lua │ │ ├── healing.frag │ │ ├── healing.lua │ │ ├── invis_edge.frag │ │ ├── invis_edge.lua │ │ ├── lava.frag │ │ ├── lava.lua │ │ ├── lightning.frag │ │ ├── lightning.lua │ │ ├── lightningshield.frag │ │ ├── lightningshield.lua │ │ ├── main_fbo.frag │ │ ├── main_fbo.lua │ │ ├── mm_fbo.frag │ │ ├── mm_fbo.lua │ │ ├── moving_transparency.frag │ │ ├── moving_transparency.lua │ │ ├── objectsoutline.frag │ │ ├── objectsoutline.lua │ │ ├── plasma.frag │ │ ├── poison_water.lua │ │ ├── quad_hue.frag │ │ ├── quad_hue.lua │ │ ├── resources.frag │ │ ├── resources.lua │ │ ├── resources.vert │ │ ├── resources2.frag │ │ ├── resources2.lua │ │ ├── runicshield.frag │ │ ├── runicshield.lua │ │ ├── shadow_simulacrum.frag │ │ ├── shadow_simulacrum.lua │ │ ├── shadowfire.frag │ │ ├── shadowfire.lua │ │ ├── shield.frag │ │ ├── shield.lua │ │ ├── shockwave.frag │ │ ├── shockwave.lua │ │ ├── space_turbulence.frag │ │ ├── space_turbulence.lua │ │ ├── sparks.frag │ │ ├── sparks.lua │ │ ├── spinningwinds.frag │ │ ├── spinningwinds.lua │ │ ├── spinningwinds2.frag │ │ ├── spinningwinds2.lua │ │ ├── starfield.frag │ │ ├── starfield.lua │ │ ├── stone.frag │ │ ├── stone.lua │ │ ├── sun.frag │ │ ├── sun.lua │ │ ├── sunaura.frag │ │ ├── sunaura.lua │ │ ├── target_fbo.frag │ │ ├── target_fbo.lua │ │ ├── test.frag │ │ ├── test.lua │ │ ├── textoutline.frag │ │ ├── textoutline.lua │ │ ├── unique_glow.frag │ │ ├── unique_glow.lua │ │ ├── water.frag │ │ ├── water.lua │ │ ├── water_ocean.lua │ │ ├── weather_vapours.frag │ │ └── weather_vapours.lua │ ├── svg │ │ ├── acid_splash.svg │ │ ├── alter_self.svg │ │ ├── animal_empathy.svg │ │ ├── arcane_missiles.svg │ │ ├── attack.svg │ │ ├── bardic_music.svg │ │ ├── bear_endurance.svg │ │ ├── blind.svg │ │ ├── brew_potion.svg │ │ ├── bull_strength.svg │ │ ├── burning_hands.svg │ │ ├── cat_grace.svg │ │ ├── cause_fear.svg │ │ ├── charm_animal.svg │ │ ├── charm_person.svg │ │ ├── climb.svg │ │ ├── combat_expertise.svg │ │ ├── craft.svg │ │ ├── craft_arms_and_armor.svg │ │ ├── craft_wand.svg │ │ ├── create_food_and_water.svg │ │ ├── cure_light_wounds.svg │ │ ├── darkness.svg │ │ ├── deathwatch.svg │ │ ├── default.svg │ │ ├── delay_poison.svg │ │ ├── detect_chaos.svg │ │ ├── detect_evil.svg │ │ ├── detect_good.svg │ │ ├── detect_law.svg │ │ ├── detect_magic.svg │ │ ├── detect_poison.svg │ │ ├── dimension_door.svg │ │ ├── diplomacy.svg │ │ ├── divine_favor.svg │ │ ├── doom.svg │ │ ├── eagle_splendor.svg │ │ ├── empower.svg │ │ ├── endure_elements.svg │ │ ├── entangle.svg │ │ ├── entropic_shield.svg │ │ ├── expeditious_retreat.svg │ │ ├── faerie_fire.svg │ │ ├── fireball.svg │ │ ├── fly.svg │ │ ├── fox_cunning.svg │ │ ├── ghoul_touch.svg │ │ ├── grease.svg │ │ ├── haste.svg │ │ ├── heal_light_wounds.svg │ │ ├── identify.svg │ │ ├── ignizzar_fire.svg │ │ ├── inflict_light_wounds.svg │ │ ├── interact.svg │ │ ├── intimidate.svg │ │ ├── intuition.svg │ │ ├── invisible.svg │ │ ├── jump.svg │ │ ├── lay_on_hands.svg │ │ ├── levitate.svg │ │ ├── light.svg │ │ ├── longstrider.svg │ │ ├── mage_armor.svg │ │ ├── magic_mapping.svg │ │ ├── minotaur.svg │ │ ├── mount.svg │ │ ├── mount_spell.svg │ │ ├── one-eyed.svg │ │ ├── owl_wisdom.svg │ │ ├── pick_pockets.svg │ │ ├── prayer.svg │ │ ├── protection_from_alignment.svg │ │ ├── protection_from_energy.svg │ │ ├── rage.svg │ │ ├── resist_energy.svg │ │ ├── scribe_scroll.svg │ │ ├── self-resurrection.svg │ │ ├── shield.svg │ │ ├── shield_of_faith.svg │ │ ├── shoot.svg │ │ ├── skills.svg │ │ ├── sleep.svg │ │ ├── special.svg │ │ ├── spell_combat.svg │ │ ├── spellbook.svg │ │ ├── spells.svg │ │ ├── spontanous_conversion.svg │ │ ├── stoneskin.svg │ │ ├── stunning_fist.svg │ │ ├── summon_creature_i.svg │ │ ├── summon_creature_ii.svg │ │ ├── summon_mount.svg │ │ ├── throw_potion.svg │ │ ├── track.svg │ │ ├── trident.svg │ │ ├── true_strike.svg │ │ ├── turn_undead.svg │ │ └── wild_shape.svg │ ├── talents │ │ ├── acid_splash.png │ │ ├── alter_self.png │ │ ├── animal_empathy.png │ │ ├── attack.png │ │ ├── bardic_music.png │ │ ├── bear_endurance.png │ │ ├── blindness_deafness.png │ │ ├── brew_potion.png │ │ ├── bull_strength.png │ │ ├── burning_hands.png │ │ ├── cat_grace.png │ │ ├── cause_fear.png │ │ ├── charm_animal.png │ │ ├── charm_person.png │ │ ├── climb.png │ │ ├── combat_expertise.png │ │ ├── craft.png │ │ ├── craft_arms_and_armor.png │ │ ├── craft_wand.png │ │ ├── create_food_and_water.png │ │ ├── cure_light_wounds.png │ │ ├── darkness.png │ │ ├── deathwatch.png │ │ ├── default.png │ │ ├── delay_poison.png │ │ ├── detect_chaos.png │ │ ├── detect_evil.png │ │ ├── detect_good.png │ │ ├── detect_law.png │ │ ├── detect_magic.png │ │ ├── detect_poison.png │ │ ├── dig.png │ │ ├── dimension_door.png │ │ ├── diplomacy.png │ │ ├── divine_favor.png │ │ ├── doom.png │ │ ├── eagle_splendor.png │ │ ├── empower.png │ │ ├── endure_elements.png │ │ ├── entangle.png │ │ ├── entropic_shield.png │ │ ├── expeditious_retreat.png │ │ ├── faerie_fire.png │ │ ├── fireball.png │ │ ├── fly.png │ │ ├── fox_cunning.png │ │ ├── ghoul_touch.png │ │ ├── grease.png │ │ ├── haste.png │ │ ├── heal_light_wounds.png │ │ ├── identify.png │ │ ├── ignizzar_fire.png │ │ ├── improved_invisibility.png │ │ ├── inflict_light_wounds.png │ │ ├── interact.png │ │ ├── intimidate.png │ │ ├── intuition.png │ │ ├── invisibility.png │ │ ├── jump.png │ │ ├── lay_on_hands.png │ │ ├── levitate.png │ │ ├── light.png │ │ ├── longstrider.png │ │ ├── mage_armor.png │ │ ├── magic_mapping.png │ │ ├── magic_missile.png │ │ ├── mount.png │ │ ├── mount_spell.png │ │ ├── owl_wisdom.png │ │ ├── pick_pockets.png │ │ ├── power_attack.png │ │ ├── prayer.png │ │ ├── protection_from_alignment.png │ │ ├── protection_from_energy.png │ │ ├── rage.png │ │ ├── resist_energy.png │ │ ├── scribe_scroll.png │ │ ├── self-resurrection.png │ │ ├── shield.png │ │ ├── shield_of_faith.png │ │ ├── shoot.png │ │ ├── skills.png │ │ ├── sleep.png │ │ ├── special.png │ │ ├── spell_combat.png │ │ ├── spellbook.png │ │ ├── spells.png │ │ ├── spontanous_conversion.png │ │ ├── stealth.png │ │ ├── stoneskin.png │ │ ├── stunning_fist.png │ │ ├── summon_creature_i.png │ │ ├── summon_creature_ii.png │ │ ├── summon_mount.png │ │ ├── throw_potion.png │ │ ├── track.png │ │ ├── trident.png │ │ ├── true_strike.png │ │ ├── turn_undead.png │ │ └── wild_shape.png │ ├── tweaked_simple-ui │ │ ├── border_hor_left.png │ │ ├── border_hor_middle.png │ │ ├── border_hor_right.png │ │ ├── border_vert_bottom.png │ │ ├── border_vert_middle.png │ │ ├── border_vert_top.png │ │ ├── button1.png │ │ ├── button2.png │ │ ├── button3.png │ │ ├── button4.png │ │ ├── button5.png │ │ ├── button6.png │ │ ├── button7.png │ │ ├── button8.png │ │ ├── button9.png │ │ ├── button_sel1.png │ │ ├── button_sel2.png │ │ ├── button_sel3.png │ │ ├── button_sel4.png │ │ ├── button_sel5.png │ │ ├── button_sel6.png │ │ ├── button_sel7.png │ │ ├── button_sel8.png │ │ ├── button_sel9.png │ │ ├── checkbox-ok.png │ │ ├── checkbox.png │ │ ├── dialogframe_1.png │ │ ├── dialogframe_2.png │ │ ├── dialogframe_3.png │ │ ├── dialogframe_4.png │ │ ├── dialogframe_5.png │ │ ├── dialogframe_6.png │ │ ├── dialogframe_7.png │ │ ├── dialogframe_8.png │ │ ├── dialogframe_9.png │ │ ├── heading-sel1.png │ │ ├── heading-sel2.png │ │ ├── heading-sel3.png │ │ ├── heading-sel4.png │ │ ├── heading-sel5.png │ │ ├── heading-sel6.png │ │ ├── heading-sel7.png │ │ ├── heading-sel8.png │ │ ├── heading-sel9.png │ │ ├── heading1.png │ │ ├── heading2.png │ │ ├── heading3.png │ │ ├── heading4.png │ │ ├── heading5.png │ │ ├── heading6.png │ │ ├── heading7.png │ │ ├── heading8.png │ │ ├── heading9.png │ │ ├── minus.png │ │ ├── plus.png │ │ ├── scrollbar-sel.png │ │ ├── scrollbar.png │ │ ├── scrollbar_bottom.png │ │ ├── scrollbar_top.png │ │ ├── selector-sel1.png │ │ ├── selector-sel2.png │ │ ├── selector-sel3.png │ │ ├── selector-sel4.png │ │ ├── selector-sel5.png │ │ ├── selector-sel6.png │ │ ├── selector-sel7.png │ │ ├── selector-sel8.png │ │ ├── selector-sel9.png │ │ ├── selector1.png │ │ ├── selector2.png │ │ ├── selector3.png │ │ ├── selector4.png │ │ ├── selector5.png │ │ ├── selector6.png │ │ ├── selector7.png │ │ ├── selector8.png │ │ ├── selector9.png │ │ ├── title_dialogframe_7.png │ │ ├── title_dialogframe_8.png │ │ └── title_dialogframe_9.png │ └── ui │ │ ├── actors-icon.png │ │ ├── charsheet-icon.png │ │ ├── chat-icon.png │ │ ├── inventory-icon.png │ │ ├── levelup.png │ │ ├── log-icon.png │ │ ├── main-menu-icon.png │ │ ├── minimap.png │ │ ├── minimap │ │ ├── back.BMP │ │ └── back.png │ │ ├── move_handle.png │ │ ├── player-display.png │ │ ├── separator-bottom.png │ │ ├── separator-bottom_line_end.png │ │ ├── separator-hori.png │ │ ├── separator-left.png │ │ ├── separator-left_line_end.png │ │ ├── separator-right.png │ │ ├── separator-right_line_end.png │ │ ├── separator-top.png │ │ ├── separator-top_line_end.png │ │ ├── separator-vert.png │ │ ├── talent_frame_divine.png │ │ ├── talents-icon.png │ │ └── talents-list.png ├── keybinds │ └── veins.lua ├── lore │ ├── lore.lua │ ├── misc.lua │ └── stuff.lua ├── maps │ ├── tutorial │ │ └── tutorial1.lua │ ├── vaults │ │ ├── circle.lua │ │ ├── honey_glade.lua │ │ └── quiet.lua │ └── zones │ │ ├── arena.lua │ │ └── bank.lua ├── object_flavors.lua ├── quests │ ├── main_quest.lua │ └── tutorial.lua ├── rooms │ ├── big_moss1.lua │ ├── big_moss2.lua │ ├── chasm1.lua │ ├── chasm2.lua │ ├── chasm3.lua │ ├── chasm4.lua │ ├── circle.lua │ ├── circle2.lua │ ├── circle3.lua │ ├── entry_hells.lua │ ├── forest_clearing.lua │ ├── ice_patch.lua │ ├── ice_patch2.lua │ ├── ice_patch3.lua │ ├── icefilled.lua │ ├── lake.lua │ ├── lake2.lua │ ├── lavafilled_pilar.lua │ ├── lesser_vault.lua │ ├── marble.lua │ ├── marble2.lua │ ├── moss_patch1.lua │ ├── moss_patch2.lua │ ├── moss_pilar1.lua │ ├── moss_pilar2.lua │ ├── moss_pilar3.lua │ ├── pilar.lua │ ├── pilar2.lua │ ├── pilar3.lua │ ├── pilar4.lua │ ├── pilar_stairs.lua │ ├── pilar_stairs2.lua │ ├── pilar_stairs3.lua │ ├── rhomboid.lua │ ├── rhomboid2.lua │ ├── ritual.lua │ ├── ritual2.lua │ ├── simple.lua │ ├── starting_room.lua │ ├── t2 │ │ ├── basic.lua │ │ └── circular.lua │ ├── temple.lua │ ├── treasure_room.lua │ ├── veins.lua │ ├── waterfilled.lua │ ├── waterfilled2.lua │ ├── waterfilled3.lua │ ├── waterfilled4.lua │ ├── waterfilled_half.lua │ ├── waterfilled_half2.lua │ └── waterfilled_pilar.lua ├── skills.lua ├── talents.lua ├── talents │ ├── class features │ │ ├── barbarian.lua │ │ ├── bard.lua │ │ ├── cleric.lua │ │ ├── druid.lua │ │ ├── eldritch.lua │ │ ├── magus.lua │ │ ├── monk.lua │ │ ├── paladin.lua │ │ └── ranger.lua │ ├── domains │ │ ├── blood.lua │ │ ├── domains.lua │ │ ├── good.lua │ │ └── nature.lua │ ├── feats │ │ ├── attribute_enhancers.lua │ │ ├── combat.lua │ │ ├── combat_passive.lua │ │ ├── feats.lua │ │ ├── focus.lua │ │ ├── item_creation.lua │ │ ├── metamagic.lua │ │ ├── perks.lua │ │ ├── proficiency.lua │ │ ├── racial.lua │ │ ├── reserve.lua │ │ ├── saves_enhancers.lua │ │ ├── skill_enhancers.lua │ │ ├── spellcasting.lua │ │ └── two_weapons.lua │ ├── menu.lua │ ├── monster.lua │ ├── skills.lua │ ├── special.lua │ └── spells │ │ ├── arcane divine │ │ ├── abjuration.lua │ │ ├── conjuration.lua │ │ ├── divination.lua │ │ ├── necromancy.lua │ │ └── transmutation.lua │ │ ├── arcane.lua │ │ ├── arcane │ │ ├── abjuration.lua │ │ ├── conjuration.lua │ │ ├── divination.lua │ │ ├── enchantment.lua │ │ ├── evocation.lua │ │ ├── illusion.lua │ │ ├── necromancy.lua │ │ └── transmutation.lua │ │ ├── arcane_divine.lua │ │ ├── divine.lua │ │ ├── divine │ │ ├── abjuration.lua │ │ ├── conjuration.lua │ │ ├── divination.lua │ │ ├── enchantment.lua │ │ ├── evocation.lua │ │ ├── necromancy.lua │ │ └── transmutation.lua │ │ ├── innate.lua │ │ └── monster.lua ├── texts │ ├── intro-dark.lua │ ├── intro-main.lua │ ├── intro-outcast.lua │ └── tutorial │ │ ├── done.lua │ │ ├── levelup.lua │ │ ├── melee.lua │ │ ├── move.lua │ │ ├── objects.lua │ │ ├── quests.lua │ │ ├── ranged.lua │ │ ├── tactics1.lua │ │ ├── talents.lua │ │ └── terrain.lua ├── tilesets │ └── 5x5 │ │ ├── base.lua │ │ ├── basic_rooms.lua │ │ ├── crypt.lua │ │ ├── new_rooms.lua │ │ ├── tunnel.lua │ │ └── windy_tunnel.lua ├── timed_effects.lua ├── timed_effects │ ├── basic.lua │ ├── physical.lua │ ├── poisons.lua │ ├── shapechange.lua │ ├── special.lua │ └── spells.lua └── zones │ ├── aberrant lair │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── arena │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── bank │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── brothel │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── cave grove │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── compound │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── drow city │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── drow metropolis │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── drow outpost │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── drow temple │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── drow village │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── elven outpost │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── encounters │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── flooded cave │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── fungi forest │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── fungi maze │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── goblin barracks │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── inn │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── jungle tunnels │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── kobold warrens │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── labirynth │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── lava cavern │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── moss cavern │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── noble-compound │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── overmap │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── plane of air │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── plane of earth │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── plane of fire │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── plane of water │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── small tunnels │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── rooms │ │ └── lake_test.lua │ ├── traps.lua │ └── zone.lua │ ├── tavern │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── temple │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── thieves guild │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── town │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── tunnels │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── rooms │ │ └── lake_test.lua │ ├── traps.lua │ └── zone.lua │ ├── tutorial │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── wizard tower │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ ├── worldmap │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua │ └── xorn lair │ ├── events.lua │ ├── grids.lua │ ├── npcs.lua │ ├── objects.lua │ ├── traps.lua │ └── zone.lua ├── dialogs ├── Birther.lua ├── BonusFeatDialog.lua ├── CharacterSheet.lua ├── Chat.lua ├── ClassLevelupDialog.lua ├── Credits.lua ├── DeathDialog.lua ├── FeatDialog.lua ├── GameOptions.lua ├── GetChoice.lua ├── GraphicMode.lua ├── Help.lua ├── ItemManager.lua ├── KillCount.lua ├── Legend.lua ├── LevelupDialog.lua ├── LoreInfo.lua ├── LoreList.lua ├── MapMenu.lua ├── MonsterInfo.lua ├── PartyOrder.lua ├── Quit.lua ├── Rules.lua ├── ShowChatLog.lua ├── ShowEquipInven.lua ├── ShowEquipment.lua ├── ShowInventory.lua ├── ShowJournal.lua ├── ShowMap.lua ├── ShowPickupFloor.lua ├── ShowStore.lua ├── SkillDialog.lua ├── SpellBook.lua ├── TalentMenu.lua ├── UseItemDialog.lua ├── UseTalents.lua ├── VictoryDialog.lua ├── debug │ ├── ChangeZone.lua │ ├── CreateItem2.lua │ ├── CreateTerrain.lua │ ├── CreateTrap.lua │ ├── DebugMenu.lua │ ├── EntityTracker.lua │ ├── LevelSpotsTracker.lua │ ├── ObjectTracker.lua │ └── SummonCreature.lua └── ui │ └── TweakedTreeList.lua ├── init.lua ├── load.lua ├── marson.lua ├── resolvers.lua ├── resolvers_npc.lua └── util.lua /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/FEATURES.md -------------------------------------------------------------------------------- /MODDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/MODDING.md -------------------------------------------------------------------------------- /Open Game License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/Open Game License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/README.md -------------------------------------------------------------------------------- /ai/ally.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/ally.lua -------------------------------------------------------------------------------- /ai/new.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/new.lua -------------------------------------------------------------------------------- /ai/party.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/party.lua -------------------------------------------------------------------------------- /ai/simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/simple.lua -------------------------------------------------------------------------------- /ai/summon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/summon.lua -------------------------------------------------------------------------------- /ai/target.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/target.lua -------------------------------------------------------------------------------- /ai/xorn_tunneler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/ai/xorn_tunneler.lua -------------------------------------------------------------------------------- /class/Actor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Actor.lua -------------------------------------------------------------------------------- /class/Ego.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Ego.lua -------------------------------------------------------------------------------- /class/Game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Game.lua -------------------------------------------------------------------------------- /class/GameState.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/GameState.lua -------------------------------------------------------------------------------- /class/Grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Grid.lua -------------------------------------------------------------------------------- /class/HotkeysIconsDisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/HotkeysIconsDisplay.lua -------------------------------------------------------------------------------- /class/MapEffects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/MapEffects.lua -------------------------------------------------------------------------------- /class/NPC.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/NPC.lua -------------------------------------------------------------------------------- /class/NPCEgo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/NPCEgo.lua -------------------------------------------------------------------------------- /class/NameGenerator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/NameGenerator.lua -------------------------------------------------------------------------------- /class/Object.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Object.lua -------------------------------------------------------------------------------- /class/Party.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Party.lua -------------------------------------------------------------------------------- /class/PartyMember.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/PartyMember.lua -------------------------------------------------------------------------------- /class/Player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Player.lua -------------------------------------------------------------------------------- /class/PlayerDisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/PlayerDisplay.lua -------------------------------------------------------------------------------- /class/Projectile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Projectile.lua -------------------------------------------------------------------------------- /class/Store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Store.lua -------------------------------------------------------------------------------- /class/Trap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Trap.lua -------------------------------------------------------------------------------- /class/World.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/World.lua -------------------------------------------------------------------------------- /class/Zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/Zone.lua -------------------------------------------------------------------------------- /class/generator/actor/OnSpots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/actor/OnSpots.lua -------------------------------------------------------------------------------- /class/generator/actor/Random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/actor/Random.lua -------------------------------------------------------------------------------- /class/generator/map/MossyCavern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/map/MossyCavern.lua -------------------------------------------------------------------------------- /class/generator/map/Roomer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/map/Roomer.lua -------------------------------------------------------------------------------- /class/generator/map/RoomsLoader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/map/RoomsLoader.lua -------------------------------------------------------------------------------- /class/generator/map/TownWalled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/map/TownWalled.lua -------------------------------------------------------------------------------- /class/generator/object/OnSpots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/object/OnSpots.lua -------------------------------------------------------------------------------- /class/generator/object/Random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/generator/object/Random.lua -------------------------------------------------------------------------------- /class/interface/ActorLife.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/ActorLife.lua -------------------------------------------------------------------------------- /class/interface/ActorSkills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/ActorSkills.lua -------------------------------------------------------------------------------- /class/interface/ActorSpells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/ActorSpells.lua -------------------------------------------------------------------------------- /class/interface/Combat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/Combat.lua -------------------------------------------------------------------------------- /class/interface/ObjectIdentify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/ObjectIdentify.lua -------------------------------------------------------------------------------- /class/interface/PartyDeath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/PartyDeath.lua -------------------------------------------------------------------------------- /class/interface/PlayerExplore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/PlayerExplore.lua -------------------------------------------------------------------------------- /class/interface/PlayerJournal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/PlayerJournal.lua -------------------------------------------------------------------------------- /class/interface/PlayerLore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/PlayerLore.lua -------------------------------------------------------------------------------- /class/interface/PlayerReligion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/PlayerReligion.lua -------------------------------------------------------------------------------- /class/interface/TooltipsData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/interface/TooltipsData.lua -------------------------------------------------------------------------------- /class/patch/ActorFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/ActorFrame.lua -------------------------------------------------------------------------------- /class/patch/ActorTalentDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/ActorTalentDialog.lua -------------------------------------------------------------------------------- /class/patch/Birther.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/Birther.lua -------------------------------------------------------------------------------- /class/patch/Chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/Chat.lua -------------------------------------------------------------------------------- /class/patch/Dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/Dialog.lua -------------------------------------------------------------------------------- /class/patch/FlyingText.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/FlyingText.lua -------------------------------------------------------------------------------- /class/patch/FontList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/FontList.lua -------------------------------------------------------------------------------- /class/patch/LogFlasher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/LogFlasher.lua -------------------------------------------------------------------------------- /class/patch/ShowInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/ShowInventory.lua -------------------------------------------------------------------------------- /class/patch/Talkbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/Talkbox.lua -------------------------------------------------------------------------------- /class/patch/Tooltip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/Tooltip.lua -------------------------------------------------------------------------------- /class/patch/UserChat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/patch/UserChat.lua -------------------------------------------------------------------------------- /class/uiset/UISet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/uiset/UISet.lua -------------------------------------------------------------------------------- /class/uiset/Veins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/class/uiset/Veins.lua -------------------------------------------------------------------------------- /data/achievements/achievements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/achievements/achievements.lua -------------------------------------------------------------------------------- /data/birth/background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/background.lua -------------------------------------------------------------------------------- /data/birth/casters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/casters.lua -------------------------------------------------------------------------------- /data/birth/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/class.lua -------------------------------------------------------------------------------- /data/birth/deities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/deities.lua -------------------------------------------------------------------------------- /data/birth/descriptors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/descriptors.lua -------------------------------------------------------------------------------- /data/birth/domains.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/domains.lua -------------------------------------------------------------------------------- /data/birth/halfcasters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/halfcasters.lua -------------------------------------------------------------------------------- /data/birth/martial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/martial.lua -------------------------------------------------------------------------------- /data/birth/prestige.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/prestige.lua -------------------------------------------------------------------------------- /data/birth/races.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/birth/races.lua -------------------------------------------------------------------------------- /data/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/calendar.lua -------------------------------------------------------------------------------- /data/chats/banker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/banker.lua -------------------------------------------------------------------------------- /data/chats/female_courtesan.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/female_courtesan.lua -------------------------------------------------------------------------------- /data/chats/healer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/healer.lua -------------------------------------------------------------------------------- /data/chats/hireling.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/hireling.lua -------------------------------------------------------------------------------- /data/chats/innkeeper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/innkeeper.lua -------------------------------------------------------------------------------- /data/chats/male_courtesan.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/male_courtesan.lua -------------------------------------------------------------------------------- /data/chats/sage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/sage.lua -------------------------------------------------------------------------------- /data/chats/shop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/shop.lua -------------------------------------------------------------------------------- /data/chats/trainer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/chats/trainer.lua -------------------------------------------------------------------------------- /data/damage_types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/damage_types.lua -------------------------------------------------------------------------------- /data/factions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/factions.lua -------------------------------------------------------------------------------- /data/font/Augusta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Augusta.ttf -------------------------------------------------------------------------------- /data/font/Blkchcry.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Blkchcry.ttf -------------------------------------------------------------------------------- /data/font/CutiveMono - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/CutiveMono - OFL.txt -------------------------------------------------------------------------------- /data/font/CutiveMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/CutiveMono-Regular.ttf -------------------------------------------------------------------------------- /data/font/Droid-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Droid-LICENSE.txt -------------------------------------------------------------------------------- /data/font/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/DroidSansFallback.ttf -------------------------------------------------------------------------------- /data/font/EagleLake-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/EagleLake-OFL.txt -------------------------------------------------------------------------------- /data/font/EagleLake-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/EagleLake-Regular.ttf -------------------------------------------------------------------------------- /data/font/Grange.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Grange.ttf -------------------------------------------------------------------------------- /data/font/HamletOrNot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/HamletOrNot.ttf -------------------------------------------------------------------------------- /data/font/IMMORTAL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/IMMORTAL.ttf -------------------------------------------------------------------------------- /data/font/Immortal - License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Immortal - License.txt -------------------------------------------------------------------------------- /data/font/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/LICENSE.txt -------------------------------------------------------------------------------- /data/font/MONOFONT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/MONOFONT.ttf -------------------------------------------------------------------------------- /data/font/Nosfer.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Nosfer.ttf -------------------------------------------------------------------------------- /data/font/NotCourierSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/NotCourierSans.ttf -------------------------------------------------------------------------------- /data/font/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /data/font/NovaMono - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/NovaMono - OFL.txt -------------------------------------------------------------------------------- /data/font/NovaMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/NovaMono.ttf -------------------------------------------------------------------------------- /data/font/OxygenMono - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/OxygenMono - OFL.txt -------------------------------------------------------------------------------- /data/font/OxygenMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/OxygenMono-Regular.ttf -------------------------------------------------------------------------------- /data/font/PTM55FT - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/PTM55FT - OFL.txt -------------------------------------------------------------------------------- /data/font/PTM55FT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/PTM55FT.ttf -------------------------------------------------------------------------------- /data/font/SaintAndrewsQueen.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/SaintAndrewsQueen.ttf -------------------------------------------------------------------------------- /data/font/Symbola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Symbola.ttf -------------------------------------------------------------------------------- /data/font/TITUSCBZ.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/TITUSCBZ.TTF -------------------------------------------------------------------------------- /data/font/Tangerine - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Tangerine - OFL.txt -------------------------------------------------------------------------------- /data/font/Tangerine_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/Tangerine_Regular.ttf -------------------------------------------------------------------------------- /data/font/dum1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/dum1.ttf -------------------------------------------------------------------------------- /data/font/dum1thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/dum1thin.ttf -------------------------------------------------------------------------------- /data/font/dum1wide.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/dum1wide.ttf -------------------------------------------------------------------------------- /data/font/monofonto - read_me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/monofonto - read_me.html -------------------------------------------------------------------------------- /data/font/monofur - License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/monofur - License.txt -------------------------------------------------------------------------------- /data/font/monofur55.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/font/monofur55.ttf -------------------------------------------------------------------------------- /data/general/events/noble test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/events/noble test.lua -------------------------------------------------------------------------------- /data/general/events/radiation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/events/radiation.lua -------------------------------------------------------------------------------- /data/general/grids/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/basic.lua -------------------------------------------------------------------------------- /data/general/grids/cavern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/cavern.lua -------------------------------------------------------------------------------- /data/general/grids/drow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/drow.lua -------------------------------------------------------------------------------- /data/general/grids/elemental.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/elemental.lua -------------------------------------------------------------------------------- /data/general/grids/elven.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/elven.lua -------------------------------------------------------------------------------- /data/general/grids/surface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/surface.lua -------------------------------------------------------------------------------- /data/general/grids/tower.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/tower.lua -------------------------------------------------------------------------------- /data/general/grids/town.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/town.lua -------------------------------------------------------------------------------- /data/general/grids/worldmap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/grids/worldmap.lua -------------------------------------------------------------------------------- /data/general/npcs/aberration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/aberration.lua -------------------------------------------------------------------------------- /data/general/npcs/all.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/all.lua -------------------------------------------------------------------------------- /data/general/npcs/animals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/animals.lua -------------------------------------------------------------------------------- /data/general/npcs/animals_druid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/animals_druid.lua -------------------------------------------------------------------------------- /data/general/npcs/animals_other.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/animals_other.lua -------------------------------------------------------------------------------- /data/general/npcs/aquatic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/aquatic.lua -------------------------------------------------------------------------------- /data/general/npcs/construct.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/construct.lua -------------------------------------------------------------------------------- /data/general/npcs/demon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/demon.lua -------------------------------------------------------------------------------- /data/general/npcs/draconic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/draconic.lua -------------------------------------------------------------------------------- /data/general/npcs/elementals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/elementals.lua -------------------------------------------------------------------------------- /data/general/npcs/fey.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/fey.lua -------------------------------------------------------------------------------- /data/general/npcs/giant.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/giant.lua -------------------------------------------------------------------------------- /data/general/npcs/good.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/good.lua -------------------------------------------------------------------------------- /data/general/npcs/humanoid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/humanoid.lua -------------------------------------------------------------------------------- /data/general/npcs/mounts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/mounts.lua -------------------------------------------------------------------------------- /data/general/npcs/neutral.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/neutral.lua -------------------------------------------------------------------------------- /data/general/npcs/ooze.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/ooze.lua -------------------------------------------------------------------------------- /data/general/npcs/outsider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/outsider.lua -------------------------------------------------------------------------------- /data/general/npcs/outsider_air.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/outsider_air.lua -------------------------------------------------------------------------------- /data/general/npcs/outsider_evil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/outsider_evil.lua -------------------------------------------------------------------------------- /data/general/npcs/outsider_fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/outsider_fire.lua -------------------------------------------------------------------------------- /data/general/npcs/outsider_good.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/outsider_good.lua -------------------------------------------------------------------------------- /data/general/npcs/planar_water.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/planar_water.lua -------------------------------------------------------------------------------- /data/general/npcs/plants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/plants.lua -------------------------------------------------------------------------------- /data/general/npcs/townies_drow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/townies_drow.lua -------------------------------------------------------------------------------- /data/general/npcs/townies_elven.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/townies_elven.lua -------------------------------------------------------------------------------- /data/general/npcs/undead.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/undead.lua -------------------------------------------------------------------------------- /data/general/npcs/vermin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/npcs/vermin.lua -------------------------------------------------------------------------------- /data/general/objects/armor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/armor.lua -------------------------------------------------------------------------------- /data/general/objects/containers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/containers.lua -------------------------------------------------------------------------------- /data/general/objects/exotic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/exotic.lua -------------------------------------------------------------------------------- /data/general/objects/gems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/gems.lua -------------------------------------------------------------------------------- /data/general/objects/lite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/lite.lua -------------------------------------------------------------------------------- /data/general/objects/lore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/lore.lua -------------------------------------------------------------------------------- /data/general/objects/money.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/money.lua -------------------------------------------------------------------------------- /data/general/objects/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/objects.lua -------------------------------------------------------------------------------- /data/general/objects/pickaxes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/pickaxes.lua -------------------------------------------------------------------------------- /data/general/objects/poisons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/poisons.lua -------------------------------------------------------------------------------- /data/general/objects/ranged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/ranged.lua -------------------------------------------------------------------------------- /data/general/objects/reach.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/reach.lua -------------------------------------------------------------------------------- /data/general/objects/shields.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/shields.lua -------------------------------------------------------------------------------- /data/general/objects/thrown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/thrown.lua -------------------------------------------------------------------------------- /data/general/objects/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/tools.lua -------------------------------------------------------------------------------- /data/general/objects/weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/objects/weapons.lua -------------------------------------------------------------------------------- /data/general/stores/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/stores/general.lua -------------------------------------------------------------------------------- /data/general/traps/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/traps/general.lua -------------------------------------------------------------------------------- /data/general/traps/magical.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/traps/magical.lua -------------------------------------------------------------------------------- /data/general/traps/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/traps/random.lua -------------------------------------------------------------------------------- /data/general/traps/store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/general/traps/store.lua -------------------------------------------------------------------------------- /data/gfx/background/Veins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/background/Veins.png -------------------------------------------------------------------------------- /data/gfx/background/tome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/background/tome-logo.png -------------------------------------------------------------------------------- /data/gfx/default/attachements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/attachements.lua -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/book.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/hag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/hag.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/hyena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/hyena.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/ice.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/lamia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/lamia.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/mohrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/mohrg.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/mud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/mud.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/naga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/naga.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/sand.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/tiger.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/titan.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/trog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/trog.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/viper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/viper.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/UT/wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/UT/wolf.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/license.txt -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/acid.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/azer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/azer.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/bag.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/book.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/gem.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/moss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/moss.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/note.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/ooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/ooze.png -------------------------------------------------------------------------------- /data/gfx/default/tiles/new/town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/default/tiles/new/town.png -------------------------------------------------------------------------------- /data/gfx/particles/acid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/acid.lua -------------------------------------------------------------------------------- /data/gfx/particles/archery.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/archery.lua -------------------------------------------------------------------------------- /data/gfx/particles/bleeding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/bleeding.lua -------------------------------------------------------------------------------- /data/gfx/particles/blood.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/blood.lua -------------------------------------------------------------------------------- /data/gfx/particles/blood_trail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/blood_trail.lua -------------------------------------------------------------------------------- /data/gfx/particles/chaos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/chaos.lua -------------------------------------------------------------------------------- /data/gfx/particles/evil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/evil.lua -------------------------------------------------------------------------------- /data/gfx/particles/faerie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/faerie.lua -------------------------------------------------------------------------------- /data/gfx/particles/fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/fire.lua -------------------------------------------------------------------------------- /data/gfx/particles/fire2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/fire2.lua -------------------------------------------------------------------------------- /data/gfx/particles/flames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/flames.lua -------------------------------------------------------------------------------- /data/gfx/particles/good.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/good.lua -------------------------------------------------------------------------------- /data/gfx/particles/law.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/law.lua -------------------------------------------------------------------------------- /data/gfx/particles/magic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/magic.lua -------------------------------------------------------------------------------- /data/gfx/particles/melee_attack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/melee_attack.lua -------------------------------------------------------------------------------- /data/gfx/particles/neutral.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/neutral.lua -------------------------------------------------------------------------------- /data/gfx/particles/poison.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/poison.lua -------------------------------------------------------------------------------- /data/gfx/particles/poisoned.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/poisoned.lua -------------------------------------------------------------------------------- /data/gfx/particles/shadow_zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/shadow_zone.lua -------------------------------------------------------------------------------- /data/gfx/particles/starfield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/particles/starfield.lua -------------------------------------------------------------------------------- /data/gfx/portraits/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/base.png -------------------------------------------------------------------------------- /data/gfx/portraits/base_drow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/base_drow.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyebrows.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_amber.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_black.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_blue.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_brown.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_gray.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_green.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_pink.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_red.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_seablue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_seablue.png -------------------------------------------------------------------------------- /data/gfx/portraits/eyes_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/eyes_yellow.png -------------------------------------------------------------------------------- /data/gfx/portraits/mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/mouth.png -------------------------------------------------------------------------------- /data/gfx/portraits/mouth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/mouth2.png -------------------------------------------------------------------------------- /data/gfx/portraits/necklace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/necklace.png -------------------------------------------------------------------------------- /data/gfx/portraits/nose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/nose.png -------------------------------------------------------------------------------- /data/gfx/portraits/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/note.txt -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/armor.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/cape.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/eyepatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/eyepatch.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/glasses1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/glasses1.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/glasses2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/glasses2.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/hair_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/hair_red.png -------------------------------------------------------------------------------- /data/gfx/portraits/ozy/robes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/portraits/ozy/robes.png -------------------------------------------------------------------------------- /data/gfx/shaders/actoroutline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/actoroutline.lua -------------------------------------------------------------------------------- /data/gfx/shaders/cloud_anim.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/cloud_anim.frag -------------------------------------------------------------------------------- /data/gfx/shaders/cloud_anim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/cloud_anim.lua -------------------------------------------------------------------------------- /data/gfx/shaders/cloud_anim.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/cloud_anim.vert -------------------------------------------------------------------------------- /data/gfx/shaders/distort.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/distort.frag -------------------------------------------------------------------------------- /data/gfx/shaders/distort.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/distort.lua -------------------------------------------------------------------------------- /data/gfx/shaders/dual_hue.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/dual_hue.frag -------------------------------------------------------------------------------- /data/gfx/shaders/dual_hue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/dual_hue.lua -------------------------------------------------------------------------------- /data/gfx/shaders/fireball.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/fireball.frag -------------------------------------------------------------------------------- /data/gfx/shaders/fireball.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/fireball.lua -------------------------------------------------------------------------------- /data/gfx/shaders/fireboom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/fireboom.frag -------------------------------------------------------------------------------- /data/gfx/shaders/fireboom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/fireboom.lua -------------------------------------------------------------------------------- /data/gfx/shaders/flamehands.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/flamehands.frag -------------------------------------------------------------------------------- /data/gfx/shaders/flamehands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/flamehands.lua -------------------------------------------------------------------------------- /data/gfx/shaders/flames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/flames.lua -------------------------------------------------------------------------------- /data/gfx/shaders/flamewings.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/flamewings.frag -------------------------------------------------------------------------------- /data/gfx/shaders/flamewings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/flamewings.lua -------------------------------------------------------------------------------- /data/gfx/shaders/full_fbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/full_fbo.frag -------------------------------------------------------------------------------- /data/gfx/shaders/full_fbo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/full_fbo.lua -------------------------------------------------------------------------------- /data/gfx/shaders/healing.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/healing.frag -------------------------------------------------------------------------------- /data/gfx/shaders/healing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/healing.lua -------------------------------------------------------------------------------- /data/gfx/shaders/invis_edge.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/invis_edge.frag -------------------------------------------------------------------------------- /data/gfx/shaders/invis_edge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/invis_edge.lua -------------------------------------------------------------------------------- /data/gfx/shaders/lava.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/lava.frag -------------------------------------------------------------------------------- /data/gfx/shaders/lava.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/lava.lua -------------------------------------------------------------------------------- /data/gfx/shaders/lightning.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/lightning.frag -------------------------------------------------------------------------------- /data/gfx/shaders/lightning.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/lightning.lua -------------------------------------------------------------------------------- /data/gfx/shaders/main_fbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/main_fbo.frag -------------------------------------------------------------------------------- /data/gfx/shaders/main_fbo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/main_fbo.lua -------------------------------------------------------------------------------- /data/gfx/shaders/mm_fbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/mm_fbo.frag -------------------------------------------------------------------------------- /data/gfx/shaders/mm_fbo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/mm_fbo.lua -------------------------------------------------------------------------------- /data/gfx/shaders/plasma.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/plasma.frag -------------------------------------------------------------------------------- /data/gfx/shaders/poison_water.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/poison_water.lua -------------------------------------------------------------------------------- /data/gfx/shaders/quad_hue.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/quad_hue.frag -------------------------------------------------------------------------------- /data/gfx/shaders/quad_hue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/quad_hue.lua -------------------------------------------------------------------------------- /data/gfx/shaders/resources.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/resources.frag -------------------------------------------------------------------------------- /data/gfx/shaders/resources.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/resources.lua -------------------------------------------------------------------------------- /data/gfx/shaders/resources.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/resources.vert -------------------------------------------------------------------------------- /data/gfx/shaders/resources2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/resources2.frag -------------------------------------------------------------------------------- /data/gfx/shaders/resources2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/resources2.lua -------------------------------------------------------------------------------- /data/gfx/shaders/runicshield.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/runicshield.frag -------------------------------------------------------------------------------- /data/gfx/shaders/runicshield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/runicshield.lua -------------------------------------------------------------------------------- /data/gfx/shaders/shadowfire.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shadowfire.frag -------------------------------------------------------------------------------- /data/gfx/shaders/shadowfire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shadowfire.lua -------------------------------------------------------------------------------- /data/gfx/shaders/shield.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shield.frag -------------------------------------------------------------------------------- /data/gfx/shaders/shield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shield.lua -------------------------------------------------------------------------------- /data/gfx/shaders/shockwave.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shockwave.frag -------------------------------------------------------------------------------- /data/gfx/shaders/shockwave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/shockwave.lua -------------------------------------------------------------------------------- /data/gfx/shaders/sparks.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sparks.frag -------------------------------------------------------------------------------- /data/gfx/shaders/sparks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sparks.lua -------------------------------------------------------------------------------- /data/gfx/shaders/starfield.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/starfield.frag -------------------------------------------------------------------------------- /data/gfx/shaders/starfield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/starfield.lua -------------------------------------------------------------------------------- /data/gfx/shaders/stone.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/stone.frag -------------------------------------------------------------------------------- /data/gfx/shaders/stone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/stone.lua -------------------------------------------------------------------------------- /data/gfx/shaders/sun.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sun.frag -------------------------------------------------------------------------------- /data/gfx/shaders/sun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sun.lua -------------------------------------------------------------------------------- /data/gfx/shaders/sunaura.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sunaura.frag -------------------------------------------------------------------------------- /data/gfx/shaders/sunaura.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/sunaura.lua -------------------------------------------------------------------------------- /data/gfx/shaders/target_fbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/target_fbo.frag -------------------------------------------------------------------------------- /data/gfx/shaders/target_fbo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/target_fbo.lua -------------------------------------------------------------------------------- /data/gfx/shaders/test.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/test.frag -------------------------------------------------------------------------------- /data/gfx/shaders/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/test.lua -------------------------------------------------------------------------------- /data/gfx/shaders/textoutline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/textoutline.frag -------------------------------------------------------------------------------- /data/gfx/shaders/textoutline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/textoutline.lua -------------------------------------------------------------------------------- /data/gfx/shaders/unique_glow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/unique_glow.frag -------------------------------------------------------------------------------- /data/gfx/shaders/unique_glow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/unique_glow.lua -------------------------------------------------------------------------------- /data/gfx/shaders/water.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/water.frag -------------------------------------------------------------------------------- /data/gfx/shaders/water.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/water.lua -------------------------------------------------------------------------------- /data/gfx/shaders/water_ocean.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/shaders/water_ocean.lua -------------------------------------------------------------------------------- /data/gfx/svg/acid_splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/acid_splash.svg -------------------------------------------------------------------------------- /data/gfx/svg/alter_self.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/alter_self.svg -------------------------------------------------------------------------------- /data/gfx/svg/animal_empathy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/animal_empathy.svg -------------------------------------------------------------------------------- /data/gfx/svg/arcane_missiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/arcane_missiles.svg -------------------------------------------------------------------------------- /data/gfx/svg/attack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/attack.svg -------------------------------------------------------------------------------- /data/gfx/svg/bardic_music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/bardic_music.svg -------------------------------------------------------------------------------- /data/gfx/svg/bear_endurance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/bear_endurance.svg -------------------------------------------------------------------------------- /data/gfx/svg/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/blind.svg -------------------------------------------------------------------------------- /data/gfx/svg/brew_potion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/brew_potion.svg -------------------------------------------------------------------------------- /data/gfx/svg/bull_strength.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/bull_strength.svg -------------------------------------------------------------------------------- /data/gfx/svg/burning_hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/burning_hands.svg -------------------------------------------------------------------------------- /data/gfx/svg/cat_grace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/cat_grace.svg -------------------------------------------------------------------------------- /data/gfx/svg/cause_fear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/cause_fear.svg -------------------------------------------------------------------------------- /data/gfx/svg/charm_animal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/charm_animal.svg -------------------------------------------------------------------------------- /data/gfx/svg/charm_person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/charm_person.svg -------------------------------------------------------------------------------- /data/gfx/svg/climb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/climb.svg -------------------------------------------------------------------------------- /data/gfx/svg/combat_expertise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/combat_expertise.svg -------------------------------------------------------------------------------- /data/gfx/svg/craft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/craft.svg -------------------------------------------------------------------------------- /data/gfx/svg/craft_wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/craft_wand.svg -------------------------------------------------------------------------------- /data/gfx/svg/darkness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/darkness.svg -------------------------------------------------------------------------------- /data/gfx/svg/deathwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/deathwatch.svg -------------------------------------------------------------------------------- /data/gfx/svg/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/default.svg -------------------------------------------------------------------------------- /data/gfx/svg/delay_poison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/delay_poison.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_chaos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_chaos.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_evil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_evil.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_good.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_good.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_law.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_law.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_magic.svg -------------------------------------------------------------------------------- /data/gfx/svg/detect_poison.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/detect_poison.svg -------------------------------------------------------------------------------- /data/gfx/svg/dimension_door.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/dimension_door.svg -------------------------------------------------------------------------------- /data/gfx/svg/diplomacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/diplomacy.svg -------------------------------------------------------------------------------- /data/gfx/svg/divine_favor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/divine_favor.svg -------------------------------------------------------------------------------- /data/gfx/svg/doom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/doom.svg -------------------------------------------------------------------------------- /data/gfx/svg/eagle_splendor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/eagle_splendor.svg -------------------------------------------------------------------------------- /data/gfx/svg/empower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/empower.svg -------------------------------------------------------------------------------- /data/gfx/svg/endure_elements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/endure_elements.svg -------------------------------------------------------------------------------- /data/gfx/svg/entangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/entangle.svg -------------------------------------------------------------------------------- /data/gfx/svg/entropic_shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/entropic_shield.svg -------------------------------------------------------------------------------- /data/gfx/svg/faerie_fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/faerie_fire.svg -------------------------------------------------------------------------------- /data/gfx/svg/fireball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/fireball.svg -------------------------------------------------------------------------------- /data/gfx/svg/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/fly.svg -------------------------------------------------------------------------------- /data/gfx/svg/fox_cunning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/fox_cunning.svg -------------------------------------------------------------------------------- /data/gfx/svg/ghoul_touch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/ghoul_touch.svg -------------------------------------------------------------------------------- /data/gfx/svg/grease.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/grease.svg -------------------------------------------------------------------------------- /data/gfx/svg/haste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/haste.svg -------------------------------------------------------------------------------- /data/gfx/svg/identify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/identify.svg -------------------------------------------------------------------------------- /data/gfx/svg/ignizzar_fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/ignizzar_fire.svg -------------------------------------------------------------------------------- /data/gfx/svg/interact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/interact.svg -------------------------------------------------------------------------------- /data/gfx/svg/intimidate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/intimidate.svg -------------------------------------------------------------------------------- /data/gfx/svg/intuition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/intuition.svg -------------------------------------------------------------------------------- /data/gfx/svg/invisible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/invisible.svg -------------------------------------------------------------------------------- /data/gfx/svg/jump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/jump.svg -------------------------------------------------------------------------------- /data/gfx/svg/lay_on_hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/lay_on_hands.svg -------------------------------------------------------------------------------- /data/gfx/svg/levitate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/levitate.svg -------------------------------------------------------------------------------- /data/gfx/svg/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/light.svg -------------------------------------------------------------------------------- /data/gfx/svg/longstrider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/longstrider.svg -------------------------------------------------------------------------------- /data/gfx/svg/mage_armor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/mage_armor.svg -------------------------------------------------------------------------------- /data/gfx/svg/magic_mapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/magic_mapping.svg -------------------------------------------------------------------------------- /data/gfx/svg/minotaur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/minotaur.svg -------------------------------------------------------------------------------- /data/gfx/svg/mount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/mount.svg -------------------------------------------------------------------------------- /data/gfx/svg/mount_spell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/mount_spell.svg -------------------------------------------------------------------------------- /data/gfx/svg/one-eyed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/one-eyed.svg -------------------------------------------------------------------------------- /data/gfx/svg/owl_wisdom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/owl_wisdom.svg -------------------------------------------------------------------------------- /data/gfx/svg/pick_pockets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/pick_pockets.svg -------------------------------------------------------------------------------- /data/gfx/svg/prayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/prayer.svg -------------------------------------------------------------------------------- /data/gfx/svg/rage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/rage.svg -------------------------------------------------------------------------------- /data/gfx/svg/resist_energy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/resist_energy.svg -------------------------------------------------------------------------------- /data/gfx/svg/scribe_scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/scribe_scroll.svg -------------------------------------------------------------------------------- /data/gfx/svg/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/shield.svg -------------------------------------------------------------------------------- /data/gfx/svg/shield_of_faith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/shield_of_faith.svg -------------------------------------------------------------------------------- /data/gfx/svg/shoot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/shoot.svg -------------------------------------------------------------------------------- /data/gfx/svg/skills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/skills.svg -------------------------------------------------------------------------------- /data/gfx/svg/sleep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/sleep.svg -------------------------------------------------------------------------------- /data/gfx/svg/special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/special.svg -------------------------------------------------------------------------------- /data/gfx/svg/spell_combat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/spell_combat.svg -------------------------------------------------------------------------------- /data/gfx/svg/spellbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/spellbook.svg -------------------------------------------------------------------------------- /data/gfx/svg/spells.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/spells.svg -------------------------------------------------------------------------------- /data/gfx/svg/stoneskin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/stoneskin.svg -------------------------------------------------------------------------------- /data/gfx/svg/stunning_fist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/stunning_fist.svg -------------------------------------------------------------------------------- /data/gfx/svg/summon_mount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/summon_mount.svg -------------------------------------------------------------------------------- /data/gfx/svg/throw_potion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/throw_potion.svg -------------------------------------------------------------------------------- /data/gfx/svg/track.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/track.svg -------------------------------------------------------------------------------- /data/gfx/svg/trident.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/trident.svg -------------------------------------------------------------------------------- /data/gfx/svg/true_strike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/true_strike.svg -------------------------------------------------------------------------------- /data/gfx/svg/turn_undead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/turn_undead.svg -------------------------------------------------------------------------------- /data/gfx/svg/wild_shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/svg/wild_shape.svg -------------------------------------------------------------------------------- /data/gfx/talents/acid_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/acid_splash.png -------------------------------------------------------------------------------- /data/gfx/talents/alter_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/alter_self.png -------------------------------------------------------------------------------- /data/gfx/talents/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/attack.png -------------------------------------------------------------------------------- /data/gfx/talents/bardic_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/bardic_music.png -------------------------------------------------------------------------------- /data/gfx/talents/brew_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/brew_potion.png -------------------------------------------------------------------------------- /data/gfx/talents/cat_grace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/cat_grace.png -------------------------------------------------------------------------------- /data/gfx/talents/cause_fear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/cause_fear.png -------------------------------------------------------------------------------- /data/gfx/talents/charm_animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/charm_animal.png -------------------------------------------------------------------------------- /data/gfx/talents/charm_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/charm_person.png -------------------------------------------------------------------------------- /data/gfx/talents/climb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/climb.png -------------------------------------------------------------------------------- /data/gfx/talents/craft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/craft.png -------------------------------------------------------------------------------- /data/gfx/talents/craft_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/craft_wand.png -------------------------------------------------------------------------------- /data/gfx/talents/darkness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/darkness.png -------------------------------------------------------------------------------- /data/gfx/talents/deathwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/deathwatch.png -------------------------------------------------------------------------------- /data/gfx/talents/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/default.png -------------------------------------------------------------------------------- /data/gfx/talents/delay_poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/delay_poison.png -------------------------------------------------------------------------------- /data/gfx/talents/detect_chaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/detect_chaos.png -------------------------------------------------------------------------------- /data/gfx/talents/detect_evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/detect_evil.png -------------------------------------------------------------------------------- /data/gfx/talents/detect_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/detect_good.png -------------------------------------------------------------------------------- /data/gfx/talents/detect_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/detect_law.png -------------------------------------------------------------------------------- /data/gfx/talents/detect_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/detect_magic.png -------------------------------------------------------------------------------- /data/gfx/talents/dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/dig.png -------------------------------------------------------------------------------- /data/gfx/talents/diplomacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/diplomacy.png -------------------------------------------------------------------------------- /data/gfx/talents/divine_favor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/divine_favor.png -------------------------------------------------------------------------------- /data/gfx/talents/doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/doom.png -------------------------------------------------------------------------------- /data/gfx/talents/empower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/empower.png -------------------------------------------------------------------------------- /data/gfx/talents/entangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/entangle.png -------------------------------------------------------------------------------- /data/gfx/talents/faerie_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/faerie_fire.png -------------------------------------------------------------------------------- /data/gfx/talents/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/fireball.png -------------------------------------------------------------------------------- /data/gfx/talents/fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/fly.png -------------------------------------------------------------------------------- /data/gfx/talents/fox_cunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/fox_cunning.png -------------------------------------------------------------------------------- /data/gfx/talents/ghoul_touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/ghoul_touch.png -------------------------------------------------------------------------------- /data/gfx/talents/grease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/grease.png -------------------------------------------------------------------------------- /data/gfx/talents/haste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/haste.png -------------------------------------------------------------------------------- /data/gfx/talents/identify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/identify.png -------------------------------------------------------------------------------- /data/gfx/talents/interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/interact.png -------------------------------------------------------------------------------- /data/gfx/talents/intimidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/intimidate.png -------------------------------------------------------------------------------- /data/gfx/talents/intuition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/intuition.png -------------------------------------------------------------------------------- /data/gfx/talents/invisibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/invisibility.png -------------------------------------------------------------------------------- /data/gfx/talents/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/jump.png -------------------------------------------------------------------------------- /data/gfx/talents/lay_on_hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/lay_on_hands.png -------------------------------------------------------------------------------- /data/gfx/talents/levitate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/levitate.png -------------------------------------------------------------------------------- /data/gfx/talents/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/light.png -------------------------------------------------------------------------------- /data/gfx/talents/longstrider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/longstrider.png -------------------------------------------------------------------------------- /data/gfx/talents/mage_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/mage_armor.png -------------------------------------------------------------------------------- /data/gfx/talents/mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/mount.png -------------------------------------------------------------------------------- /data/gfx/talents/mount_spell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/mount_spell.png -------------------------------------------------------------------------------- /data/gfx/talents/owl_wisdom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/owl_wisdom.png -------------------------------------------------------------------------------- /data/gfx/talents/pick_pockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/pick_pockets.png -------------------------------------------------------------------------------- /data/gfx/talents/power_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/power_attack.png -------------------------------------------------------------------------------- /data/gfx/talents/prayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/prayer.png -------------------------------------------------------------------------------- /data/gfx/talents/rage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/rage.png -------------------------------------------------------------------------------- /data/gfx/talents/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/shield.png -------------------------------------------------------------------------------- /data/gfx/talents/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/shoot.png -------------------------------------------------------------------------------- /data/gfx/talents/skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/skills.png -------------------------------------------------------------------------------- /data/gfx/talents/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/sleep.png -------------------------------------------------------------------------------- /data/gfx/talents/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/special.png -------------------------------------------------------------------------------- /data/gfx/talents/spell_combat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/spell_combat.png -------------------------------------------------------------------------------- /data/gfx/talents/spellbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/spellbook.png -------------------------------------------------------------------------------- /data/gfx/talents/spells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/spells.png -------------------------------------------------------------------------------- /data/gfx/talents/stealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/stealth.png -------------------------------------------------------------------------------- /data/gfx/talents/stoneskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/stoneskin.png -------------------------------------------------------------------------------- /data/gfx/talents/summon_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/summon_mount.png -------------------------------------------------------------------------------- /data/gfx/talents/throw_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/throw_potion.png -------------------------------------------------------------------------------- /data/gfx/talents/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/track.png -------------------------------------------------------------------------------- /data/gfx/talents/trident.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/trident.png -------------------------------------------------------------------------------- /data/gfx/talents/true_strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/true_strike.png -------------------------------------------------------------------------------- /data/gfx/talents/turn_undead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/turn_undead.png -------------------------------------------------------------------------------- /data/gfx/talents/wild_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/talents/wild_shape.png -------------------------------------------------------------------------------- /data/gfx/ui/actors-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/actors-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/charsheet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/charsheet-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/chat-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/chat-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/inventory-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/inventory-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/levelup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/levelup.png -------------------------------------------------------------------------------- /data/gfx/ui/log-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/log-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/main-menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/main-menu-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/minimap.png -------------------------------------------------------------------------------- /data/gfx/ui/minimap/back.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/minimap/back.BMP -------------------------------------------------------------------------------- /data/gfx/ui/minimap/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/minimap/back.png -------------------------------------------------------------------------------- /data/gfx/ui/move_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/move_handle.png -------------------------------------------------------------------------------- /data/gfx/ui/player-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/player-display.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-bottom.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-hori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-hori.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-left.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-right.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-top.png -------------------------------------------------------------------------------- /data/gfx/ui/separator-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/separator-vert.png -------------------------------------------------------------------------------- /data/gfx/ui/talents-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/talents-icon.png -------------------------------------------------------------------------------- /data/gfx/ui/talents-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/gfx/ui/talents-list.png -------------------------------------------------------------------------------- /data/keybinds/veins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/keybinds/veins.lua -------------------------------------------------------------------------------- /data/lore/lore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/lore/lore.lua -------------------------------------------------------------------------------- /data/lore/misc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/lore/misc.lua -------------------------------------------------------------------------------- /data/lore/stuff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/lore/stuff.lua -------------------------------------------------------------------------------- /data/maps/tutorial/tutorial1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/tutorial/tutorial1.lua -------------------------------------------------------------------------------- /data/maps/vaults/circle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/vaults/circle.lua -------------------------------------------------------------------------------- /data/maps/vaults/honey_glade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/vaults/honey_glade.lua -------------------------------------------------------------------------------- /data/maps/vaults/quiet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/vaults/quiet.lua -------------------------------------------------------------------------------- /data/maps/zones/arena.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/zones/arena.lua -------------------------------------------------------------------------------- /data/maps/zones/bank.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/maps/zones/bank.lua -------------------------------------------------------------------------------- /data/object_flavors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/object_flavors.lua -------------------------------------------------------------------------------- /data/quests/main_quest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/quests/main_quest.lua -------------------------------------------------------------------------------- /data/quests/tutorial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/quests/tutorial.lua -------------------------------------------------------------------------------- /data/rooms/big_moss1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/big_moss1.lua -------------------------------------------------------------------------------- /data/rooms/big_moss2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/big_moss2.lua -------------------------------------------------------------------------------- /data/rooms/chasm1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/chasm1.lua -------------------------------------------------------------------------------- /data/rooms/chasm2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/chasm2.lua -------------------------------------------------------------------------------- /data/rooms/chasm3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/chasm3.lua -------------------------------------------------------------------------------- /data/rooms/chasm4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/chasm4.lua -------------------------------------------------------------------------------- /data/rooms/circle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/circle.lua -------------------------------------------------------------------------------- /data/rooms/circle2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/circle2.lua -------------------------------------------------------------------------------- /data/rooms/circle3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/circle3.lua -------------------------------------------------------------------------------- /data/rooms/entry_hells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/entry_hells.lua -------------------------------------------------------------------------------- /data/rooms/forest_clearing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/forest_clearing.lua -------------------------------------------------------------------------------- /data/rooms/ice_patch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/ice_patch.lua -------------------------------------------------------------------------------- /data/rooms/ice_patch2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/ice_patch2.lua -------------------------------------------------------------------------------- /data/rooms/ice_patch3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/ice_patch3.lua -------------------------------------------------------------------------------- /data/rooms/icefilled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/icefilled.lua -------------------------------------------------------------------------------- /data/rooms/lake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/lake.lua -------------------------------------------------------------------------------- /data/rooms/lake2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/lake2.lua -------------------------------------------------------------------------------- /data/rooms/lavafilled_pilar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/lavafilled_pilar.lua -------------------------------------------------------------------------------- /data/rooms/lesser_vault.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/lesser_vault.lua -------------------------------------------------------------------------------- /data/rooms/marble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/marble.lua -------------------------------------------------------------------------------- /data/rooms/marble2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/marble2.lua -------------------------------------------------------------------------------- /data/rooms/moss_patch1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/moss_patch1.lua -------------------------------------------------------------------------------- /data/rooms/moss_patch2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/moss_patch2.lua -------------------------------------------------------------------------------- /data/rooms/moss_pilar1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/moss_pilar1.lua -------------------------------------------------------------------------------- /data/rooms/moss_pilar2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/moss_pilar2.lua -------------------------------------------------------------------------------- /data/rooms/moss_pilar3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/moss_pilar3.lua -------------------------------------------------------------------------------- /data/rooms/pilar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar.lua -------------------------------------------------------------------------------- /data/rooms/pilar2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar2.lua -------------------------------------------------------------------------------- /data/rooms/pilar3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar3.lua -------------------------------------------------------------------------------- /data/rooms/pilar4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar4.lua -------------------------------------------------------------------------------- /data/rooms/pilar_stairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar_stairs.lua -------------------------------------------------------------------------------- /data/rooms/pilar_stairs2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar_stairs2.lua -------------------------------------------------------------------------------- /data/rooms/pilar_stairs3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/pilar_stairs3.lua -------------------------------------------------------------------------------- /data/rooms/rhomboid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/rhomboid.lua -------------------------------------------------------------------------------- /data/rooms/rhomboid2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/rhomboid2.lua -------------------------------------------------------------------------------- /data/rooms/ritual.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/ritual.lua -------------------------------------------------------------------------------- /data/rooms/ritual2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/ritual2.lua -------------------------------------------------------------------------------- /data/rooms/simple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/simple.lua -------------------------------------------------------------------------------- /data/rooms/starting_room.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/starting_room.lua -------------------------------------------------------------------------------- /data/rooms/t2/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/t2/basic.lua -------------------------------------------------------------------------------- /data/rooms/t2/circular.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/t2/circular.lua -------------------------------------------------------------------------------- /data/rooms/temple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/temple.lua -------------------------------------------------------------------------------- /data/rooms/treasure_room.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/treasure_room.lua -------------------------------------------------------------------------------- /data/rooms/veins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/veins.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled2.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled3.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled4.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled_half.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled_half.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled_half2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled_half2.lua -------------------------------------------------------------------------------- /data/rooms/waterfilled_pilar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/rooms/waterfilled_pilar.lua -------------------------------------------------------------------------------- /data/skills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/skills.lua -------------------------------------------------------------------------------- /data/talents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents.lua -------------------------------------------------------------------------------- /data/talents/domains/blood.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/domains/blood.lua -------------------------------------------------------------------------------- /data/talents/domains/domains.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/domains/domains.lua -------------------------------------------------------------------------------- /data/talents/domains/good.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/domains/good.lua -------------------------------------------------------------------------------- /data/talents/domains/nature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/domains/nature.lua -------------------------------------------------------------------------------- /data/talents/feats/combat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/combat.lua -------------------------------------------------------------------------------- /data/talents/feats/feats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/feats.lua -------------------------------------------------------------------------------- /data/talents/feats/focus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/focus.lua -------------------------------------------------------------------------------- /data/talents/feats/metamagic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/metamagic.lua -------------------------------------------------------------------------------- /data/talents/feats/perks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/perks.lua -------------------------------------------------------------------------------- /data/talents/feats/racial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/racial.lua -------------------------------------------------------------------------------- /data/talents/feats/reserve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/feats/reserve.lua -------------------------------------------------------------------------------- /data/talents/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/menu.lua -------------------------------------------------------------------------------- /data/talents/monster.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/monster.lua -------------------------------------------------------------------------------- /data/talents/skills.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/skills.lua -------------------------------------------------------------------------------- /data/talents/special.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/special.lua -------------------------------------------------------------------------------- /data/talents/spells/arcane.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/spells/arcane.lua -------------------------------------------------------------------------------- /data/talents/spells/divine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/spells/divine.lua -------------------------------------------------------------------------------- /data/talents/spells/innate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/spells/innate.lua -------------------------------------------------------------------------------- /data/talents/spells/monster.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/talents/spells/monster.lua -------------------------------------------------------------------------------- /data/texts/intro-dark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/intro-dark.lua -------------------------------------------------------------------------------- /data/texts/intro-main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/intro-main.lua -------------------------------------------------------------------------------- /data/texts/intro-outcast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/intro-outcast.lua -------------------------------------------------------------------------------- /data/texts/tutorial/done.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/done.lua -------------------------------------------------------------------------------- /data/texts/tutorial/levelup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/levelup.lua -------------------------------------------------------------------------------- /data/texts/tutorial/melee.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/melee.lua -------------------------------------------------------------------------------- /data/texts/tutorial/move.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/move.lua -------------------------------------------------------------------------------- /data/texts/tutorial/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/objects.lua -------------------------------------------------------------------------------- /data/texts/tutorial/quests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/quests.lua -------------------------------------------------------------------------------- /data/texts/tutorial/ranged.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/ranged.lua -------------------------------------------------------------------------------- /data/texts/tutorial/tactics1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/tactics1.lua -------------------------------------------------------------------------------- /data/texts/tutorial/talents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/talents.lua -------------------------------------------------------------------------------- /data/texts/tutorial/terrain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/texts/tutorial/terrain.lua -------------------------------------------------------------------------------- /data/tilesets/5x5/base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/tilesets/5x5/base.lua -------------------------------------------------------------------------------- /data/tilesets/5x5/basic_rooms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/tilesets/5x5/basic_rooms.lua -------------------------------------------------------------------------------- /data/tilesets/5x5/crypt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/tilesets/5x5/crypt.lua -------------------------------------------------------------------------------- /data/tilesets/5x5/new_rooms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/tilesets/5x5/new_rooms.lua -------------------------------------------------------------------------------- /data/tilesets/5x5/tunnel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/tilesets/5x5/tunnel.lua -------------------------------------------------------------------------------- /data/timed_effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects.lua -------------------------------------------------------------------------------- /data/timed_effects/basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects/basic.lua -------------------------------------------------------------------------------- /data/timed_effects/physical.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects/physical.lua -------------------------------------------------------------------------------- /data/timed_effects/poisons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects/poisons.lua -------------------------------------------------------------------------------- /data/timed_effects/special.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects/special.lua -------------------------------------------------------------------------------- /data/timed_effects/spells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/timed_effects/spells.lua -------------------------------------------------------------------------------- /data/zones/aberrant lair/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/aberrant lair/npcs.lua -------------------------------------------------------------------------------- /data/zones/aberrant lair/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/aberrant lair/zone.lua -------------------------------------------------------------------------------- /data/zones/arena/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/events.lua -------------------------------------------------------------------------------- /data/zones/arena/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/grids.lua -------------------------------------------------------------------------------- /data/zones/arena/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/npcs.lua -------------------------------------------------------------------------------- /data/zones/arena/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/objects.lua -------------------------------------------------------------------------------- /data/zones/arena/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/traps.lua -------------------------------------------------------------------------------- /data/zones/arena/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/arena/zone.lua -------------------------------------------------------------------------------- /data/zones/bank/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/events.lua -------------------------------------------------------------------------------- /data/zones/bank/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/grids.lua -------------------------------------------------------------------------------- /data/zones/bank/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/npcs.lua -------------------------------------------------------------------------------- /data/zones/bank/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/objects.lua -------------------------------------------------------------------------------- /data/zones/bank/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/traps.lua -------------------------------------------------------------------------------- /data/zones/bank/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/bank/zone.lua -------------------------------------------------------------------------------- /data/zones/brothel/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/events.lua -------------------------------------------------------------------------------- /data/zones/brothel/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/grids.lua -------------------------------------------------------------------------------- /data/zones/brothel/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/npcs.lua -------------------------------------------------------------------------------- /data/zones/brothel/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/objects.lua -------------------------------------------------------------------------------- /data/zones/brothel/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/traps.lua -------------------------------------------------------------------------------- /data/zones/brothel/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/brothel/zone.lua -------------------------------------------------------------------------------- /data/zones/cave grove/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/events.lua -------------------------------------------------------------------------------- /data/zones/cave grove/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/grids.lua -------------------------------------------------------------------------------- /data/zones/cave grove/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/npcs.lua -------------------------------------------------------------------------------- /data/zones/cave grove/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/objects.lua -------------------------------------------------------------------------------- /data/zones/cave grove/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/traps.lua -------------------------------------------------------------------------------- /data/zones/cave grove/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/cave grove/zone.lua -------------------------------------------------------------------------------- /data/zones/compound/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/events.lua -------------------------------------------------------------------------------- /data/zones/compound/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/grids.lua -------------------------------------------------------------------------------- /data/zones/compound/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/npcs.lua -------------------------------------------------------------------------------- /data/zones/compound/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/objects.lua -------------------------------------------------------------------------------- /data/zones/compound/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/traps.lua -------------------------------------------------------------------------------- /data/zones/compound/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/compound/zone.lua -------------------------------------------------------------------------------- /data/zones/drow city/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/events.lua -------------------------------------------------------------------------------- /data/zones/drow city/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/grids.lua -------------------------------------------------------------------------------- /data/zones/drow city/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/npcs.lua -------------------------------------------------------------------------------- /data/zones/drow city/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/objects.lua -------------------------------------------------------------------------------- /data/zones/drow city/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/traps.lua -------------------------------------------------------------------------------- /data/zones/drow city/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow city/zone.lua -------------------------------------------------------------------------------- /data/zones/drow outpost/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow outpost/grids.lua -------------------------------------------------------------------------------- /data/zones/drow outpost/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow outpost/npcs.lua -------------------------------------------------------------------------------- /data/zones/drow outpost/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow outpost/traps.lua -------------------------------------------------------------------------------- /data/zones/drow outpost/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow outpost/zone.lua -------------------------------------------------------------------------------- /data/zones/drow temple/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow temple/events.lua -------------------------------------------------------------------------------- /data/zones/drow temple/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow temple/grids.lua -------------------------------------------------------------------------------- /data/zones/drow temple/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow temple/npcs.lua -------------------------------------------------------------------------------- /data/zones/drow temple/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow temple/traps.lua -------------------------------------------------------------------------------- /data/zones/drow temple/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow temple/zone.lua -------------------------------------------------------------------------------- /data/zones/drow village/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow village/grids.lua -------------------------------------------------------------------------------- /data/zones/drow village/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow village/npcs.lua -------------------------------------------------------------------------------- /data/zones/drow village/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow village/traps.lua -------------------------------------------------------------------------------- /data/zones/drow village/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/drow village/zone.lua -------------------------------------------------------------------------------- /data/zones/elven outpost/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/elven outpost/npcs.lua -------------------------------------------------------------------------------- /data/zones/elven outpost/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/elven outpost/zone.lua -------------------------------------------------------------------------------- /data/zones/encounters/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/events.lua -------------------------------------------------------------------------------- /data/zones/encounters/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/grids.lua -------------------------------------------------------------------------------- /data/zones/encounters/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/npcs.lua -------------------------------------------------------------------------------- /data/zones/encounters/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/objects.lua -------------------------------------------------------------------------------- /data/zones/encounters/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/traps.lua -------------------------------------------------------------------------------- /data/zones/encounters/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/encounters/zone.lua -------------------------------------------------------------------------------- /data/zones/flooded cave/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/cavern.lua") 2 | -------------------------------------------------------------------------------- /data/zones/flooded cave/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/flooded cave/npcs.lua -------------------------------------------------------------------------------- /data/zones/flooded cave/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/flooded cave/traps.lua -------------------------------------------------------------------------------- /data/zones/flooded cave/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/flooded cave/zone.lua -------------------------------------------------------------------------------- /data/zones/fungi forest/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi forest/grids.lua -------------------------------------------------------------------------------- /data/zones/fungi forest/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi forest/npcs.lua -------------------------------------------------------------------------------- /data/zones/fungi forest/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi forest/traps.lua -------------------------------------------------------------------------------- /data/zones/fungi forest/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi forest/zone.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/events.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/grids.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/npcs.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/objects.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/traps.lua -------------------------------------------------------------------------------- /data/zones/fungi maze/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/fungi maze/zone.lua -------------------------------------------------------------------------------- /data/zones/inn/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/events.lua -------------------------------------------------------------------------------- /data/zones/inn/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/grids.lua -------------------------------------------------------------------------------- /data/zones/inn/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/npcs.lua -------------------------------------------------------------------------------- /data/zones/inn/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/objects.lua -------------------------------------------------------------------------------- /data/zones/inn/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/traps.lua -------------------------------------------------------------------------------- /data/zones/inn/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/inn/zone.lua -------------------------------------------------------------------------------- /data/zones/labirynth/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/events.lua -------------------------------------------------------------------------------- /data/zones/labirynth/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/grids.lua -------------------------------------------------------------------------------- /data/zones/labirynth/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/npcs.lua -------------------------------------------------------------------------------- /data/zones/labirynth/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/objects.lua -------------------------------------------------------------------------------- /data/zones/labirynth/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/traps.lua -------------------------------------------------------------------------------- /data/zones/labirynth/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/labirynth/zone.lua -------------------------------------------------------------------------------- /data/zones/lava cavern/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/lava cavern/events.lua -------------------------------------------------------------------------------- /data/zones/lava cavern/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/cavern.lua") 2 | -------------------------------------------------------------------------------- /data/zones/lava cavern/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/lava cavern/npcs.lua -------------------------------------------------------------------------------- /data/zones/lava cavern/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/lava cavern/traps.lua -------------------------------------------------------------------------------- /data/zones/lava cavern/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/lava cavern/zone.lua -------------------------------------------------------------------------------- /data/zones/moss cavern/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/moss cavern/events.lua -------------------------------------------------------------------------------- /data/zones/moss cavern/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/cavern.lua") 2 | -------------------------------------------------------------------------------- /data/zones/moss cavern/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/moss cavern/npcs.lua -------------------------------------------------------------------------------- /data/zones/moss cavern/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/moss cavern/traps.lua -------------------------------------------------------------------------------- /data/zones/moss cavern/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/moss cavern/zone.lua -------------------------------------------------------------------------------- /data/zones/overmap/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/overmap/grids.lua -------------------------------------------------------------------------------- /data/zones/overmap/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/overmap/npcs.lua -------------------------------------------------------------------------------- /data/zones/overmap/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/overmap/objects.lua -------------------------------------------------------------------------------- /data/zones/overmap/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/overmap/traps.lua -------------------------------------------------------------------------------- /data/zones/overmap/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/overmap/zone.lua -------------------------------------------------------------------------------- /data/zones/plane of air/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/elemental.lua") 2 | -------------------------------------------------------------------------------- /data/zones/plane of air/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/plane of air/npcs.lua -------------------------------------------------------------------------------- /data/zones/plane of air/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/plane of air/traps.lua -------------------------------------------------------------------------------- /data/zones/plane of air/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/plane of air/zone.lua -------------------------------------------------------------------------------- /data/zones/plane of earth/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/elemental.lua") 2 | -------------------------------------------------------------------------------- /data/zones/plane of fire/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/elemental.lua") 2 | -------------------------------------------------------------------------------- /data/zones/plane of fire/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/plane of fire/npcs.lua -------------------------------------------------------------------------------- /data/zones/plane of fire/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/plane of fire/zone.lua -------------------------------------------------------------------------------- /data/zones/plane of water/grids.lua: -------------------------------------------------------------------------------- 1 | load("/data/general/grids/elemental.lua") 2 | -------------------------------------------------------------------------------- /data/zones/small tunnels/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/small tunnels/npcs.lua -------------------------------------------------------------------------------- /data/zones/small tunnels/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/small tunnels/zone.lua -------------------------------------------------------------------------------- /data/zones/tavern/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/events.lua -------------------------------------------------------------------------------- /data/zones/tavern/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/grids.lua -------------------------------------------------------------------------------- /data/zones/tavern/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/npcs.lua -------------------------------------------------------------------------------- /data/zones/tavern/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/objects.lua -------------------------------------------------------------------------------- /data/zones/tavern/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/traps.lua -------------------------------------------------------------------------------- /data/zones/tavern/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tavern/zone.lua -------------------------------------------------------------------------------- /data/zones/temple/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/events.lua -------------------------------------------------------------------------------- /data/zones/temple/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/grids.lua -------------------------------------------------------------------------------- /data/zones/temple/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/npcs.lua -------------------------------------------------------------------------------- /data/zones/temple/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/objects.lua -------------------------------------------------------------------------------- /data/zones/temple/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/traps.lua -------------------------------------------------------------------------------- /data/zones/temple/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/temple/zone.lua -------------------------------------------------------------------------------- /data/zones/thieves guild/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/thieves guild/npcs.lua -------------------------------------------------------------------------------- /data/zones/thieves guild/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/thieves guild/zone.lua -------------------------------------------------------------------------------- /data/zones/town/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/events.lua -------------------------------------------------------------------------------- /data/zones/town/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/grids.lua -------------------------------------------------------------------------------- /data/zones/town/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/npcs.lua -------------------------------------------------------------------------------- /data/zones/town/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/objects.lua -------------------------------------------------------------------------------- /data/zones/town/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/traps.lua -------------------------------------------------------------------------------- /data/zones/town/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/town/zone.lua -------------------------------------------------------------------------------- /data/zones/tunnels/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/events.lua -------------------------------------------------------------------------------- /data/zones/tunnels/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/grids.lua -------------------------------------------------------------------------------- /data/zones/tunnels/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/npcs.lua -------------------------------------------------------------------------------- /data/zones/tunnels/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/objects.lua -------------------------------------------------------------------------------- /data/zones/tunnels/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/traps.lua -------------------------------------------------------------------------------- /data/zones/tunnels/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tunnels/zone.lua -------------------------------------------------------------------------------- /data/zones/tutorial/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tutorial/grids.lua -------------------------------------------------------------------------------- /data/zones/tutorial/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tutorial/npcs.lua -------------------------------------------------------------------------------- /data/zones/tutorial/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tutorial/objects.lua -------------------------------------------------------------------------------- /data/zones/tutorial/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tutorial/traps.lua -------------------------------------------------------------------------------- /data/zones/tutorial/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/tutorial/zone.lua -------------------------------------------------------------------------------- /data/zones/wizard tower/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/wizard tower/grids.lua -------------------------------------------------------------------------------- /data/zones/wizard tower/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/wizard tower/npcs.lua -------------------------------------------------------------------------------- /data/zones/wizard tower/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/wizard tower/traps.lua -------------------------------------------------------------------------------- /data/zones/wizard tower/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/wizard tower/zone.lua -------------------------------------------------------------------------------- /data/zones/worldmap/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/worldmap/grids.lua -------------------------------------------------------------------------------- /data/zones/worldmap/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/worldmap/npcs.lua -------------------------------------------------------------------------------- /data/zones/worldmap/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/worldmap/objects.lua -------------------------------------------------------------------------------- /data/zones/worldmap/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/worldmap/traps.lua -------------------------------------------------------------------------------- /data/zones/worldmap/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/worldmap/zone.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/events.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/grids.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/grids.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/npcs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/npcs.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/objects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/objects.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/traps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/traps.lua -------------------------------------------------------------------------------- /data/zones/xorn lair/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/data/zones/xorn lair/zone.lua -------------------------------------------------------------------------------- /dialogs/Birther.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Birther.lua -------------------------------------------------------------------------------- /dialogs/BonusFeatDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/BonusFeatDialog.lua -------------------------------------------------------------------------------- /dialogs/CharacterSheet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/CharacterSheet.lua -------------------------------------------------------------------------------- /dialogs/Chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Chat.lua -------------------------------------------------------------------------------- /dialogs/ClassLevelupDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ClassLevelupDialog.lua -------------------------------------------------------------------------------- /dialogs/Credits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Credits.lua -------------------------------------------------------------------------------- /dialogs/DeathDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/DeathDialog.lua -------------------------------------------------------------------------------- /dialogs/FeatDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/FeatDialog.lua -------------------------------------------------------------------------------- /dialogs/GameOptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/GameOptions.lua -------------------------------------------------------------------------------- /dialogs/GetChoice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/GetChoice.lua -------------------------------------------------------------------------------- /dialogs/GraphicMode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/GraphicMode.lua -------------------------------------------------------------------------------- /dialogs/Help.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Help.lua -------------------------------------------------------------------------------- /dialogs/ItemManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ItemManager.lua -------------------------------------------------------------------------------- /dialogs/KillCount.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/KillCount.lua -------------------------------------------------------------------------------- /dialogs/Legend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Legend.lua -------------------------------------------------------------------------------- /dialogs/LevelupDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/LevelupDialog.lua -------------------------------------------------------------------------------- /dialogs/LoreInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/LoreInfo.lua -------------------------------------------------------------------------------- /dialogs/LoreList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/LoreList.lua -------------------------------------------------------------------------------- /dialogs/MapMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/MapMenu.lua -------------------------------------------------------------------------------- /dialogs/MonsterInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/MonsterInfo.lua -------------------------------------------------------------------------------- /dialogs/PartyOrder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/PartyOrder.lua -------------------------------------------------------------------------------- /dialogs/Quit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Quit.lua -------------------------------------------------------------------------------- /dialogs/Rules.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/Rules.lua -------------------------------------------------------------------------------- /dialogs/ShowChatLog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowChatLog.lua -------------------------------------------------------------------------------- /dialogs/ShowEquipInven.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowEquipInven.lua -------------------------------------------------------------------------------- /dialogs/ShowEquipment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowEquipment.lua -------------------------------------------------------------------------------- /dialogs/ShowInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowInventory.lua -------------------------------------------------------------------------------- /dialogs/ShowJournal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowJournal.lua -------------------------------------------------------------------------------- /dialogs/ShowMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowMap.lua -------------------------------------------------------------------------------- /dialogs/ShowPickupFloor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowPickupFloor.lua -------------------------------------------------------------------------------- /dialogs/ShowStore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ShowStore.lua -------------------------------------------------------------------------------- /dialogs/SkillDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/SkillDialog.lua -------------------------------------------------------------------------------- /dialogs/SpellBook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/SpellBook.lua -------------------------------------------------------------------------------- /dialogs/TalentMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/TalentMenu.lua -------------------------------------------------------------------------------- /dialogs/UseItemDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/UseItemDialog.lua -------------------------------------------------------------------------------- /dialogs/UseTalents.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/UseTalents.lua -------------------------------------------------------------------------------- /dialogs/VictoryDialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/VictoryDialog.lua -------------------------------------------------------------------------------- /dialogs/debug/ChangeZone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/ChangeZone.lua -------------------------------------------------------------------------------- /dialogs/debug/CreateItem2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/CreateItem2.lua -------------------------------------------------------------------------------- /dialogs/debug/CreateTerrain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/CreateTerrain.lua -------------------------------------------------------------------------------- /dialogs/debug/CreateTrap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/CreateTrap.lua -------------------------------------------------------------------------------- /dialogs/debug/DebugMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/DebugMenu.lua -------------------------------------------------------------------------------- /dialogs/debug/EntityTracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/EntityTracker.lua -------------------------------------------------------------------------------- /dialogs/debug/ObjectTracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/ObjectTracker.lua -------------------------------------------------------------------------------- /dialogs/debug/SummonCreature.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/debug/SummonCreature.lua -------------------------------------------------------------------------------- /dialogs/ui/TweakedTreeList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/dialogs/ui/TweakedTreeList.lua -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/init.lua -------------------------------------------------------------------------------- /load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/load.lua -------------------------------------------------------------------------------- /marson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/marson.lua -------------------------------------------------------------------------------- /resolvers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/resolvers.lua -------------------------------------------------------------------------------- /resolvers_npc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/resolvers_npc.lua -------------------------------------------------------------------------------- /util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zireael07/The-Veins-of-the-Earth-original/HEAD/util.lua --------------------------------------------------------------------------------