Skip to content

Instantly share code, notes, and snippets.

@bostelk
Created March 20, 2022 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bostelk/8db0e46cb4e919af77989a755e2efcdd to your computer and use it in GitHub Desktop.
Save bostelk/8db0e46cb4e919af77989a755e2efcdd to your computer and use it in GitHub Desktop.
Accelerate Path Of Exile Bundles
@echo off
rem A script to relocate bundles to a faster drive.
rem Put this file in Path of Exile "Bundles2" directory.
rem Example: I:\steam\steamapps\common\Path of Exile\Bundles2
rem The directory to relocate bundles to.
set BUNDLES2="C:\Path Of Exile\Bundles2"
rem Accelerate login.
for %%i in (
"Shaders.bundle.bin"
"_.index.bin"
"_Login.bundle.bin"
"_Login_1.bundle.bin"
"_Login_2.bundle.bin"
"_Preload.bundle.bin"
"_Preload_1.bundle.bin"
"_Preload_2.bundle.bin"
"_Preload_3.bundle.bin"
"_Startup.bundle.bin"
) do call :accel %%i, %BUNDLES2%
rem Accelerate monsters.
rem dir /s/b | findstr monster | findstr .bin > monsters2.txt
for %%i in (
"Art\Models\Effects\dominating_blow\monster_covert.bundle.bin"
"Art\Models\Effects\impale\debuff\on_monster.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss.bundle.bin"
"Art\Models\Effects\monster_effects\AxisCasterBoss.bundle.bin"
"Art\Models\Effects\monster_effects\BanditLord.bundle.bin"
"Art\Models\Effects\monster_effects\Beyond_Demons.bundle.bin"
"Art\Models\Effects\monster_effects\brute_act6.bundle.bin"
"Art\Models\Effects\monster_effects\brute_death.bundle.bin"
"Art\Models\Effects\monster_effects\brute_slam.bundle.bin"
"Art\Models\Effects\monster_effects\Doedre_blood_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\earth_nova.bundle.bin"
"Art\Models\Effects\monster_effects\FireCore.bundle.bin"
"Art\Models\Effects\monster_effects\fire_nova.bundle.bin"
"Art\Models\Effects\monster_effects\General_Adus_buff.bundle.bin"
"Art\Models\Effects\monster_effects\ghost_biostuff.bundle.bin"
"Art\Models\Effects\monster_effects\gold_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\gore_explode.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments.bundle.bin"
"Art\Models\Effects\monster_effects\Half_Skeleton_cleave.bundle.bin"
"Art\Models\Effects\monster_effects\harbinger_sunbeam.bundle.bin"
"Art\Models\Effects\monster_effects\Holy_Fire_Elemental.bundle.bin"
"Art\Models\Effects\monster_effects\HuhuGrub.bundle.bin"
"Art\Models\Effects\monster_effects\iceGolem.bundle.bin"
"Art\Models\Effects\monster_effects\incaspawn_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\insect_minion_explode.bundle.bin"
"Art\Models\Effects\monster_effects\insect_spawner_spit.bundle.bin"
"Art\Models\Effects\monster_effects\invisible_fire.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_demon.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars.bundle.bin"
"Art\Models\Effects\monster_effects\merv_fireball.bundle.bin"
"Art\Models\Effects\monster_effects\necroboss_raise.bundle.bin"
"Art\Models\Effects\monster_effects\necro_raise.bundle.bin"
"Art\Models\Effects\monster_effects\RadiantHammer.bundle.bin"
"Art\Models\Effects\monster_effects\revenant_breach_death_projectiles.bundle.bin"
"Art\Models\Effects\monster_effects\Ryslatha_burrow.bundle.bin"
"Art\Models\Effects\monster_effects\Ryslatha_parasite_spit.bundle.bin"
"Art\Models\Effects\monster_effects\sand_spitter_detonatedead_vaal.bundle.bin"
"Art\Models\Effects\monster_effects\scavenger_throw.bundle.bin"
"Art\Models\Effects\monster_effects\scav_boss_firefury.bundle.bin"
"Art\Models\Effects\monster_effects\secret_police.bundle.bin"
"Art\Models\Effects\monster_effects\SkeletonSoldier_carpetbomb.bundle.bin"
"Art\Models\Effects\monster_effects\snake_flamethrower.bundle.bin"
"Art\Models\Effects\monster_effects\snake_spit.bundle.bin"
"Art\Models\Effects\monster_effects\TormentedSpirits.bundle.bin"
"Art\Models\Effects\monster_effects\trigger_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\undying_spin.bundle.bin"
"Art\Models\Effects\monster_effects\waterElemental.bundle.bin"
"Art\Models\Effects\monster_effects\water_nova.bundle.bin"
"Art\Models\Effects\monster_effects\zombie_grasp.bundle.bin"
"Art\Models\Effects\monster_effects\act1\birdman.bundle.bin"
"Art\Models\Effects\monster_effects\act1\brutus.bundle.bin"
"Art\Models\Effects\monster_effects\act1\fairgraves.bundle.bin"
"Art\Models\Effects\monster_effects\act1\ghostpirate.bundle.bin"
"Art\Models\Effects\monster_effects\act1\goatshaman_fire.bundle.bin"
"Art\Models\Effects\monster_effects\act1\kuduku.bundle.bin"
"Art\Models\Effects\monster_effects\act1\merveil.bundle.bin"
"Art\Models\Effects\monster_effects\act1\skeleton.bundle.bin"
"Art\Models\Effects\monster_effects\act1\water_ele.bundle.bin"
"Art\Models\Effects\monster_effects\act10\Kitava.bundle.bin"
"Art\Models\Effects\monster_effects\act10\Kitava_1.bundle.bin"
"Art\Models\Effects\monster_effects\act10\Kitava_2.bundle.bin"
"Art\Models\Effects\monster_effects\act10\Kitava_3.bundle.bin"
"Art\Models\Effects\monster_effects\act10\VIlenta.bundle.bin"
"Art\Models\Effects\monster_effects\act2_boss\AtziriOversoul.bundle.bin"
"Art\Models\Effects\monster_effects\act3\book_tornado.bundle.bin"
"Art\Models\Effects\monster_effects\act3\city_stalker_richmen.bundle.bin"
"Art\Models\Effects\monster_effects\act3\dominus.bundle.bin"
"Art\Models\Effects\monster_effects\act3\experimenter.bundle.bin"
"Art\Models\Effects\monster_effects\act3\female_demon_ranged.bundle.bin"
"Art\Models\Effects\monster_effects\act3\flame_bearer_headspray.bundle.bin"
"Art\Models\Effects\monster_effects\act3\gravicius.bundle.bin"
"Art\Models\Effects\monster_effects\act3\icefeet.bundle.bin"
"Art\Models\Effects\monster_effects\act3\ice_sheild.bundle.bin"
"Art\Models\Effects\monster_effects\act3\lightning_sheild.bundle.bin"
"Art\Models\Effects\monster_effects\act3\peity.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyrofireback_static.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb_explode.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb_explode_poison.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb_explode_smoke.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb_poison.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_bomb_smoke.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_fireback.bundle.bin"
"Art\Models\Effects\monster_effects\act3\pyro_fireball.bundle.bin"
"Art\Models\Effects\monster_effects\act3\ri_fire.bundle.bin"
"Art\Models\Effects\monster_effects\act3\siosa.bundle.bin"
"Art\Models\Effects\monster_effects\act3\spear_throw.bundle.bin"
"Art\Models\Effects\monster_effects\act3\spiker_spine.bundle.bin"
"Art\Models\Effects\monster_effects\act3\squid.bundle.bin"
"Art\Models\Effects\monster_effects\act3\statue_balls.bundle.bin"
"Art\Models\Effects\monster_effects\act3\statue_boss.bundle.bin"
"Art\Models\Effects\monster_effects\act3\undying_freezing_pulse.bundle.bin"
"Art\Models\Effects\monster_effects\act4\arrow_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\act4\Bull_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\act4\chaos_elemental.bundle.bin"
"Art\Models\Effects\monster_effects\act4\daresso.bundle.bin"
"Art\Models\Effects\monster_effects\act4\daresso_1.bundle.bin"
"Art\Models\Effects\monster_effects\act4\Dialla.bundle.bin"
"Art\Models\Effects\monster_effects\act4\EyeSpawner.bundle.bin"
"Art\Models\Effects\monster_effects\act4\gladiators.bundle.bin"
"Art\Models\Effects\monster_effects\act4\half_skeleton.bundle.bin"
"Art\Models\Effects\monster_effects\act4\HeiTiki.bundle.bin"
"Art\Models\Effects\monster_effects\act4\ice_elemental.bundle.bin"
"Art\Models\Effects\monster_effects\act4\Kaom.bundle.bin"
"Art\Models\Effects\monster_effects\act4\KaomWarrior4.bundle.bin"
"Art\Models\Effects\monster_effects\act4\malachai.bundle.bin"
"Art\Models\Effects\monster_effects\act4\malachai_1.bundle.bin"
"Art\Models\Effects\monster_effects\act4\malachai_2.bundle.bin"
"Art\Models\Effects\monster_effects\act4\maligaro.bundle.bin"
"Art\Models\Effects\monster_effects\act4\miner.bundle.bin"
"Art\Models\Effects\monster_effects\act4\piety.bundle.bin"
"Art\Models\Effects\monster_effects\act4\PuiTotem.bundle.bin"
"Art\Models\Effects\monster_effects\act4\revenant.bundle.bin"
"Art\Models\Effects\monster_effects\act4\sand_jumper.bundle.bin"
"Art\Models\Effects\monster_effects\act4\Shavronne.bundle.bin"
"Art\Models\Effects\monster_effects\act4\taniwha.bundle.bin"
"Art\Models\Effects\monster_effects\act4\taster.bundle.bin"
"Art\Models\Effects\monster_effects\act4\viking.bundle.bin"
"Art\Models\Effects\monster_effects\act4\voll.bundle.bin"
"Art\Models\Effects\monster_effects\act4\vulture_2.bundle.bin"
"Art\Models\Effects\monster_effects\act4\water_elemental.bundle.bin"
"Art\Models\Effects\monster_effects\act5\Avarius_Casticus.bundle.bin"
"Art\Models\Effects\monster_effects\act5\Avarius_Casticus_1.bundle.bin"
"Art\Models\Effects\monster_effects\act5\projectiles.bundle.bin"
"Art\Models\Effects\monster_effects\act5\Sin.bundle.bin"
"Art\Models\Effects\monster_effects\act5\slave_catcher.bundle.bin"
"Art\Models\Effects\monster_effects\act5\templar_judge.bundle.bin"
"Art\Models\Effects\monster_effects\act5\templar_slave_driver_kitava.bundle.bin"
"Art\Models\Effects\monster_effects\act5\templar_torturer_kitava.bundle.bin"
"Art\Models\Effects\monster_effects\act6\Abberath.bundle.bin"
"Art\Models\Effects\monster_effects\act6\Brine_King.bundle.bin"
"Art\Models\Effects\monster_effects\act6\Brine_King_1.bundle.bin"
"Art\Models\Effects\monster_effects\act6\NessaCrab.bundle.bin"
"Art\Models\Effects\monster_effects\act7\Alira.bundle.bin"
"Art\Models\Effects\monster_effects\act7\Arakaali.bundle.bin"
"Art\Models\Effects\monster_effects\act7\Gruthkul.bundle.bin"
"Art\Models\Effects\monster_effects\act7\Ralakesh_Totem.bundle.bin"
"Art\Models\Effects\monster_effects\act7\Yeena.bundle.bin"
"Art\Models\Effects\monster_effects\act8\AxisEliteSoldier_lunaris.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Dawn.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Doedre.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Dusk.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Fire_ball_poofs.bundle.bin"
"Art\Models\Effects\monster_effects\act8\GemlingLegionnaires.bundle.bin"
"Art\Models\Effects\monster_effects\act8\GemMonster.bundle.bin"
"Art\Models\Effects\monster_effects\act8\HolyFireElementalSolaris.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Lunaris_Whippers.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Quest.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Ribbons.bundle.bin"
"Art\Models\Effects\monster_effects\act8\SewageElemental.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Sewage_bubble.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Sewer_WaterSpiral.bundle.bin"
"Art\Models\Effects\monster_effects\act8\sml_hatred.bundle.bin"
"Art\Models\Effects\monster_effects\act8\snake_spine_chrome.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Special_Beam_Cannon.bundle.bin"
"Art\Models\Effects\monster_effects\act8\spiker_spine_chrome.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Titucius.bundle.bin"
"Art\Models\Effects\monster_effects\act8\WarHero.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Yugul_SilverFrog.bundle.bin"
"Art\Models\Effects\monster_effects\act8\Yugul_SilverFrog_1.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Basilisk.bundle.bin"
"Art\Models\Effects\monster_effects\act9\BoulderDash.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Garukhan.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Garukhan_1.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Garukhan_2.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Iguana.bundle.bin"
"Art\Models\Effects\monster_effects\act9\MummyEvent.bundle.bin"
"Art\Models\Effects\monster_effects\act9\SandCyclone.bundle.bin"
"Art\Models\Effects\monster_effects\act9\SandSpark.bundle.bin"
"Art\Models\Effects\monster_effects\act9\Shakari.bundle.bin"
"Art\Models\Effects\monster_effects\act9\StoneGaze.bundle.bin"
"Art\Models\Effects\monster_effects\act9\The_Trio.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\AtziriOversoul.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\drop_bear.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\incaboss.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\root_spider.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\scarecrow.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\snake_spine.bundle.bin"
"Art\Models\Effects\monster_effects\act_2\spider.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Adjudicator.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\AdjudicatorMonsters.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Basilisk.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\BasiliskMonsters.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Crusader.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\CrusaderMonsters.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Eyrie.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\EyrieMonsters.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Eyrie_1.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasExiles\Orion.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\AnimatedWeapon.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\blackhole_charge.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\bone_effects.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Chimera.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Djinn_Demon.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Elder.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\ElderGuardian.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\ElderGuardian_1.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\ElderGuardian_2.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\ElderGuardian_3.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\ElderTentacle.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Elder_1.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Elder_2.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Elder_3.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Elder_4.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Ghost_Pirate.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\GoatmanMapBoss.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Grave_Trough.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Gravicius.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Iguana.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\LightningGolem.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\MapBosses.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\MapBosses_1.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\map_reshuffle.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Minotaur.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\SpiderBoss.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\TheShaper.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\TheShaper_1.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\TreasureGolem.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\Viking.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasofWorldsBoss\zana_banish.bundle.bin"
"Art\Models\Effects\monster_effects\AtlasPreQuest\blackguard.bundle.bin"
"Art\Models\Effects\monster_effects\aura\affected_aura.bundle.bin"
"Art\Models\Effects\monster_effects\aura\armour.bundle.bin"
"Art\Models\Effects\monster_effects\aura\curse_aura_zones.bundle.bin"
"Art\Models\Effects\monster_effects\aura\invulnerable.bundle.bin"
"Art\Models\Effects\monster_effects\aura\necrovigil_aura.bundle.bin"
"Art\Models\Effects\monster_effects\aura\nemesis_mod.bundle.bin"
"Art\Models\Effects\monster_effects\aura\support_gem_buff.bundle.bin"
"Art\Models\Effects\monster_effects\aura\vulnerable.bundle.bin"
"Art\Models\Effects\monster_effects\auras_2013\affected.bundle.bin"
"Art\Models\Effects\monster_effects\auras_2013\frenzy.bundle.bin"
"Art\Models\Effects\monster_effects\auras_2013\vaal_armour.bundle.bin"
"Art\Models\Effects\monster_effects\auras_2013\vaal_aura.bundle.bin"
"Art\Models\Effects\monster_effects\BanditLord\weapon.bundle.bin"
"Art\Models\Effects\monster_effects\Bandits\power_shot.bundle.bin"
"Art\Models\Effects\monster_effects\BlackguardInquisitor\kitava.bundle.bin"
"Art\Models\Effects\monster_effects\BlackGuard_Cleric\cleric_bookchannel.bundle.bin"
"Art\Models\Effects\monster_effects\BlackGuard_Cleric\cleric_bookchannel_kitava.bundle.bin"
"Art\Models\Effects\monster_effects\BlackGuard_Cleric\IonCannon.bundle.bin"
"Art\Models\Effects\monster_effects\BlacksmithGolem\SpectralThrow.bundle.bin"
"Art\Models\Effects\monster_effects\BlacksmithGolem\Upheaval.bundle.bin"
"Art\Models\Effects\monster_effects\Blessed_Sister\holyfire_mortar.bundle.bin"
"Art\Models\Effects\monster_effects\Blessed_Sister\HolyWater_Projectile.bundle.bin"
"Art\Models\Effects\monster_effects\BoneStalker\doublespin.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Bone.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Bone_1.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Boss_death.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Boss_escape.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\breach_zone.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Chaos.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Cold.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Cold_1.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\commander_spawn.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Fire.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Hellion.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\Lightning.bundle.bin"
"Art\Models\Effects\monster_effects\Breach\monster_spawner.bundle.bin"
"Art\Models\Effects\monster_effects\brute_act6\brute_hook_pull_slam.bundle.bin"
"Art\Models\Effects\monster_effects\brute_death\TowerBrute_Death.bundle.bin"
"Art\Models\Effects\monster_effects\Burnwillow_Boss\targeting.bundle.bin"
"Art\Models\Effects\monster_effects\coldstorm_call\idle.bundle.bin"
"Art\Models\Effects\monster_effects\coldstorm_call\impact.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon\fire.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon\ice.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon\lightning.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon\phys.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon_v2\fire.bundle.bin"
"Art\Models\Effects\monster_effects\elemental_beacon_v2\phys.bundle.bin"
"Art\Models\Effects\monster_effects\essence\bloodball.bundle.bin"
"Art\Models\Effects\monster_effects\essence\blood_grasp.bundle.bin"
"Art\Models\Effects\monster_effects\essence\fire_wave_cascade.bundle.bin"
"Art\Models\Effects\monster_effects\essence\Holy_ion_cannon.bundle.bin"
"Art\Models\Effects\monster_effects\essence\monolith_pulse.bundle.bin"
"Art\Models\Effects\monster_effects\essence\NecromancerBolt.bundle.bin"
"Art\Models\Effects\monster_effects\essence\spidermortar.bundle.bin"
"Art\Models\Effects\monster_effects\firestorm_call\impact.bundle.bin"
"Art\Models\Effects\monster_effects\firestorm_call\impact2.bundle.bin"
"Art\Models\Effects\monster_effects\firestorm_call\vaal_impact.bundle.bin"
"Art\Models\Effects\monster_effects\fire_beam\beam.bundle.bin"
"Art\Models\Effects\monster_effects\fire_elemental\emerge.bundle.bin"
"Art\Models\Effects\monster_effects\fire_elemental\firespray.bundle.bin"
"Art\Models\Effects\monster_effects\fire_elemental\fire_nova.bundle.bin"
"Art\Models\Effects\monster_effects\fire_elemental\meteor.bundle.bin"
"Art\Models\Effects\monster_effects\fire_elemental\RunicGolem.bundle.bin"
"Art\Models\Effects\monster_effects\flameblast\circle.bundle.bin"
"Art\Models\Effects\monster_effects\flameblast\explode.bundle.bin"
"Art\Models\Effects\monster_effects\fleshmonster\chunk.bundle.bin"
"Art\Models\Effects\monster_effects\forbidden_woods\ice_sapling_trio.bundle.bin"
"Art\Models\Effects\monster_effects\forsaken_skeleton\rain_of_arrows.bundle.bin"
"Art\Models\Effects\monster_effects\forsaken_skeleton\rain_of_arrows_animation.bundle.bin"
"Art\Models\Effects\monster_effects\frozen_cabins\boss.bundle.bin"
"Art\Models\Effects\monster_effects\Geofri\gloombolt.bundle.bin"
"Art\Models\Effects\monster_effects\goatman\lavagoat_explode.bundle.bin"
"Art\Models\Effects\monster_effects\goatman\navali_imprison.bundle.bin"
"Art\Models\Effects\monster_effects\Goddess_of_Justice\beam_fx.bundle.bin"
"Art\Models\Effects\monster_effects\Goddess_of_Justice\projectile.bundle.bin"
"Art\Models\Effects\monster_effects\Goddess_of_Justice\teleport.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments\death.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments\IzaroOrnaments.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments\spore_01.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments\spore_02.bundle.bin"
"Art\Models\Effects\monster_effects\GraspingOrnaments\spore_03.bundle.bin"
"Art\Models\Effects\monster_effects\Greust\RalakeshProjectile.bundle.bin"
"Art\Models\Effects\monster_effects\harbinger_sunbeam\impact.bundle.bin"
"Art\Models\Effects\monster_effects\hellion\burned.bundle.bin"
"Art\Models\Effects\monster_effects\hellion\ice.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\doom_arrow.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\frost_arrow.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\frost_bolt.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\minion.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\splitting_arrow.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\surge.bundle.bin"
"Art\Models\Effects\monster_effects\Hydra\teleport.bundle.bin"
"Art\Models\Effects\monster_effects\inca_shadow_monster\blue.bundle.bin"
"Art\Models\Effects\monster_effects\inca_shadow_monster\payloads.bundle.bin"
"Art\Models\Effects\monster_effects\inca_shadow_monster\red.bundle.bin"
"Art\Models\Effects\monster_effects\insectspawner\death.bundle.bin"
"Art\Models\Effects\monster_effects\Justicar_Casticus\blood_vortex.bundle.bin"
"Art\Models\Effects\monster_effects\Justicar_Casticus\shield_toss.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_demon\mortar.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_demon\projectile.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_red\shield_charge.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_red\spellcast.bundle.bin"
"Art\Models\Effects\monster_effects\kitava_red\stormcall.bundle.bin"
"Art\Models\Effects\monster_effects\labyrinth\skeleton_king.bundle.bin"
"Art\Models\Effects\monster_effects\labyrinth\skeleton_king_1.bundle.bin"
"Art\Models\Effects\monster_effects\labyrinth\skeleton_king_2.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_1.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_2.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_3.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_4.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_5.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_6.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_boss_7.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_monsters.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_monsters_1.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\harvest_monsters_2.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\machinery.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\machinery_1.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\monster_plants.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\monster_seeds.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\NPC.bundle.bin"
"Art\Models\Effects\monster_effects\LeagueHarvest\oshabi_flower.bundle.bin"
"Art\Models\Effects\monster_effects\leaguestone_mod\red.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\AlchemyLab.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\infection.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\Metamorphing.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\orsen_tiller.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\Skills.bundle.bin"
"Art\Models\Effects\monster_effects\League_3_9_0\symbiosis.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\AbyssBubble.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\AbyssMortar.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\Abyss_Lich.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\Abyss_Lich_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\Abyss_Lich_3.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\BoneStalker.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\Bone_Husk.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\OrbAbyss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\SoulSlash.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\SoulTransfer.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\UndyingAbyss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Abyss\Vendigo.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affected_hive.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affected_IL.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affected_spiderlegs.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_boss_final.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_demon_fire.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_demon_ice.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_demon_lightning.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_demon_phys.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_manifests.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_mirror.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_mods.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\affliction_Phys_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\encounter_object.bundle.bin"
"Art\Models\Effects\monster_effects\League_Affliction\split.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\Beam.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\damagehit.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\DR_Bubble.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\mortar.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\Ri_fire.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\Summons.bundle.bin"
"Art\Models\Effects\monster_effects\league_avatars\telegraphing.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\AspectSkills.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Avians.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\BirdSwarm.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Bird_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Blood_barrier.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Crab_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\diverse_effects.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Einhar.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Iguana.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\MenagerieAltar.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Mods_Skills.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Monkey_minionMonster.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Pouncing_Shade.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\rope_test.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Spider_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\spider_cocoon.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Spiker_minionMonster.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Tiger_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\tora.bundle.bin"
"Art\Models\Effects\monster_effects\League_Bestiary\Totem_shockwave.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Aislin.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\AssassinationPortal.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Bargaining.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\blackGuard_champion.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Blackguard_scout.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\BossCatarina.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\BossCatarina_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Cameria.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Cameria_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\CatarinaBargainPortal.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\CatarinaCart.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\CatarinaSummon.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Catarina_retrieve_corpse.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Catarina_ritual_room.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Fort_Seige.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Gravicius.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Grenn.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Haku.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Interact.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\ItThatFled.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Janus.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Leo.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\massSkeleton.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Necromancer.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\OssuaryWitch.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Phantasm.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Riker.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Scientist.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\SecretPolice.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Skeleton.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\SkeletonCannon.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\target_light.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Thane.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Vagan.bundle.bin"
"Art\Models\Effects\monster_effects\League_Betrayal\Vorici.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Blight_Boss_Necro.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Blight_Paths.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Blight_Portal.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Blight_Spider.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Branch_meshes.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Fungal_Core.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Fungal_ground.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Mind_Control_Epk.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\NPC.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Towers.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Towers_AoE.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Towers_base.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Tower_Skills.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Wall.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Wall_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Wall_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Blight\Wall_3.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\essence_release.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\general.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\light_connector.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\player_dynamite.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\player_flares.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas_3.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas_4.bundle.bin"
"Art\Models\Effects\monster_effects\League_Delve\thematic_areas_5.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\bosses.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\bosses_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\bosses_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\bow_monster.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\bridge.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\caster.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\cultist.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\demolition.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\demolition_adiyah.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Gianna.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\guarded_chest.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\guarded_relic_chest.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Isla.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\laser_trap.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\melee.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\military.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Nenet.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\npc_teleport.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Robot.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Robot_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\thug.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Tullina.bundle.bin"
"Art\Models\Effects\monster_effects\League_Heist\Warding_runes.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\diversefx.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\Vaal_Architects.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\Vaal_Architects_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\Vaal_Architects_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\Vaal_Architects_3.bundle.bin"
"Art\Models\Effects\monster_effects\League_Incursion\Vaal_Saucer_Boss.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\death.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\endgame.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\epk.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\EternalEmpire.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\flashlight.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\karui.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Maraketh.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\monolith.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\PausedEffects.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Templar.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Vaal.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Vaal_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Vaal_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Vaal_3.bundle.bin"
"Art\Models\Effects\monster_effects\League_Legion\Vaal_4.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\bosses.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\bosses_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\bosses_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\cavas_soul.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\finale.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\general.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\guardians_fx.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\mapDevice_construct.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\monster_bodyfx.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Synthesis_Guardian4.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Synthesis_Guardian4_1.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Synthesis_Guardian4_2.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Synthesis_Ribbon_Large.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Synthesis_Spiker.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\tippint_point.bundle.bin"
"Art\Models\Effects\monster_effects\League_Synthesis\Venarius_disappear.bundle.bin"
"Art\Models\Effects\monster_effects\lightning_elemental\absorb.bundle.bin"
"Art\Models\Effects\monster_effects\lightning_elemental\emerge.bundle.bin"
"Art\Models\Effects\monster_effects\lightning_elemental\orb.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Combo_slash.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Fourlegged_Demon.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\spectral_death_hover.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\spectral_death_hover_1.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Spider_boss.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Telekinetic_blade.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Vanish.bundle.bin"
"Art\Models\Effects\monster_effects\Maligaro_Act7\Whirling_Blade.bundle.bin"
"Art\Models\Effects\monster_effects\maps\ice_pyro_bomb.bundle.bin"
"Art\Models\Effects\monster_effects\maps\lightning_searing_bond.bundle.bin"
"Art\Models\Effects\monster_effects\molten_ground_slam\spines.bundle.bin"
"Art\Models\Effects\monster_effects\monster_mods\increased_accur.bundle.bin"
"Art\Models\Effects\monster_effects\monster_mods\increased_attackspeed.bundle.bin"
"Art\Models\Effects\monster_effects\monster_mods\increase_phy.bundle.bin"
"Art\Models\Effects\monster_effects\monster_mods\reduced_damage.bundle.bin"
"Art\Models\Effects\monster_effects\monster_mods\reflect_damage.bundle.bin"
"Art\Models\Effects\monster_effects\monster_teleport\fire.bundle.bin"
"Art\Models\Effects\monster_effects\Nemesis_mods\cold_beam.bundle.bin"
"Art\Models\Effects\monster_effects\Nemesis_mods\fire_mod.bundle.bin"
"Art\Models\Effects\monster_effects\Nemesis_mods\physical_gold_proj.bundle.bin"
"Art\Models\Effects\monster_effects\OriathBlackguard\kitava.bundle.bin"
"Art\Models\Effects\monster_effects\OriathBlackguard\shockwave3_march.bundle.bin"
"Art\Models\Effects\monster_effects\OriathBlackguard\shockwave4_xplod.bundle.bin"
"Art\Models\Effects\monster_effects\Oriath_Zombie\soul_mortar.bundle.bin"
"Art\Models\Effects\monster_effects\ParasiticSquid\ink_sac.bundle.bin"
"Art\Models\Effects\monster_effects\Perandus\chest.bundle.bin"
"Art\Models\Effects\monster_effects\Perandus\gold_platform.bundle.bin"
"Art\Models\Effects\monster_effects\Perandus\key_chest_buff.bundle.bin"
"Art\Models\Effects\monster_effects\Perandus\revive.bundle.bin"
"Art\Models\Effects\monster_effects\Phoenix\emerge.bundle.bin"
"Art\Models\Effects\monster_effects\Phoenix\Guardian_Of_Phoenix.bundle.bin"
"Art\Models\Effects\monster_effects\Phoenix\projectile_impact.bundle.bin"
"Art\Models\Effects\monster_effects\physicalstorm_call\idle.bundle.bin"
"Art\Models\Effects\monster_effects\physicalstorm_call\impact.bundle.bin"
"Art\Models\Effects\monster_effects\prophecy_league\PaleKing.bundle.bin"
"Art\Models\Effects\monster_effects\prophecy_league\PaleKingChaos.bundle.bin"
"Art\Models\Effects\monster_effects\prophecy_league\quest.bundle.bin"
"Art\Models\Effects\monster_effects\prophecy_league\summon_spectre.bundle.bin"
"Art\Models\Effects\monster_effects\prophecy_league\trap.bundle.bin"
"Art\Models\Effects\monster_effects\rare_explode\ice.bundle.bin"
"Art\Models\Effects\monster_effects\rare_explode\light.bundle.bin"
"Art\Models\Effects\monster_effects\rare_explode\light_1.bundle.bin"
"Art\Models\Effects\monster_effects\ReliquaryMonster\Relics_skill.bundle.bin"
"Art\Models\Effects\monster_effects\RockGolem\ground_slam.bundle.bin"
"Art\Models\Effects\monster_effects\scav_driftwoodthrow\torch_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\Scorpion\emerge.bundle.bin"
"Art\Models\Effects\monster_effects\self_explosion\charge.bundle.bin"
"Art\Models\Effects\monster_effects\self_explosion\charge_1.bundle.bin"
"Art\Models\Effects\monster_effects\self_explosion\explode.bundle.bin"
"Art\Models\Effects\monster_effects\SkeletonBossCrossroads\ice_sweep.bundle.bin"
"Art\Models\Effects\monster_effects\SkeletonOssuary\Bone_mortar.bundle.bin"
"Art\Models\Effects\monster_effects\skeletons\LieutenantBurningHammer_explosion.bundle.bin"
"Art\Models\Effects\monster_effects\SkeletonSoldier_carpetbomb\second_explode.bundle.bin"
"Art\Models\Effects\monster_effects\SkeletonSoldier_carpetbomb\second_projectile.bundle.bin"
"Art\Models\Effects\monster_effects\Solaris_and_Lunaris\Lunaris.bundle.bin"
"Art\Models\Effects\monster_effects\Solaris_and_Lunaris\Solaris.bundle.bin"
"Art\Models\Effects\monster_effects\Solaris_and_Lunaris\Statues.bundle.bin"
"Art\Models\Effects\monster_effects\storm_call\idle.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\fire_arctic_breath.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\gore_mortar.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\icy_areadamage.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\kiweth.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\lightning_coldsnap.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\locustswarm_aoe.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\monster_buff.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\rigwald.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\rune_trap.bundle.bin"
"Art\Models\Effects\monster_effects\talisman\shrink.bundle.bin"
"Art\Models\Effects\monster_effects\tempest_sheild\alchemy_shell.bundle.bin"
"Art\Models\Effects\monster_effects\totems\BleedNova.bundle.bin"
"Art\Models\Effects\monster_effects\totems\CrystalTotem.bundle.bin"
"Art\Models\Effects\monster_effects\totems\DamageTakenOnMovement.bundle.bin"
"Art\Models\Effects\monster_effects\totems\IceCrystalTotem.bundle.bin"
"Art\Models\Effects\monster_effects\totems\increaseddamage.bundle.bin"
"Art\Models\Effects\monster_effects\totems\NovaChargeFlask.bundle.bin"
"Art\Models\Effects\monster_effects\totems\TemplarMissionRelic.bundle.bin"
"Art\Models\Effects\monster_effects\Tukohama\Tukohama_a.bundle.bin"
"Art\Models\Effects\monster_effects\undying\Bladefall.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\BasicMortar.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\Cleave.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\Deathacid.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\EggHatch.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\EggMortarImpact.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\RiptideProjectile.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\ShadowRiptide.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\WebMortar.bundle.bin"
"Art\Models\Effects\monster_effects\vaalspiderboss\Webzone.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\ice_call.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\mirror_mode.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\reskins.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\reskins_1.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\reskins_2.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\soul_sacrifice_atziri.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\spear_throw.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\spine_rain_of_arrows.bundle.bin"
"Art\Models\Effects\monster_effects\vaal_sacrifice\spine_storm.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\chargeup.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\chargeup_explosion.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\emerge.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\emerge_weapon.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\lightning_bomb.bundle.bin"
"Art\Models\Effects\monster_effects\Viking_Vinktars_Square\quake_slam.bundle.bin"
"Art\Models\MONSTERS\monster_attachements.bundle.bin"
"Art\Models\MONSTERS\mossmonster.bundle.bin"
"Art\Models\MONSTERS\mossmonster_magic.bundle.bin"
"Art\Models\MONSTERS\Urchinmonster.bundle.bin"
"Art\Models\MONSTERS\Urchinmonster\Textures.bundle.bin"
"Art\particles\conditions\large_monster_1.bundle.bin"
"Art\particles\dominating_blow\monster_covert.bundle.bin"
"Art\particles\dominating_blow\monster_hit.bundle.bin"
"Art\particles\monster_particles\abyss_mine_bat_puke.bundle.bin"
"Art\particles\monster_particles\act1.bundle.bin"
"Art\particles\monster_particles\act10.bundle.bin"
"Art\particles\monster_particles\act10_1.bundle.bin"
"Art\particles\monster_particles\act10_10.bundle.bin"
"Art\particles\monster_particles\act10_11.bundle.bin"
"Art\particles\monster_particles\act10_12.bundle.bin"
"Art\particles\monster_particles\act10_13.bundle.bin"
"Art\particles\monster_particles\act10_14.bundle.bin"
"Art\particles\monster_particles\act10_15.bundle.bin"
"Art\particles\monster_particles\act10_16.bundle.bin"
"Art\particles\monster_particles\act10_17.bundle.bin"
"Art\particles\monster_particles\act10_18.bundle.bin"
"Art\particles\monster_particles\act10_19.bundle.bin"
"Art\particles\monster_particles\act10_2.bundle.bin"
"Art\particles\monster_particles\act10_20.bundle.bin"
"Art\particles\monster_particles\act10_21.bundle.bin"
"Art\particles\monster_particles\act10_22.bundle.bin"
"Art\particles\monster_particles\act10_23.bundle.bin"
"Art\particles\monster_particles\act10_24.bundle.bin"
"Art\particles\monster_particles\act10_25.bundle.bin"
"Art\particles\monster_particles\act10_26.bundle.bin"
"Art\particles\monster_particles\act10_27.bundle.bin"
"Art\particles\monster_particles\act10_28.bundle.bin"
"Art\particles\monster_particles\act10_29.bundle.bin"
"Art\particles\monster_particles\act10_3.bundle.bin"
"Art\particles\monster_particles\act10_30.bundle.bin"
"Art\particles\monster_particles\act10_4.bundle.bin"
"Art\particles\monster_particles\act10_5.bundle.bin"
"Art\particles\monster_particles\act10_6.bundle.bin"
"Art\particles\monster_particles\act10_7.bundle.bin"
"Art\particles\monster_particles\act10_8.bundle.bin"
"Art\particles\monster_particles\act10_9.bundle.bin"
"Art\particles\monster_particles\act1_1.bundle.bin"
"Art\particles\monster_particles\act1_10.bundle.bin"
"Art\particles\monster_particles\act1_11.bundle.bin"
"Art\particles\monster_particles\act1_12.bundle.bin"
"Art\particles\monster_particles\act1_13.bundle.bin"
"Art\particles\monster_particles\act1_14.bundle.bin"
"Art\particles\monster_particles\act1_15.bundle.bin"
"Art\particles\monster_particles\act1_16.bundle.bin"
"Art\particles\monster_particles\act1_17.bundle.bin"
"Art\particles\monster_particles\act1_18.bundle.bin"
"Art\particles\monster_particles\act1_19.bundle.bin"
"Art\particles\monster_particles\act1_2.bundle.bin"
"Art\particles\monster_particles\act1_20.bundle.bin"
"Art\particles\monster_particles\act1_21.bundle.bin"
"Art\particles\monster_particles\act1_22.bundle.bin"
"Art\particles\monster_particles\act1_3.bundle.bin"
"Art\particles\monster_particles\act1_4.bundle.bin"
"Art\particles\monster_particles\act1_5.bundle.bin"
"Art\particles\monster_particles\act1_6.bundle.bin"
"Art\particles\monster_particles\act1_7.bundle.bin"
"Art\particles\monster_particles\act1_8.bundle.bin"
"Art\particles\monster_particles\act1_9.bundle.bin"
"Art\particles\monster_particles\act2.bundle.bin"
"Art\particles\monster_particles\act2_1.bundle.bin"
"Art\particles\monster_particles\act2_boss.bundle.bin"
"Art\particles\monster_particles\act2_boss_1.bundle.bin"
"Art\particles\monster_particles\act2_boss_10.bundle.bin"
"Art\particles\monster_particles\act2_boss_2.bundle.bin"
"Art\particles\monster_particles\act2_boss_3.bundle.bin"
"Art\particles\monster_particles\act2_boss_4.bundle.bin"
"Art\particles\monster_particles\act2_boss_5.bundle.bin"
"Art\particles\monster_particles\act2_boss_6.bundle.bin"
"Art\particles\monster_particles\act2_boss_7.bundle.bin"
"Art\particles\monster_particles\act2_boss_8.bundle.bin"
"Art\particles\monster_particles\act2_boss_9.bundle.bin"
"Art\particles\monster_particles\Act2_FOUR.bundle.bin"
"Art\particles\monster_particles\act3.bundle.bin"
"Art\particles\monster_particles\act3_1.bundle.bin"
"Art\particles\monster_particles\act3_10.bundle.bin"
"Art\particles\monster_particles\act3_11.bundle.bin"
"Art\particles\monster_particles\act3_12.bundle.bin"
"Art\particles\monster_particles\act3_13.bundle.bin"
"Art\particles\monster_particles\act3_14.bundle.bin"
"Art\particles\monster_particles\act3_15.bundle.bin"
"Art\particles\monster_particles\act3_16.bundle.bin"
"Art\particles\monster_particles\act3_17.bundle.bin"
"Art\particles\monster_particles\act3_18.bundle.bin"
"Art\particles\monster_particles\act3_19.bundle.bin"
"Art\particles\monster_particles\act3_2.bundle.bin"
"Art\particles\monster_particles\act3_20.bundle.bin"
"Art\particles\monster_particles\act3_21.bundle.bin"
"Art\particles\monster_particles\act3_22.bundle.bin"
"Art\particles\monster_particles\act3_23.bundle.bin"
"Art\particles\monster_particles\act3_24.bundle.bin"
"Art\particles\monster_particles\act3_25.bundle.bin"
"Art\particles\monster_particles\act3_26.bundle.bin"
"Art\particles\monster_particles\act3_27.bundle.bin"
"Art\particles\monster_particles\act3_28.bundle.bin"
"Art\particles\monster_particles\act3_29.bundle.bin"
"Art\particles\monster_particles\act3_3.bundle.bin"
"Art\particles\monster_particles\act3_30.bundle.bin"
"Art\particles\monster_particles\act3_31.bundle.bin"
"Art\particles\monster_particles\act3_32.bundle.bin"
"Art\particles\monster_particles\act3_33.bundle.bin"
"Art\particles\monster_particles\act3_34.bundle.bin"
"Art\particles\monster_particles\act3_35.bundle.bin"
"Art\particles\monster_particles\act3_4.bundle.bin"
"Art\particles\monster_particles\act3_5.bundle.bin"
"Art\particles\monster_particles\act3_6.bundle.bin"
"Art\particles\monster_particles\act3_7.bundle.bin"
"Art\particles\monster_particles\act3_8.bundle.bin"
"Art\particles\monster_particles\act3_9.bundle.bin"
"Art\particles\monster_particles\act4.bundle.bin"
"Art\particles\monster_particles\act4_1.bundle.bin"
"Art\particles\monster_particles\act4_10.bundle.bin"
"Art\particles\monster_particles\act4_11.bundle.bin"
"Art\particles\monster_particles\act4_12.bundle.bin"
"Art\particles\monster_particles\act4_13.bundle.bin"
"Art\particles\monster_particles\act4_14.bundle.bin"
"Art\particles\monster_particles\act4_15.bundle.bin"
"Art\particles\monster_particles\act4_16.bundle.bin"
"Art\particles\monster_particles\act4_17.bundle.bin"
"Art\particles\monster_particles\act4_18.bundle.bin"
"Art\particles\monster_particles\act4_19.bundle.bin"
"Art\particles\monster_particles\act4_2.bundle.bin"
"Art\particles\monster_particles\act4_20.bundle.bin"
"Art\particles\monster_particles\act4_21.bundle.bin"
"Art\particles\monster_particles\act4_22.bundle.bin"
"Art\particles\monster_particles\act4_23.bundle.bin"
"Art\particles\monster_particles\act4_24.bundle.bin"
"Art\particles\monster_particles\act4_25.bundle.bin"
"Art\particles\monster_particles\act4_26.bundle.bin"
"Art\particles\monster_particles\act4_27.bundle.bin"
"Art\particles\monster_particles\act4_28.bundle.bin"
"Art\particles\monster_particles\act4_29.bundle.bin"
"Art\particles\monster_particles\act4_3.bundle.bin"
"Art\particles\monster_particles\act4_30.bundle.bin"
"Art\particles\monster_particles\act4_31.bundle.bin"
"Art\particles\monster_particles\act4_32.bundle.bin"
"Art\particles\monster_particles\act4_33.bundle.bin"
"Art\particles\monster_particles\act4_34.bundle.bin"
"Art\particles\monster_particles\act4_35.bundle.bin"
"Art\particles\monster_particles\act4_36.bundle.bin"
"Art\particles\monster_particles\act4_37.bundle.bin"
"Art\particles\monster_particles\act4_38.bundle.bin"
"Art\particles\monster_particles\act4_39.bundle.bin"
"Art\particles\monster_particles\act4_4.bundle.bin"
"Art\particles\monster_particles\act4_40.bundle.bin"
"Art\particles\monster_particles\act4_41.bundle.bin"
"Art\particles\monster_particles\act4_42.bundle.bin"
"Art\particles\monster_particles\act4_43.bundle.bin"
"Art\particles\monster_particles\act4_44.bundle.bin"
"Art\particles\monster_particles\act4_45.bundle.bin"
"Art\particles\monster_particles\act4_46.bundle.bin"
"Art\particles\monster_particles\act4_47.bundle.bin"
"Art\particles\monster_particles\act4_48.bundle.bin"
"Art\particles\monster_particles\act4_49.bundle.bin"
"Art\particles\monster_particles\act4_5.bundle.bin"
"Art\particles\monster_particles\act4_51.bundle.bin"
"Art\particles\monster_particles\act4_52.bundle.bin"
"Art\particles\monster_particles\act4_53.bundle.bin"
"Art\particles\monster_particles\act4_54.bundle.bin"
"Art\particles\monster_particles\act4_55.bundle.bin"
"Art\particles\monster_particles\act4_56.bundle.bin"
"Art\particles\monster_particles\act4_57.bundle.bin"
"Art\particles\monster_particles\act4_58.bundle.bin"
"Art\particles\monster_particles\act4_59.bundle.bin"
"Art\particles\monster_particles\act4_6.bundle.bin"
"Art\particles\monster_particles\act4_60.bundle.bin"
"Art\particles\monster_particles\act4_61.bundle.bin"
"Art\particles\monster_particles\act4_62.bundle.bin"
"Art\particles\monster_particles\act4_63.bundle.bin"
"Art\particles\monster_particles\act4_7.bundle.bin"
"Art\particles\monster_particles\act4_8.bundle.bin"
"Art\particles\monster_particles\act4_9.bundle.bin"
"Art\particles\monster_particles\act5.bundle.bin"
"Art\particles\monster_particles\act5_1.bundle.bin"
"Art\particles\monster_particles\act5_10.bundle.bin"
"Art\particles\monster_particles\act5_11.bundle.bin"
"Art\particles\monster_particles\act5_12.bundle.bin"
"Art\particles\monster_particles\act5_13.bundle.bin"
"Art\particles\monster_particles\act5_14.bundle.bin"
"Art\particles\monster_particles\act5_15.bundle.bin"
"Art\particles\monster_particles\act5_16.bundle.bin"
"Art\particles\monster_particles\act5_17.bundle.bin"
"Art\particles\monster_particles\act5_18.bundle.bin"
"Art\particles\monster_particles\act5_2.bundle.bin"
"Art\particles\monster_particles\act5_20.bundle.bin"
"Art\particles\monster_particles\act5_3.bundle.bin"
"Art\particles\monster_particles\act5_4.bundle.bin"
"Art\particles\monster_particles\act5_5.bundle.bin"
"Art\particles\monster_particles\act5_6.bundle.bin"
"Art\particles\monster_particles\act5_7.bundle.bin"
"Art\particles\monster_particles\act5_8.bundle.bin"
"Art\particles\monster_particles\act5_9.bundle.bin"
"Art\particles\monster_particles\act6.bundle.bin"
"Art\particles\monster_particles\act6_1.bundle.bin"
"Art\particles\monster_particles\act6_10.bundle.bin"
"Art\particles\monster_particles\act6_11.bundle.bin"
"Art\particles\monster_particles\act6_12.bundle.bin"
"Art\particles\monster_particles\act6_13.bundle.bin"
"Art\particles\monster_particles\act6_14.bundle.bin"
"Art\particles\monster_particles\act6_15.bundle.bin"
"Art\particles\monster_particles\act6_16.bundle.bin"
"Art\particles\monster_particles\act6_17.bundle.bin"
"Art\particles\monster_particles\act6_2.bundle.bin"
"Art\particles\monster_particles\act6_3.bundle.bin"
"Art\particles\monster_particles\act6_4.bundle.bin"
"Art\particles\monster_particles\act6_5.bundle.bin"
"Art\particles\monster_particles\act6_6.bundle.bin"
"Art\particles\monster_particles\act6_7.bundle.bin"
"Art\particles\monster_particles\act6_8.bundle.bin"
"Art\particles\monster_particles\act6_9.bundle.bin"
"Art\particles\monster_particles\act7.bundle.bin"
"Art\particles\monster_particles\act7_1.bundle.bin"
"Art\particles\monster_particles\act7_10.bundle.bin"
"Art\particles\monster_particles\act7_11.bundle.bin"
"Art\particles\monster_particles\act7_12.bundle.bin"
"Art\particles\monster_particles\act7_13.bundle.bin"
"Art\particles\monster_particles\act7_2.bundle.bin"
"Art\particles\monster_particles\act7_3.bundle.bin"
"Art\particles\monster_particles\act7_4.bundle.bin"
"Art\particles\monster_particles\act7_5.bundle.bin"
"Art\particles\monster_particles\act7_6.bundle.bin"
"Art\particles\monster_particles\act7_7.bundle.bin"
"Art\particles\monster_particles\act7_8.bundle.bin"
"Art\particles\monster_particles\act7_9.bundle.bin"
"Art\particles\monster_particles\act8.bundle.bin"
"Art\particles\monster_particles\act8_1.bundle.bin"
"Art\particles\monster_particles\act8_10.bundle.bin"
"Art\particles\monster_particles\act8_11.bundle.bin"
"Art\particles\monster_particles\act8_12.bundle.bin"
"Art\particles\monster_particles\act8_13.bundle.bin"
"Art\particles\monster_particles\act8_14.bundle.bin"
"Art\particles\monster_particles\act8_15.bundle.bin"
"Art\particles\monster_particles\act8_16.bundle.bin"
"Art\particles\monster_particles\act8_17.bundle.bin"
"Art\particles\monster_particles\act8_18.bundle.bin"
"Art\particles\monster_particles\act8_19.bundle.bin"
"Art\particles\monster_particles\act8_2.bundle.bin"
"Art\particles\monster_particles\act8_20.bundle.bin"
"Art\particles\monster_particles\act8_21.bundle.bin"
"Art\particles\monster_particles\act8_22.bundle.bin"
"Art\particles\monster_particles\act8_23.bundle.bin"
"Art\particles\monster_particles\act8_24.bundle.bin"
"Art\particles\monster_particles\act8_25.bundle.bin"
"Art\particles\monster_particles\act8_26.bundle.bin"
"Art\particles\monster_particles\act8_27.bundle.bin"
"Art\particles\monster_particles\act8_28.bundle.bin"
"Art\particles\monster_particles\act8_29.bundle.bin"
"Art\particles\monster_particles\act8_3.bundle.bin"
"Art\particles\monster_particles\act8_30.bundle.bin"
"Art\particles\monster_particles\act8_4.bundle.bin"
"Art\particles\monster_particles\act8_5.bundle.bin"
"Art\particles\monster_particles\act8_6.bundle.bin"
"Art\particles\monster_particles\act8_7.bundle.bin"
"Art\particles\monster_particles\act8_8.bundle.bin"
"Art\particles\monster_particles\act8_9.bundle.bin"
"Art\particles\monster_particles\act9.bundle.bin"
"Art\particles\monster_particles\act9_1.bundle.bin"
"Art\particles\monster_particles\act9_10.bundle.bin"
"Art\particles\monster_particles\act9_11.bundle.bin"
"Art\particles\monster_particles\act9_12.bundle.bin"
"Art\particles\monster_particles\act9_13.bundle.bin"
"Art\particles\monster_particles\act9_14.bundle.bin"
"Art\particles\monster_particles\act9_15.bundle.bin"
"Art\particles\monster_particles\act9_16.bundle.bin"
"Art\particles\monster_particles\act9_17.bundle.bin"
"Art\particles\monster_particles\act9_18.bundle.bin"
"Art\particles\monster_particles\act9_19.bundle.bin"
"Art\particles\monster_particles\act9_2.bundle.bin"
"Art\particles\monster_particles\act9_20.bundle.bin"
"Art\particles\monster_particles\act9_21.bundle.bin"
"Art\particles\monster_particles\act9_22.bundle.bin"
"Art\particles\monster_particles\act9_23.bundle.bin"
"Art\particles\monster_particles\act9_24.bundle.bin"
"Art\particles\monster_particles\act9_25.bundle.bin"
"Art\particles\monster_particles\act9_26.bundle.bin"
"Art\particles\monster_particles\act9_27.bundle.bin"
"Art\particles\monster_particles\act9_28.bundle.bin"
"Art\particles\monster_particles\act9_29.bundle.bin"
"Art\particles\monster_particles\act9_3.bundle.bin"
"Art\particles\monster_particles\act9_30.bundle.bin"
"Art\particles\monster_particles\act9_31.bundle.bin"
"Art\particles\monster_particles\act9_32.bundle.bin"
"Art\particles\monster_particles\act9_33.bundle.bin"
"Art\particles\monster_particles\act9_34.bundle.bin"
"Art\particles\monster_particles\act9_35.bundle.bin"
"Art\particles\monster_particles\act9_36.bundle.bin"
"Art\particles\monster_particles\act9_37.bundle.bin"
"Art\particles\monster_particles\act9_38.bundle.bin"
"Art\particles\monster_particles\act9_39.bundle.bin"
"Art\particles\monster_particles\act9_4.bundle.bin"
"Art\particles\monster_particles\act9_42.bundle.bin"
"Art\particles\monster_particles\act9_45.bundle.bin"
"Art\particles\monster_particles\act9_5.bundle.bin"
"Art\particles\monster_particles\act9_6.bundle.bin"
"Art\particles\monster_particles\act9_7.bundle.bin"
"Art\particles\monster_particles\act9_8.bundle.bin"
"Art\particles\monster_particles\act9_9.bundle.bin"
"Art\particles\monster_particles\aoe_revive.bundle.bin"
"Art\particles\monster_particles\AtlasExiles.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_1.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_10.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_11.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_12.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_13.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_14.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_15.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_16.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_17.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_18.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_19.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_2.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_20.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_21.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_22.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_23.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_24.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_25.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_26.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_27.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_28.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_29.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_3.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_30.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_31.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_32.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_33.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_34.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_35.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_36.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_37.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_38.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_39.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_4.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_40.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_41.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_42.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_43.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_44.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_45.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_46.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_47.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_48.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_49.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_5.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_50.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_51.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_52.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_53.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_54.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_55.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_56.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_57.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_58.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_59.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_6.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_60.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_61.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_62.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_63.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_64.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_65.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_66.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_67.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_68.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_69.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_7.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_70.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_71.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_72.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_73.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_74.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_75.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_76.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_77.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_78.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_79.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_8.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_80.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_81.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_82.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_83.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_84.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_85.bundle.bin"
"Art\particles\monster_particles\AtlasExiles_9.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_1.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_10.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_11.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_12.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_13.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_14.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_15.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_16.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_17.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_18.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_19.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_2.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_20.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_21.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_22.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_23.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_24.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_25.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_26.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_27.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_28.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_29.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_3.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_30.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_31.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_32.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_33.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_34.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_35.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_36.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_37.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_38.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_39.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_4.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_40.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_41.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_42.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_43.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_44.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_45.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_46.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_47.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_48.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_49.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_5.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_50.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_51.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_52.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_53.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_54.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_55.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_56.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_57.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_58.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_59.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_6.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_60.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_61.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_62.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_63.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_64.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_65.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_66.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_67.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_68.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_69.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_7.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_70.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_71.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_72.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_73.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_74.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_75.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_76.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_77.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_78.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_79.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_8.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_80.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_81.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_82.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_83.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_84.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_85.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_86.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_87.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_88.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_89.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_9.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_90.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_91.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_92.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_93.bundle.bin"
"Art\particles\monster_particles\AtlasofWorldsBosses_94.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_1.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_10.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_100.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_101.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_102.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_103.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_104.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_105.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_106.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_107.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_108.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_109.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_11.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_110.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_111.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_112.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_113.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_114.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_115.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_116.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_117.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_118.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_119.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_12.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_120.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_121.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_122.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_123.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_124.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_125.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_126.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_127.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_128.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_129.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_13.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_130.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_132.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_133.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_134.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_135.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_136.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_14.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_140.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_141.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_142.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_146.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_147.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_15.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_16.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_17.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_18.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_19.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_2.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_20.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_21.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_22.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_23.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_24.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_25.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_26.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_27.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_28.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_29.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_3.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_30.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_31.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_32.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_33.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_34.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_35.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_36.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_37.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_38.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_39.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_4.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_40.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_41.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_42.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_43.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_44.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_45.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_46.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_47.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_48.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_49.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_5.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_50.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_51.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_52.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_53.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_54.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_55.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_56.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_57.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_58.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_59.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_6.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_60.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_61.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_62.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_63.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_64.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_65.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_66.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_67.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_68.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_69.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_7.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_70.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_71.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_72.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_73.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_74.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_75.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_76.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_77.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_78.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_79.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_8.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_80.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_81.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_82.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_83.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_84.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_85.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_86.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_87.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_88.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_89.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_9.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_90.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_91.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_92.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_93.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_94.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_95.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_96.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_97.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_98.bundle.bin"
"Art\particles\monster_particles\AtlasofWorlds_99.bundle.bin"
"Art\particles\monster_particles\AtlasPassives_FX.bundle.bin"
"Art\particles\monster_particles\AtlasPreQuest.bundle.bin"
"Art\particles\monster_particles\aura.bundle.bin"
"Art\particles\monster_particles\aura_1.bundle.bin"
"Art\particles\monster_particles\aura_10.bundle.bin"
"Art\particles\monster_particles\aura_11.bundle.bin"
"Art\particles\monster_particles\aura_2.bundle.bin"
"Art\particles\monster_particles\aura_2013.bundle.bin"
"Art\particles\monster_particles\aura_2013_1.bundle.bin"
"Art\particles\monster_particles\aura_2013_2.bundle.bin"
"Art\particles\monster_particles\aura_3.bundle.bin"
"Art\particles\monster_particles\aura_4.bundle.bin"
"Art\particles\monster_particles\aura_5.bundle.bin"
"Art\particles\monster_particles\aura_6.bundle.bin"
"Art\particles\monster_particles\aura_7.bundle.bin"
"Art\particles\monster_particles\aura_8.bundle.bin"
"Art\particles\monster_particles\aura_9.bundle.bin"
"Art\particles\monster_particles\AxisCasterBoss.bundle.bin"
"Art\particles\monster_particles\Bandits.bundle.bin"
"Art\particles\monster_particles\Bandits_1.bundle.bin"
"Art\particles\monster_particles\beyonddemons.bundle.bin"
"Art\particles\monster_particles\Beyond_Demons.bundle.bin"
"Art\particles\monster_particles\BlackguardInquisitor.bundle.bin"
"Art\particles\monster_particles\BlackGuard_Cleric.bundle.bin"
"Art\particles\monster_particles\BlackGuard_Cleric_1.bundle.bin"
"Art\particles\monster_particles\BlackGuard_Cleric_2.bundle.bin"
"Art\particles\monster_particles\BlackGuard_Cleric_3.bundle.bin"
"Art\particles\monster_particles\BlacksmithGolem.bundle.bin"
"Art\particles\monster_particles\BlacksmithGolem_1.bundle.bin"
"Art\particles\monster_particles\BlacksmithGolem_2.bundle.bin"
"Art\particles\monster_particles\BlacksmithGolem_3.bundle.bin"
"Art\particles\monster_particles\BlacksmithGolem_4.bundle.bin"
"Art\particles\monster_particles\blessed_sister.bundle.bin"
"Art\particles\monster_particles\blessed_sister_1.bundle.bin"
"Art\particles\monster_particles\blessed_sister_2.bundle.bin"
"Art\particles\monster_particles\blessed_sister_3.bundle.bin"
"Art\particles\monster_particles\blessed_sister_4.bundle.bin"
"Art\particles\monster_particles\bloodlines.bundle.bin"
"Art\particles\monster_particles\blood_elemental.bundle.bin"
"Art\particles\monster_particles\blue_frog_emerge.bundle.bin"
"Art\particles\monster_particles\BoneStalker.bundle.bin"
"Art\particles\monster_particles\Breach.bundle.bin"
"Art\particles\monster_particles\Breach_1.bundle.bin"
"Art\particles\monster_particles\Breach_10.bundle.bin"
"Art\particles\monster_particles\Breach_11.bundle.bin"
"Art\particles\monster_particles\Breach_12.bundle.bin"
"Art\particles\monster_particles\Breach_13.bundle.bin"
"Art\particles\monster_particles\Breach_14.bundle.bin"
"Art\particles\monster_particles\Breach_15.bundle.bin"
"Art\particles\monster_particles\Breach_16.bundle.bin"
"Art\particles\monster_particles\Breach_17.bundle.bin"
"Art\particles\monster_particles\Breach_18.bundle.bin"
"Art\particles\monster_particles\Breach_19.bundle.bin"
"Art\particles\monster_particles\Breach_2.bundle.bin"
"Art\particles\monster_particles\Breach_20.bundle.bin"
"Art\particles\monster_particles\Breach_21.bundle.bin"
"Art\particles\monster_particles\Breach_22.bundle.bin"
"Art\particles\monster_particles\Breach_23.bundle.bin"
"Art\particles\monster_particles\Breach_24.bundle.bin"
"Art\particles\monster_particles\Breach_25.bundle.bin"
"Art\particles\monster_particles\Breach_26.bundle.bin"
"Art\particles\monster_particles\Breach_27.bundle.bin"
"Art\particles\monster_particles\Breach_3.bundle.bin"
"Art\particles\monster_particles\Breach_4.bundle.bin"
"Art\particles\monster_particles\Breach_5.bundle.bin"
"Art\particles\monster_particles\Breach_6.bundle.bin"
"Art\particles\monster_particles\Breach_7.bundle.bin"
"Art\particles\monster_particles\Breach_8.bundle.bin"
"Art\particles\monster_particles\Breach_9.bundle.bin"
"Art\particles\monster_particles\brutus.bundle.bin"
"Art\particles\monster_particles\brutus_1.bundle.bin"
"Art\particles\monster_particles\brutus_2.bundle.bin"
"Art\particles\monster_particles\brutus_3.bundle.bin"
"Art\particles\monster_particles\bull_thorns.bundle.bin"
"Art\particles\monster_particles\Burnwillow_Boss.bundle.bin"
"Art\particles\monster_particles\clockworkgolem_space.bundle.bin"
"Art\particles\monster_particles\coldstorm_call.bundle.bin"
"Art\particles\monster_particles\coldstorm_call_1.bundle.bin"
"Art\particles\monster_particles\CorpseWheel.bundle.bin"
"Art\particles\monster_particles\curse_transfer.bundle.bin"
"Art\particles\monster_particles\Daresso.bundle.bin"
"Art\particles\monster_particles\demonlion.bundle.bin"
"Art\particles\monster_particles\djinn_water_demon.bundle.bin"
"Art\particles\monster_particles\djinn_water_demon_1.bundle.bin"
"Art\particles\monster_particles\djinn_water_demon_2.bundle.bin"
"Art\particles\monster_particles\djinn_water_demon_3.bundle.bin"
"Art\particles\monster_particles\djinn_water_demon_4.bundle.bin"
"Art\particles\monster_particles\Doedre_blood_projectile.bundle.bin"
"Art\particles\monster_particles\drop_bear.bundle.bin"
"Art\particles\monster_particles\earth_nova.bundle.bin"
"Art\particles\monster_particles\elemental_beacon.bundle.bin"
"Art\particles\monster_particles\elemental_beacon_1.bundle.bin"
"Art\particles\monster_particles\elemental_beacon_2.bundle.bin"
"Art\particles\monster_particles\elemental_beacon_3.bundle.bin"
"Art\particles\monster_particles\elemental_beacon_4.bundle.bin"
"Art\particles\monster_particles\elemental_beacon_v2.bundle.bin"
"Art\particles\monster_particles\essence.bundle.bin"
"Art\particles\monster_particles\essence_1.bundle.bin"
"Art\particles\monster_particles\essence_2.bundle.bin"
"Art\particles\monster_particles\essence_3.bundle.bin"
"Art\particles\monster_particles\essence_4.bundle.bin"
"Art\particles\monster_particles\essence_5.bundle.bin"
"Art\particles\monster_particles\essence_6.bundle.bin"
"Art\particles\monster_particles\essence_8.bundle.bin"
"Art\particles\monster_particles\figurehead.bundle.bin"
"Art\particles\monster_particles\FireCore.bundle.bin"
"Art\particles\monster_particles\firestorm_call.bundle.bin"
"Art\particles\monster_particles\firestorm_call_1.bundle.bin"
"Art\particles\monster_particles\fire_elemental.bundle.bin"
"Art\particles\monster_particles\fire_elemental_1.bundle.bin"
"Art\particles\monster_particles\fire_elemental_2.bundle.bin"
"Art\particles\monster_particles\fire_elemental_3.bundle.bin"
"Art\particles\monster_particles\fire_elemental_4.bundle.bin"
"Art\particles\monster_particles\fire_elemental_5.bundle.bin"
"Art\particles\monster_particles\fire_nova.bundle.bin"
"Art\particles\monster_particles\flameblast.bundle.bin"
"Art\particles\monster_particles\flameblast_1.bundle.bin"
"Art\particles\monster_particles\forbidden_woods.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_1.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_10.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_11.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_12.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_13.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_14.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_2.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_3.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_4.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_5.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_6.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_7.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_8.bundle.bin"
"Art\particles\monster_particles\forbidden_woods_9.bundle.bin"
"Art\particles\monster_particles\forsaken_skeleton.bundle.bin"
"Art\particles\monster_particles\frost_sentinel_icespear.bundle.bin"
"Art\particles\monster_particles\frozen_cabins.bundle.bin"
"Art\particles\monster_particles\gaurdians.bundle.bin"
"Art\particles\monster_particles\gemlion.bundle.bin"
"Art\particles\monster_particles\GENERAL.bundle.bin"
"Art\particles\monster_particles\General_adus.bundle.bin"
"Art\particles\monster_particles\General_adus_1.bundle.bin"
"Art\particles\monster_particles\generic_projectiles.bundle.bin"
"Art\particles\monster_particles\ghost.bundle.bin"
"Art\particles\monster_particles\ghost_1.bundle.bin"
"Art\particles\monster_particles\ghost_pirates.bundle.bin"
"Art\particles\monster_particles\goatman.bundle.bin"
"Art\particles\monster_particles\goat_slam_02.bundle.bin"
"Art\particles\monster_particles\goat_slam_02_1.bundle.bin"
"Art\particles\monster_particles\goat_slam_02_2.bundle.bin"
"Art\particles\monster_particles\goat_slam_02_3.bundle.bin"
"Art\particles\monster_particles\GoddessStatue.bundle.bin"
"Art\particles\monster_particles\GoddessStatue_1.bundle.bin"
"Art\particles\monster_particles\Goddess_of_Justice.bundle.bin"
"Art\particles\monster_particles\gold_projectile.bundle.bin"
"Art\particles\monster_particles\gore_explode.bundle.bin"
"Art\particles\monster_particles\GraspingOrnaments.bundle.bin"
"Art\particles\monster_particles\Greust.bundle.bin"
"Art\particles\monster_particles\HalfSkeleton_chaos.bundle.bin"
"Art\particles\monster_particles\harbinger_richmenshield.bundle.bin"
"Art\particles\monster_particles\harbinger_sunbeam.bundle.bin"
"Art\particles\monster_particles\harbinger_sunbeam_1.bundle.bin"
"Art\particles\monster_particles\harbinger_sunbeam_2.bundle.bin"
"Art\particles\monster_particles\hellion.bundle.bin"
"Art\particles\monster_particles\hellion_1.bundle.bin"
"Art\particles\monster_particles\Holy_fire_elemental.bundle.bin"
"Art\particles\monster_particles\hound.bundle.bin"
"Art\particles\monster_particles\HuhuGrub.bundle.bin"
"Art\particles\monster_particles\Hydra.bundle.bin"
"Art\particles\monster_particles\Hydra_1.bundle.bin"
"Art\particles\monster_particles\Hydra_2.bundle.bin"
"Art\particles\monster_particles\iceGolem.bundle.bin"
"Art\particles\monster_particles\Impale_spike_explode.bundle.bin"
"Art\particles\monster_particles\inca_shadow.bundle.bin"
"Art\particles\monster_particles\insect_minion_explode.bundle.bin"
"Art\particles\monster_particles\insect_spawner.bundle.bin"
"Art\particles\monster_particles\insect_spawner_spit.bundle.bin"
"Art\particles\monster_particles\insect_spawner_spit_1.bundle.bin"
"Art\particles\monster_particles\insect_spawner_spit_2.bundle.bin"
"Art\particles\monster_particles\insect_spawner_spit_parasite.bundle.bin"
"Art\particles\monster_particles\invasion_monsters_particletextures.bundle.bin"
"Art\particles\monster_particles\invisiblefire.bundle.bin"
"Art\particles\monster_particles\Justicar_Casticus.bundle.bin"
"Art\particles\monster_particles\karuiFemaleSlaveGhost.bundle.bin"
"Art\particles\monster_particles\kitava_demon.bundle.bin"
"Art\particles\monster_particles\kitava_demon_1.bundle.bin"
"Art\particles\monster_particles\kitava_red.bundle.bin"
"Art\particles\monster_particles\kitava_red_1.bundle.bin"
"Art\particles\monster_particles\kitava_red_2.bundle.bin"
"Art\particles\monster_particles\kitava_red_3.bundle.bin"
"Art\particles\monster_particles\labyrinth.bundle.bin"
"Art\particles\monster_particles\labyrinth_1.bundle.bin"
"Art\particles\monster_particles\labyrinth_10.bundle.bin"
"Art\particles\monster_particles\labyrinth_11.bundle.bin"
"Art\particles\monster_particles\labyrinth_12.bundle.bin"
"Art\particles\monster_particles\labyrinth_13.bundle.bin"
"Art\particles\monster_particles\labyrinth_14.bundle.bin"
"Art\particles\monster_particles\labyrinth_15.bundle.bin"
"Art\particles\monster_particles\labyrinth_16.bundle.bin"
"Art\particles\monster_particles\labyrinth_17.bundle.bin"
"Art\particles\monster_particles\labyrinth_18.bundle.bin"
"Art\particles\monster_particles\labyrinth_19.bundle.bin"
"Art\particles\monster_particles\labyrinth_2.bundle.bin"
"Art\particles\monster_particles\labyrinth_20.bundle.bin"
"Art\particles\monster_particles\labyrinth_21.bundle.bin"
"Art\particles\monster_particles\labyrinth_22.bundle.bin"
"Art\particles\monster_particles\labyrinth_23.bundle.bin"
"Art\particles\monster_particles\labyrinth_3.bundle.bin"
"Art\particles\monster_particles\labyrinth_4.bundle.bin"
"Art\particles\monster_particles\labyrinth_5.bundle.bin"
"Art\particles\monster_particles\labyrinth_6.bundle.bin"
"Art\particles\monster_particles\labyrinth_7.bundle.bin"
"Art\particles\monster_particles\labyrinth_8.bundle.bin"
"Art\particles\monster_particles\labyrinth_9.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_1.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_10.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_100.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_101.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_102.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_103.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_104.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_105.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_106.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_11.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_12.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_13.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_14.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_15.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_16.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_17.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_18.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_19.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_2.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_20.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_21.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_22.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_23.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_24.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_25.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_26.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_27.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_28.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_29.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_3.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_30.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_31.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_32.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_33.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_34.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_35.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_36.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_37.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_38.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_39.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_4.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_40.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_41.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_42.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_43.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_44.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_45.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_46.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_47.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_48.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_49.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_5.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_50.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_51.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_52.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_53.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_54.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_55.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_56.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_57.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_58.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_59.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_6.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_60.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_61.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_62.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_63.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_64.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_65.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_66.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_67.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_68.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_69.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_7.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_70.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_71.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_72.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_73.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_74.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_75.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_76.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_77.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_78.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_79.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_8.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_80.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_81.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_82.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_83.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_84.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_85.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_86.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_87.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_88.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_89.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_9.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_90.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_91.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_92.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_93.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_94.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_95.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_96.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_97.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_98.bundle.bin"
"Art\particles\monster_particles\LeagueHarvest_99.bundle.bin"
"Art\particles\monster_particles\leaguestone_mod.bundle.bin"
"Art\particles\monster_particles\League_3_7_0.bundle.bin"
"Art\particles\monster_particles\League_3_9_0.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_1.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_10.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_11.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_12.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_13.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_14.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_15.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_16.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_17.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_18.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_19.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_2.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_20.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_21.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_22.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_23.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_24.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_25.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_26.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_27.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_28.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_29.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_3.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_30.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_31.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_32.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_33.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_4.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_5.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_6.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_7.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_8.bundle.bin"
"Art\particles\monster_particles\League_3_9_0_9.bundle.bin"
"Art\particles\monster_particles\League_Abyss.bundle.bin"
"Art\particles\monster_particles\League_Abyss_1.bundle.bin"
"Art\particles\monster_particles\League_Abyss_10.bundle.bin"
"Art\particles\monster_particles\League_Abyss_11.bundle.bin"
"Art\particles\monster_particles\League_Abyss_12.bundle.bin"
"Art\particles\monster_particles\League_Abyss_2.bundle.bin"
"Art\particles\monster_particles\League_Abyss_3.bundle.bin"
"Art\particles\monster_particles\League_Abyss_4.bundle.bin"
"Art\particles\monster_particles\League_Abyss_5.bundle.bin"
"Art\particles\monster_particles\League_Abyss_6.bundle.bin"
"Art\particles\monster_particles\League_Abyss_7.bundle.bin"
"Art\particles\monster_particles\League_Abyss_8.bundle.bin"
"Art\particles\monster_particles\League_Abyss_9.bundle.bin"
"Art\particles\monster_particles\League_Affliction.bundle.bin"
"Art\particles\monster_particles\League_Affliction_1.bundle.bin"
"Art\particles\monster_particles\League_Affliction_10.bundle.bin"
"Art\particles\monster_particles\League_Affliction_100.bundle.bin"
"Art\particles\monster_particles\League_Affliction_101.bundle.bin"
"Art\particles\monster_particles\League_Affliction_11.bundle.bin"
"Art\particles\monster_particles\League_Affliction_12.bundle.bin"
"Art\particles\monster_particles\League_Affliction_13.bundle.bin"
"Art\particles\monster_particles\League_Affliction_14.bundle.bin"
"Art\particles\monster_particles\League_Affliction_15.bundle.bin"
"Art\particles\monster_particles\League_Affliction_16.bundle.bin"
"Art\particles\monster_particles\League_Affliction_17.bundle.bin"
"Art\particles\monster_particles\League_Affliction_18.bundle.bin"
"Art\particles\monster_particles\League_Affliction_19.bundle.bin"
"Art\particles\monster_particles\League_Affliction_2.bundle.bin"
"Art\particles\monster_particles\League_Affliction_20.bundle.bin"
"Art\particles\monster_particles\League_Affliction_21.bundle.bin"
"Art\particles\monster_particles\League_Affliction_22.bundle.bin"
"Art\particles\monster_particles\League_Affliction_23.bundle.bin"
"Art\particles\monster_particles\League_Affliction_24.bundle.bin"
"Art\particles\monster_particles\League_Affliction_25.bundle.bin"
"Art\particles\monster_particles\League_Affliction_26.bundle.bin"
"Art\particles\monster_particles\League_Affliction_27.bundle.bin"
"Art\particles\monster_particles\League_Affliction_28.bundle.bin"
"Art\particles\monster_particles\League_Affliction_29.bundle.bin"
"Art\particles\monster_particles\League_Affliction_3.bundle.bin"
"Art\particles\monster_particles\League_Affliction_30.bundle.bin"
"Art\particles\monster_particles\League_Affliction_31.bundle.bin"
"Art\particles\monster_particles\League_Affliction_32.bundle.bin"
"Art\particles\monster_particles\League_Affliction_33.bundle.bin"
"Art\particles\monster_particles\League_Affliction_34.bundle.bin"
"Art\particles\monster_particles\League_Affliction_35.bundle.bin"
"Art\particles\monster_particles\League_Affliction_36.bundle.bin"
"Art\particles\monster_particles\League_Affliction_37.bundle.bin"
"Art\particles\monster_particles\League_Affliction_38.bundle.bin"
"Art\particles\monster_particles\League_Affliction_39.bundle.bin"
"Art\particles\monster_particles\League_Affliction_4.bundle.bin"
"Art\particles\monster_particles\League_Affliction_40.bundle.bin"
"Art\particles\monster_particles\League_Affliction_41.bundle.bin"
"Art\particles\monster_particles\League_Affliction_42.bundle.bin"
"Art\particles\monster_particles\League_Affliction_43.bundle.bin"
"Art\particles\monster_particles\League_Affliction_44.bundle.bin"
"Art\particles\monster_particles\League_Affliction_45.bundle.bin"
"Art\particles\monster_particles\League_Affliction_46.bundle.bin"
"Art\particles\monster_particles\League_Affliction_47.bundle.bin"
"Art\particles\monster_particles\League_Affliction_48.bundle.bin"
"Art\particles\monster_particles\League_Affliction_49.bundle.bin"
"Art\particles\monster_particles\League_Affliction_5.bundle.bin"
"Art\particles\monster_particles\League_Affliction_50.bundle.bin"
"Art\particles\monster_particles\League_Affliction_51.bundle.bin"
"Art\particles\monster_particles\League_Affliction_52.bundle.bin"
"Art\particles\monster_particles\League_Affliction_53.bundle.bin"
"Art\particles\monster_particles\League_Affliction_54.bundle.bin"
"Art\particles\monster_particles\League_Affliction_55.bundle.bin"
"Art\particles\monster_particles\League_Affliction_56.bundle.bin"
"Art\particles\monster_particles\League_Affliction_57.bundle.bin"
"Art\particles\monster_particles\League_Affliction_58.bundle.bin"
"Art\particles\monster_particles\League_Affliction_59.bundle.bin"
"Art\particles\monster_particles\League_Affliction_6.bundle.bin"
"Art\particles\monster_particles\League_Affliction_60.bundle.bin"
"Art\particles\monster_particles\League_Affliction_61.bundle.bin"
"Art\particles\monster_particles\League_Affliction_62.bundle.bin"
"Art\particles\monster_particles\League_Affliction_63.bundle.bin"
"Art\particles\monster_particles\League_Affliction_64.bundle.bin"
"Art\particles\monster_particles\League_Affliction_65.bundle.bin"
"Art\particles\monster_particles\League_Affliction_66.bundle.bin"
"Art\particles\monster_particles\League_Affliction_67.bundle.bin"
"Art\particles\monster_particles\League_Affliction_68.bundle.bin"
"Art\particles\monster_particles\League_Affliction_69.bundle.bin"
"Art\particles\monster_particles\League_Affliction_7.bundle.bin"
"Art\particles\monster_particles\League_Affliction_70.bundle.bin"
"Art\particles\monster_particles\League_Affliction_71.bundle.bin"
"Art\particles\monster_particles\League_Affliction_72.bundle.bin"
"Art\particles\monster_particles\League_Affliction_73.bundle.bin"
"Art\particles\monster_particles\League_Affliction_74.bundle.bin"
"Art\particles\monster_particles\League_Affliction_75.bundle.bin"
"Art\particles\monster_particles\League_Affliction_76.bundle.bin"
"Art\particles\monster_particles\League_Affliction_77.bundle.bin"
"Art\particles\monster_particles\League_Affliction_78.bundle.bin"
"Art\particles\monster_particles\League_Affliction_79.bundle.bin"
"Art\particles\monster_particles\League_Affliction_8.bundle.bin"
"Art\particles\monster_particles\League_Affliction_80.bundle.bin"
"Art\particles\monster_particles\League_Affliction_81.bundle.bin"
"Art\particles\monster_particles\League_Affliction_82.bundle.bin"
"Art\particles\monster_particles\League_Affliction_83.bundle.bin"
"Art\particles\monster_particles\League_Affliction_84.bundle.bin"
"Art\particles\monster_particles\League_Affliction_85.bundle.bin"
"Art\particles\monster_particles\League_Affliction_86.bundle.bin"
"Art\particles\monster_particles\League_Affliction_87.bundle.bin"
"Art\particles\monster_particles\League_Affliction_88.bundle.bin"
"Art\particles\monster_particles\League_Affliction_89.bundle.bin"
"Art\particles\monster_particles\League_Affliction_9.bundle.bin"
"Art\particles\monster_particles\League_Affliction_90.bundle.bin"
"Art\particles\monster_particles\League_Affliction_91.bundle.bin"
"Art\particles\monster_particles\League_Affliction_92.bundle.bin"
"Art\particles\monster_particles\League_Affliction_93.bundle.bin"
"Art\particles\monster_particles\League_Affliction_94.bundle.bin"
"Art\particles\monster_particles\League_Affliction_95.bundle.bin"
"Art\particles\monster_particles\League_Affliction_96.bundle.bin"
"Art\particles\monster_particles\League_Affliction_97.bundle.bin"
"Art\particles\monster_particles\League_Affliction_98.bundle.bin"
"Art\particles\monster_particles\League_Affliction_99.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_1.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_10.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_11.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_12.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_13.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_2.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_3.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_4.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_5.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_6.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_7.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_8.bundle.bin"
"Art\particles\monster_particles\League_Archnemesis_9.bundle.bin"
"Art\particles\monster_particles\league_avatar.bundle.bin"
"Art\particles\monster_particles\league_avatar_1.bundle.bin"
"Art\particles\monster_particles\league_avatar_2.bundle.bin"
"Art\particles\monster_particles\league_avatar_3.bundle.bin"
"Art\particles\monster_particles\League_Bestiary.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_1.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_10.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_11.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_12.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_13.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_14.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_15.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_16.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_17.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_18.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_19.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_2.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_20.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_21.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_22.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_23.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_24.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_25.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_26.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_27.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_28.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_29.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_3.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_30.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_31.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_32.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_33.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_34.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_35.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_36.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_4.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_5.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_6.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_7.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_8.bundle.bin"
"Art\particles\monster_particles\League_Bestiary_9.bundle.bin"
"Art\particles\monster_particles\League_Betrayal.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_1.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_10.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_100.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_101.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_102.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_103.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_104.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_105.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_106.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_107.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_108.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_109.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_11.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_110.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_111.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_112.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_113.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_114.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_115.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_116.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_117.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_118.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_119.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_12.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_120.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_121.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_122.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_123.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_124.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_125.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_126.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_127.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_128.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_129.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_13.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_130.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_131.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_132.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_133.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_134.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_135.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_136.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_137.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_138.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_139.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_14.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_140.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_141.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_142.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_143.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_144.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_145.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_146.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_147.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_149.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_15.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_151.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_16.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_17.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_18.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_19.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_2.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_20.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_21.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_22.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_23.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_24.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_25.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_26.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_27.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_28.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_29.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_3.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_30.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_31.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_32.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_33.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_34.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_35.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_36.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_37.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_38.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_39.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_4.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_40.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_41.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_42.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_43.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_44.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_45.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_46.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_47.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_48.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_49.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_5.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_50.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_51.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_52.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_53.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_54.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_55.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_56.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_57.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_58.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_59.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_6.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_60.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_61.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_62.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_63.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_64.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_65.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_66.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_67.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_68.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_69.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_7.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_70.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_71.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_72.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_73.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_74.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_75.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_76.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_77.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_78.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_79.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_8.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_80.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_81.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_82.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_83.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_84.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_85.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_86.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_87.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_88.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_89.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_9.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_90.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_91.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_92.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_93.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_94.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_95.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_96.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_97.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_98.bundle.bin"
"Art\particles\monster_particles\League_Betrayal_99.bundle.bin"
"Art\particles\monster_particles\League_Blight.bundle.bin"
"Art\particles\monster_particles\League_Blight_1.bundle.bin"
"Art\particles\monster_particles\League_Blight_10.bundle.bin"
"Art\particles\monster_particles\League_Blight_11.bundle.bin"
"Art\particles\monster_particles\League_Blight_12.bundle.bin"
"Art\particles\monster_particles\League_Blight_13.bundle.bin"
"Art\particles\monster_particles\League_Blight_14.bundle.bin"
"Art\particles\monster_particles\League_Blight_15.bundle.bin"
"Art\particles\monster_particles\League_Blight_16.bundle.bin"
"Art\particles\monster_particles\League_Blight_17.bundle.bin"
"Art\particles\monster_particles\League_Blight_18.bundle.bin"
"Art\particles\monster_particles\League_Blight_19.bundle.bin"
"Art\particles\monster_particles\League_Blight_2.bundle.bin"
"Art\particles\monster_particles\League_Blight_20.bundle.bin"
"Art\particles\monster_particles\League_Blight_21.bundle.bin"
"Art\particles\monster_particles\League_Blight_22.bundle.bin"
"Art\particles\monster_particles\League_Blight_23.bundle.bin"
"Art\particles\monster_particles\League_Blight_24.bundle.bin"
"Art\particles\monster_particles\League_Blight_25.bundle.bin"
"Art\particles\monster_particles\League_Blight_26.bundle.bin"
"Art\particles\monster_particles\League_Blight_27.bundle.bin"
"Art\particles\monster_particles\League_Blight_28.bundle.bin"
"Art\particles\monster_particles\League_Blight_29.bundle.bin"
"Art\particles\monster_particles\League_Blight_3.bundle.bin"
"Art\particles\monster_particles\League_Blight_30.bundle.bin"
"Art\particles\monster_particles\League_Blight_33.bundle.bin"
"Art\particles\monster_particles\League_Blight_34.bundle.bin"
"Art\particles\monster_particles\League_Blight_4.bundle.bin"
"Art\particles\monster_particles\League_Blight_5.bundle.bin"
"Art\particles\monster_particles\League_Blight_6.bundle.bin"
"Art\particles\monster_particles\League_Blight_7.bundle.bin"
"Art\particles\monster_particles\League_Blight_8.bundle.bin"
"Art\particles\monster_particles\League_Blight_9.bundle.bin"
"Art\particles\monster_particles\League_Delve.bundle.bin"
"Art\particles\monster_particles\League_Delve_1.bundle.bin"
"Art\particles\monster_particles\League_Delve_10.bundle.bin"
"Art\particles\monster_particles\League_Delve_11.bundle.bin"
"Art\particles\monster_particles\League_Delve_12.bundle.bin"
"Art\particles\monster_particles\League_Delve_13.bundle.bin"
"Art\particles\monster_particles\League_Delve_14.bundle.bin"
"Art\particles\monster_particles\League_Delve_15.bundle.bin"
"Art\particles\monster_particles\League_Delve_16.bundle.bin"
"Art\particles\monster_particles\League_Delve_17.bundle.bin"
"Art\particles\monster_particles\League_Delve_18.bundle.bin"
"Art\particles\monster_particles\League_Delve_19.bundle.bin"
"Art\particles\monster_particles\League_Delve_2.bundle.bin"
"Art\particles\monster_particles\League_Delve_20.bundle.bin"
"Art\particles\monster_particles\League_Delve_21.bundle.bin"
"Art\particles\monster_particles\League_Delve_22.bundle.bin"
"Art\particles\monster_particles\League_Delve_23.bundle.bin"
"Art\particles\monster_particles\League_Delve_24.bundle.bin"
"Art\particles\monster_particles\League_Delve_25.bundle.bin"
"Art\particles\monster_particles\League_Delve_26.bundle.bin"
"Art\particles\monster_particles\League_Delve_27.bundle.bin"
"Art\particles\monster_particles\League_Delve_28.bundle.bin"
"Art\particles\monster_particles\League_Delve_29.bundle.bin"
"Art\particles\monster_particles\League_Delve_3.bundle.bin"
"Art\particles\monster_particles\League_Delve_30.bundle.bin"
"Art\particles\monster_particles\League_Delve_31.bundle.bin"
"Art\particles\monster_particles\League_Delve_32.bundle.bin"
"Art\particles\monster_particles\League_Delve_33.bundle.bin"
"Art\particles\monster_particles\League_Delve_34.bundle.bin"
"Art\particles\monster_particles\League_Delve_35.bundle.bin"
"Art\particles\monster_particles\League_Delve_36.bundle.bin"
"Art\particles\monster_particles\League_Delve_37.bundle.bin"
"Art\particles\monster_particles\League_Delve_38.bundle.bin"
"Art\particles\monster_particles\League_Delve_39.bundle.bin"
"Art\particles\monster_particles\League_Delve_4.bundle.bin"
"Art\particles\monster_particles\League_Delve_40.bundle.bin"
"Art\particles\monster_particles\League_Delve_41.bundle.bin"
"Art\particles\monster_particles\League_Delve_42.bundle.bin"
"Art\particles\monster_particles\League_Delve_43.bundle.bin"
"Art\particles\monster_particles\League_Delve_44.bundle.bin"
"Art\particles\monster_particles\League_Delve_45.bundle.bin"
"Art\particles\monster_particles\League_Delve_46.bundle.bin"
"Art\particles\monster_particles\League_Delve_47.bundle.bin"
"Art\particles\monster_particles\League_Delve_48.bundle.bin"
"Art\particles\monster_particles\League_Delve_49.bundle.bin"
"Art\particles\monster_particles\League_Delve_5.bundle.bin"
"Art\particles\monster_particles\League_Delve_50.bundle.bin"
"Art\particles\monster_particles\League_Delve_51.bundle.bin"
"Art\particles\monster_particles\League_Delve_52.bundle.bin"
"Art\particles\monster_particles\League_Delve_53.bundle.bin"
"Art\particles\monster_particles\League_Delve_54.bundle.bin"
"Art\particles\monster_particles\League_Delve_56.bundle.bin"
"Art\particles\monster_particles\League_Delve_6.bundle.bin"
"Art\particles\monster_particles\League_Delve_60.bundle.bin"
"Art\particles\monster_particles\League_Delve_7.bundle.bin"
"Art\particles\monster_particles\League_Delve_8.bundle.bin"
"Art\particles\monster_particles\League_Delve_9.bundle.bin"
"Art\particles\monster_particles\League_Expedition.bundle.bin"
"Art\particles\monster_particles\League_Expedition_1.bundle.bin"
"Art\particles\monster_particles\League_Expedition_10.bundle.bin"
"Art\particles\monster_particles\League_Expedition_11.bundle.bin"
"Art\particles\monster_particles\League_Expedition_12.bundle.bin"
"Art\particles\monster_particles\League_Expedition_13.bundle.bin"
"Art\particles\monster_particles\League_Expedition_14.bundle.bin"
"Art\particles\monster_particles\League_Expedition_15.bundle.bin"
"Art\particles\monster_particles\League_Expedition_16.bundle.bin"
"Art\particles\monster_particles\League_Expedition_17.bundle.bin"
"Art\particles\monster_particles\League_Expedition_18.bundle.bin"
"Art\particles\monster_particles\League_Expedition_19.bundle.bin"
"Art\particles\monster_particles\League_Expedition_2.bundle.bin"
"Art\particles\monster_particles\League_Expedition_20.bundle.bin"
"Art\particles\monster_particles\League_Expedition_21.bundle.bin"
"Art\particles\monster_particles\League_Expedition_22.bundle.bin"
"Art\particles\monster_particles\League_Expedition_23.bundle.bin"
"Art\particles\monster_particles\League_Expedition_24.bundle.bin"
"Art\particles\monster_particles\League_Expedition_25.bundle.bin"
"Art\particles\monster_particles\League_Expedition_26.bundle.bin"
"Art\particles\monster_particles\League_Expedition_27.bundle.bin"
"Art\particles\monster_particles\League_Expedition_28.bundle.bin"
"Art\particles\monster_particles\League_Expedition_29.bundle.bin"
"Art\particles\monster_particles\League_Expedition_3.bundle.bin"
"Art\particles\monster_particles\League_Expedition_30.bundle.bin"
"Art\particles\monster_particles\League_Expedition_31.bundle.bin"
"Art\particles\monster_particles\League_Expedition_32.bundle.bin"
"Art\particles\monster_particles\League_Expedition_33.bundle.bin"
"Art\particles\monster_particles\League_Expedition_34.bundle.bin"
"Art\particles\monster_particles\League_Expedition_35.bundle.bin"
"Art\particles\monster_particles\League_Expedition_36.bundle.bin"
"Art\particles\monster_particles\League_Expedition_37.bundle.bin"
"Art\particles\monster_particles\League_Expedition_38.bundle.bin"
"Art\particles\monster_particles\League_Expedition_39.bundle.bin"
"Art\particles\monster_particles\League_Expedition_4.bundle.bin"
"Art\particles\monster_particles\League_Expedition_40.bundle.bin"
"Art\particles\monster_particles\League_Expedition_41.bundle.bin"
"Art\particles\monster_particles\League_Expedition_42.bundle.bin"
"Art\particles\monster_particles\League_Expedition_43.bundle.bin"
"Art\particles\monster_particles\League_Expedition_44.bundle.bin"
"Art\particles\monster_particles\League_Expedition_45.bundle.bin"
"Art\particles\monster_particles\League_Expedition_46.bundle.bin"
"Art\particles\monster_particles\League_Expedition_47.bundle.bin"
"Art\particles\monster_particles\League_Expedition_48.bundle.bin"
"Art\particles\monster_particles\League_Expedition_49.bundle.bin"
"Art\particles\monster_particles\League_Expedition_5.bundle.bin"
"Art\particles\monster_particles\League_Expedition_50.bundle.bin"
"Art\particles\monster_particles\League_Expedition_51.bundle.bin"
"Art\particles\monster_particles\League_Expedition_52.bundle.bin"
"Art\particles\monster_particles\League_Expedition_53.bundle.bin"
"Art\particles\monster_particles\League_Expedition_54.bundle.bin"
"Art\particles\monster_particles\League_Expedition_55.bundle.bin"
"Art\particles\monster_particles\League_Expedition_56.bundle.bin"
"Art\particles\monster_particles\League_Expedition_57.bundle.bin"
"Art\particles\monster_particles\League_Expedition_58.bundle.bin"
"Art\particles\monster_particles\League_Expedition_59.bundle.bin"
"Art\particles\monster_particles\League_Expedition_6.bundle.bin"
"Art\particles\monster_particles\League_Expedition_60.bundle.bin"
"Art\particles\monster_particles\League_Expedition_61.bundle.bin"
"Art\particles\monster_particles\League_Expedition_62.bundle.bin"
"Art\particles\monster_particles\League_Expedition_63.bundle.bin"
"Art\particles\monster_particles\League_Expedition_64.bundle.bin"
"Art\particles\monster_particles\League_Expedition_65.bundle.bin"
"Art\particles\monster_particles\League_Expedition_66.bundle.bin"
"Art\particles\monster_particles\League_Expedition_67.bundle.bin"
"Art\particles\monster_particles\League_Expedition_68.bundle.bin"
"Art\particles\monster_particles\League_Expedition_69.bundle.bin"
"Art\particles\monster_particles\League_Expedition_7.bundle.bin"
"Art\particles\monster_particles\League_Expedition_70.bundle.bin"
"Art\particles\monster_particles\League_Expedition_71.bundle.bin"
"Art\particles\monster_particles\League_Expedition_72.bundle.bin"
"Art\particles\monster_particles\League_Expedition_73.bundle.bin"
"Art\particles\monster_particles\League_Expedition_74.bundle.bin"
"Art\particles\monster_particles\League_Expedition_75.bundle.bin"
"Art\particles\monster_particles\League_Expedition_8.bundle.bin"
"Art\particles\monster_particles\League_Expedition_9.bundle.bin"
"Art\particles\monster_particles\League_Heist.bundle.bin"
"Art\particles\monster_particles\League_Heist_1.bundle.bin"
"Art\particles\monster_particles\League_Heist_10.bundle.bin"
"Art\particles\monster_particles\League_Heist_11.bundle.bin"
"Art\particles\monster_particles\League_Heist_12.bundle.bin"
"Art\particles\monster_particles\League_Heist_13.bundle.bin"
"Art\particles\monster_particles\League_Heist_14.bundle.bin"
"Art\particles\monster_particles\League_Heist_15.bundle.bin"
"Art\particles\monster_particles\League_Heist_16.bundle.bin"
"Art\particles\monster_particles\League_Heist_17.bundle.bin"
"Art\particles\monster_particles\League_Heist_18.bundle.bin"
"Art\particles\monster_particles\League_Heist_19.bundle.bin"
"Art\particles\monster_particles\League_Heist_2.bundle.bin"
"Art\particles\monster_particles\League_Heist_20.bundle.bin"
"Art\particles\monster_particles\League_Heist_21.bundle.bin"
"Art\particles\monster_particles\League_Heist_22.bundle.bin"
"Art\particles\monster_particles\League_Heist_23.bundle.bin"
"Art\particles\monster_particles\League_Heist_24.bundle.bin"
"Art\particles\monster_particles\League_Heist_25.bundle.bin"
"Art\particles\monster_particles\League_Heist_26.bundle.bin"
"Art\particles\monster_particles\League_Heist_27.bundle.bin"
"Art\particles\monster_particles\League_Heist_28.bundle.bin"
"Art\particles\monster_particles\League_Heist_29.bundle.bin"
"Art\particles\monster_particles\League_Heist_3.bundle.bin"
"Art\particles\monster_particles\League_Heist_30.bundle.bin"
"Art\particles\monster_particles\League_Heist_31.bundle.bin"
"Art\particles\monster_particles\League_Heist_32.bundle.bin"
"Art\particles\monster_particles\League_Heist_33.bundle.bin"
"Art\particles\monster_particles\League_Heist_34.bundle.bin"
"Art\particles\monster_particles\League_Heist_35.bundle.bin"
"Art\particles\monster_particles\League_Heist_36.bundle.bin"
"Art\particles\monster_particles\League_Heist_37.bundle.bin"
"Art\particles\monster_particles\League_Heist_38.bundle.bin"
"Art\particles\monster_particles\League_Heist_39.bundle.bin"
"Art\particles\monster_particles\League_Heist_4.bundle.bin"
"Art\particles\monster_particles\League_Heist_40.bundle.bin"
"Art\particles\monster_particles\League_Heist_41.bundle.bin"
"Art\particles\monster_particles\League_Heist_42.bundle.bin"
"Art\particles\monster_particles\League_Heist_43.bundle.bin"
"Art\particles\monster_particles\League_Heist_44.bundle.bin"
"Art\particles\monster_particles\League_Heist_45.bundle.bin"
"Art\particles\monster_particles\League_Heist_46.bundle.bin"
"Art\particles\monster_particles\League_Heist_47.bundle.bin"
"Art\particles\monster_particles\League_Heist_48.bundle.bin"
"Art\particles\monster_particles\League_Heist_49.bundle.bin"
"Art\particles\monster_particles\League_Heist_5.bundle.bin"
"Art\particles\monster_particles\League_Heist_50.bundle.bin"
"Art\particles\monster_particles\League_Heist_51.bundle.bin"
"Art\particles\monster_particles\League_Heist_52.bundle.bin"
"Art\particles\monster_particles\League_Heist_53.bundle.bin"
"Art\particles\monster_particles\League_Heist_54.bundle.bin"
"Art\particles\monster_particles\League_Heist_55.bundle.bin"
"Art\particles\monster_particles\League_Heist_56.bundle.bin"
"Art\particles\monster_particles\League_Heist_57.bundle.bin"
"Art\particles\monster_particles\League_Heist_58.bundle.bin"
"Art\particles\monster_particles\League_Heist_59.bundle.bin"
"Art\particles\monster_particles\League_Heist_6.bundle.bin"
"Art\particles\monster_particles\League_Heist_60.bundle.bin"
"Art\particles\monster_particles\League_Heist_61.bundle.bin"
"Art\particles\monster_particles\League_Heist_62.bundle.bin"
"Art\particles\monster_particles\League_Heist_7.bundle.bin"
"Art\particles\monster_particles\League_Heist_8.bundle.bin"
"Art\particles\monster_particles\League_Heist_9.bundle.bin"
"Art\particles\monster_particles\League_Hellscape.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_1.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_10.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_11.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_12.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_13.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_14.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_15.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_16.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_17.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_18.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_19.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_2.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_20.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_21.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_22.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_23.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_24.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_25.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_26.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_27.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_28.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_29.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_3.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_30.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_31.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_32.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_33.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_34.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_35.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_36.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_37.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_38.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_39.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_4.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_40.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_41.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_42.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_43.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_44.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_45.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_46.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_47.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_48.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_49.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_5.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_50.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_51.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_52.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_53.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_54.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_55.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_56.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_57.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_58.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_59.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_6.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_60.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_61.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_7.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_8.bundle.bin"
"Art\particles\monster_particles\League_Hellscape_9.bundle.bin"
"Art\particles\monster_particles\League_Incursion.bundle.bin"
"Art\particles\monster_particles\League_Incursion_1.bundle.bin"
"Art\particles\monster_particles\League_Incursion_10.bundle.bin"
"Art\particles\monster_particles\League_Incursion_11.bundle.bin"
"Art\particles\monster_particles\League_Incursion_12.bundle.bin"
"Art\particles\monster_particles\League_Incursion_13.bundle.bin"
"Art\particles\monster_particles\League_Incursion_14.bundle.bin"
"Art\particles\monster_particles\League_Incursion_15.bundle.bin"
"Art\particles\monster_particles\League_Incursion_16.bundle.bin"
"Art\particles\monster_particles\League_Incursion_17.bundle.bin"
"Art\particles\monster_particles\League_Incursion_18.bundle.bin"
"Art\particles\monster_particles\League_Incursion_19.bundle.bin"
"Art\particles\monster_particles\League_Incursion_2.bundle.bin"
"Art\particles\monster_particles\League_Incursion_20.bundle.bin"
"Art\particles\monster_particles\League_Incursion_21.bundle.bin"
"Art\particles\monster_particles\League_Incursion_22.bundle.bin"
"Art\particles\monster_particles\League_Incursion_23.bundle.bin"
"Art\particles\monster_particles\League_Incursion_24.bundle.bin"
"Art\particles\monster_particles\League_Incursion_25.bundle.bin"
"Art\particles\monster_particles\League_Incursion_26.bundle.bin"
"Art\particles\monster_particles\League_Incursion_27.bundle.bin"
"Art\particles\monster_particles\League_Incursion_28.bundle.bin"
"Art\particles\monster_particles\League_Incursion_3.bundle.bin"
"Art\particles\monster_particles\League_Incursion_30.bundle.bin"
"Art\particles\monster_particles\League_Incursion_4.bundle.bin"
"Art\particles\monster_particles\League_Incursion_5.bundle.bin"
"Art\particles\monster_particles\League_Incursion_6.bundle.bin"
"Art\particles\monster_particles\League_Incursion_7.bundle.bin"
"Art\particles\monster_particles\League_Incursion_8.bundle.bin"
"Art\particles\monster_particles\League_Incursion_9.bundle.bin"
"Art\particles\monster_particles\League_Legion.bundle.bin"
"Art\particles\monster_particles\League_Legion_1.bundle.bin"
"Art\particles\monster_particles\League_Legion_10.bundle.bin"
"Art\particles\monster_particles\League_Legion_11.bundle.bin"
"Art\particles\monster_particles\League_Legion_12.bundle.bin"
"Art\particles\monster_particles\League_Legion_13.bundle.bin"
"Art\particles\monster_particles\League_Legion_14.bundle.bin"
"Art\particles\monster_particles\League_Legion_15.bundle.bin"
"Art\particles\monster_particles\League_Legion_16.bundle.bin"
"Art\particles\monster_particles\League_Legion_17.bundle.bin"
"Art\particles\monster_particles\League_Legion_18.bundle.bin"
"Art\particles\monster_particles\League_Legion_19.bundle.bin"
"Art\particles\monster_particles\League_Legion_2.bundle.bin"
"Art\particles\monster_particles\League_Legion_20.bundle.bin"
"Art\particles\monster_particles\League_Legion_21.bundle.bin"
"Art\particles\monster_particles\League_Legion_22.bundle.bin"
"Art\particles\monster_particles\League_Legion_23.bundle.bin"
"Art\particles\monster_particles\League_Legion_24.bundle.bin"
"Art\particles\monster_particles\League_Legion_25.bundle.bin"
"Art\particles\monster_particles\League_Legion_26.bundle.bin"
"Art\particles\monster_particles\League_Legion_27.bundle.bin"
"Art\particles\monster_particles\League_Legion_28.bundle.bin"
"Art\particles\monster_particles\League_Legion_29.bundle.bin"
"Art\particles\monster_particles\League_Legion_3.bundle.bin"
"Art\particles\monster_particles\League_Legion_30.bundle.bin"
"Art\particles\monster_particles\League_Legion_31.bundle.bin"
"Art\particles\monster_particles\League_Legion_32.bundle.bin"
"Art\particles\monster_particles\League_Legion_33.bundle.bin"
"Art\particles\monster_particles\League_Legion_34.bundle.bin"
"Art\particles\monster_particles\League_Legion_35.bundle.bin"
"Art\particles\monster_particles\League_Legion_36.bundle.bin"
"Art\particles\monster_particles\League_Legion_37.bundle.bin"
"Art\particles\monster_particles\League_Legion_38.bundle.bin"
"Art\particles\monster_particles\League_Legion_39.bundle.bin"
"Art\particles\monster_particles\League_Legion_4.bundle.bin"
"Art\particles\monster_particles\League_Legion_40.bundle.bin"
"Art\particles\monster_particles\League_Legion_41.bundle.bin"
"Art\particles\monster_particles\League_Legion_42.bundle.bin"
"Art\particles\monster_particles\League_Legion_43.bundle.bin"
"Art\particles\monster_particles\League_Legion_45.bundle.bin"
"Art\particles\monster_particles\League_Legion_47.bundle.bin"
"Art\particles\monster_particles\League_Legion_48.bundle.bin"
"Art\particles\monster_particles\League_Legion_5.bundle.bin"
"Art\particles\monster_particles\League_Legion_50.bundle.bin"
"Art\particles\monster_particles\League_Legion_51.bundle.bin"
"Art\particles\monster_particles\League_Legion_54.bundle.bin"
"Art\particles\monster_particles\League_Legion_55.bundle.bin"
"Art\particles\monster_particles\League_Legion_56.bundle.bin"
"Art\particles\monster_particles\League_Legion_57.bundle.bin"
"Art\particles\monster_particles\League_Legion_58.bundle.bin"
"Art\particles\monster_particles\League_Legion_59.bundle.bin"
"Art\particles\monster_particles\League_Legion_6.bundle.bin"
"Art\particles\monster_particles\League_Legion_63.bundle.bin"
"Art\particles\monster_particles\League_Legion_66.bundle.bin"
"Art\particles\monster_particles\League_Legion_67.bundle.bin"
"Art\particles\monster_particles\League_Legion_7.bundle.bin"
"Art\particles\monster_particles\League_Legion_8.bundle.bin"
"Art\particles\monster_particles\League_Legion_9.bundle.bin"
"Art\particles\monster_particles\League_Ritual.bundle.bin"
"Art\particles\monster_particles\League_Ritual_1.bundle.bin"
"Art\particles\monster_particles\League_Ritual_10.bundle.bin"
"Art\particles\monster_particles\League_Ritual_11.bundle.bin"
"Art\particles\monster_particles\League_Ritual_12.bundle.bin"
"Art\particles\monster_particles\League_Ritual_13.bundle.bin"
"Art\particles\monster_particles\League_Ritual_14.bundle.bin"
"Art\particles\monster_particles\League_Ritual_15.bundle.bin"
"Art\particles\monster_particles\League_Ritual_16.bundle.bin"
"Art\particles\monster_particles\League_Ritual_17.bundle.bin"
"Art\particles\monster_particles\League_Ritual_18.bundle.bin"
"Art\particles\monster_particles\League_Ritual_19.bundle.bin"
"Art\particles\monster_particles\League_Ritual_2.bundle.bin"
"Art\particles\monster_particles\League_Ritual_20.bundle.bin"
"Art\particles\monster_particles\League_Ritual_21.bundle.bin"
"Art\particles\monster_particles\League_Ritual_22.bundle.bin"
"Art\particles\monster_particles\League_Ritual_23.bundle.bin"
"Art\particles\monster_particles\League_Ritual_24.bundle.bin"
"Art\particles\monster_particles\League_Ritual_25.bundle.bin"
"Art\particles\monster_particles\League_Ritual_26.bundle.bin"
"Art\particles\monster_particles\League_Ritual_27.bundle.bin"
"Art\particles\monster_particles\League_Ritual_28.bundle.bin"
"Art\particles\monster_particles\League_Ritual_29.bundle.bin"
"Art\particles\monster_particles\League_Ritual_3.bundle.bin"
"Art\particles\monster_particles\League_Ritual_30.bundle.bin"
"Art\particles\monster_particles\League_Ritual_31.bundle.bin"
"Art\particles\monster_particles\League_Ritual_32.bundle.bin"
"Art\particles\monster_particles\League_Ritual_33.bundle.bin"
"Art\particles\monster_particles\League_Ritual_34.bundle.bin"
"Art\particles\monster_particles\League_Ritual_35.bundle.bin"
"Art\particles\monster_particles\League_Ritual_36.bundle.bin"
"Art\particles\monster_particles\League_Ritual_37.bundle.bin"
"Art\particles\monster_particles\League_Ritual_38.bundle.bin"
"Art\particles\monster_particles\League_Ritual_39.bundle.bin"
"Art\particles\monster_particles\League_Ritual_4.bundle.bin"
"Art\particles\monster_particles\League_Ritual_40.bundle.bin"
"Art\particles\monster_particles\League_Ritual_41.bundle.bin"
"Art\particles\monster_particles\League_Ritual_42.bundle.bin"
"Art\particles\monster_particles\League_Ritual_43.bundle.bin"
"Art\particles\monster_particles\League_Ritual_44.bundle.bin"
"Art\particles\monster_particles\League_Ritual_45.bundle.bin"
"Art\particles\monster_particles\League_Ritual_46.bundle.bin"
"Art\particles\monster_particles\League_Ritual_47.bundle.bin"
"Art\particles\monster_particles\League_Ritual_48.bundle.bin"
"Art\particles\monster_particles\League_Ritual_49.bundle.bin"
"Art\particles\monster_particles\League_Ritual_5.bundle.bin"
"Art\particles\monster_particles\League_Ritual_50.bundle.bin"
"Art\particles\monster_particles\League_Ritual_51.bundle.bin"
"Art\particles\monster_particles\League_Ritual_52.bundle.bin"
"Art\particles\monster_particles\League_Ritual_53.bundle.bin"
"Art\particles\monster_particles\League_Ritual_54.bundle.bin"
"Art\particles\monster_particles\League_Ritual_55.bundle.bin"
"Art\particles\monster_particles\League_Ritual_56.bundle.bin"
"Art\particles\monster_particles\League_Ritual_57.bundle.bin"
"Art\particles\monster_particles\League_Ritual_58.bundle.bin"
"Art\particles\monster_particles\League_Ritual_59.bundle.bin"
"Art\particles\monster_particles\League_Ritual_6.bundle.bin"
"Art\particles\monster_particles\League_Ritual_60.bundle.bin"
"Art\particles\monster_particles\League_Ritual_61.bundle.bin"
"Art\particles\monster_particles\League_Ritual_63.bundle.bin"
"Art\particles\monster_particles\League_Ritual_7.bundle.bin"
"Art\particles\monster_particles\League_Ritual_8.bundle.bin"
"Art\particles\monster_particles\League_Ritual_9.bundle.bin"
"Art\particles\monster_particles\League_Synthesis.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_1.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_10.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_11.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_12.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_13.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_14.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_15.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_16.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_17.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_18.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_19.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_2.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_20.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_21.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_22.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_23.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_24.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_25.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_26.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_27.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_28.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_29.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_3.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_30.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_31.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_32.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_33.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_34.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_35.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_36.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_37.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_38.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_39.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_4.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_40.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_41.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_42.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_43.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_44.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_45.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_46.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_47.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_48.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_49.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_5.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_50.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_51.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_52.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_53.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_54.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_55.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_56.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_57.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_58.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_59.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_6.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_60.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_61.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_62.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_63.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_64.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_65.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_66.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_67.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_68.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_69.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_7.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_70.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_71.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_72.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_73.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_74.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_75.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_76.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_77.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_78.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_79.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_8.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_80.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_81.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_82.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_83.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_84.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_85.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_86.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_87.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_88.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_89.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_9.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_90.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_91.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_92.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_93.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_94.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_95.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_96.bundle.bin"
"Art\particles\monster_particles\League_Synthesis_97.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_1.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_10.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_11.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_12.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_13.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_14.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_15.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_16.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_17.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_18.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_19.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_2.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_20.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_21.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_22.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_23.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_24.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_25.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_26.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_27.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_28.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_29.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_3.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_30.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_31.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_32.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_33.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_34.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_35.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_36.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_37.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_38.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_39.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_4.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_40.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_41.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_42.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_43.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_44.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_45.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_46.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_47.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_48.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_49.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_5.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_50.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_51.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_52.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_6.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_7.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_8.bundle.bin"
"Art\particles\monster_particles\League_Ultimatum_9.bundle.bin"
"Art\particles\monster_particles\League_Wager.bundle.bin"
"Art\particles\monster_particles\League_Wager_1.bundle.bin"
"Art\particles\monster_particles\League_Wager_2.bundle.bin"
"Art\particles\monster_particles\League_Wager_3.bundle.bin"
"Art\particles\monster_particles\League_Wager_4.bundle.bin"
"Art\particles\monster_particles\League_Wager_5.bundle.bin"
"Art\particles\monster_particles\League_Wager_6.bundle.bin"
"Art\particles\monster_particles\League_Wager_7.bundle.bin"
"Art\particles\monster_particles\League_Wager_8.bundle.bin"
"Art\particles\monster_particles\lightning_elemental.bundle.bin"
"Art\particles\monster_particles\lightning_elemental_1.bundle.bin"
"Art\particles\monster_particles\lightning_elemental_2.bundle.bin"
"Art\particles\monster_particles\lightning_thorns.bundle.bin"
"Art\particles\monster_particles\MagicMossMonster.bundle.bin"
"Art\particles\monster_particles\Maligaro_Act7_p.bundle.bin"
"Art\particles\monster_particles\Maligaro_Act7_p_1.bundle.bin"
"Art\particles\monster_particles\Maligaro_Act7_p_2.bundle.bin"
"Art\particles\monster_particles\Maligaro_Act7_p_3.bundle.bin"
"Art\particles\monster_particles\map.bundle.bin"
"Art\particles\monster_particles\map_1.bundle.bin"
"Art\particles\monster_particles\mauler.bundle.bin"
"Art\particles\monster_particles\molten_ground_slam.bundle.bin"
"Art\particles\monster_particles\molten_projectile.bundle.bin"
"Art\particles\monster_particles\MonkeyChiefBossSideArea.bundle.bin"
"Art\particles\monster_particles\monster_mods.bundle.bin"
"Art\particles\monster_particles\monster_mods_1.bundle.bin"
"Art\particles\monster_particles\monster_mods_2.bundle.bin"
"Art\particles\monster_particles\monster_mods_3.bundle.bin"
"Art\particles\monster_particles\monster_mods_4.bundle.bin"
"Art\particles\monster_particles\monster_mods_5.bundle.bin"
"Art\particles\monster_particles\monster_spark_02.bundle.bin"
"Art\particles\monster_particles\monster_teleport.bundle.bin"
"Art\particles\monster_particles\mossboss_summon.bundle.bin"
"Art\particles\monster_particles\moss_monster.bundle.bin"
"Art\particles\monster_particles\moss_monster_ice.bundle.bin"
"Art\particles\monster_particles\motherofflames.bundle.bin"
"Art\particles\monster_particles\necroboss_raisedeadspell.bundle.bin"
"Art\particles\monster_particles\necroboss_raisedeadspell_1.bundle.bin"
"Art\particles\monster_particles\necroboss_surgespell.bundle.bin"
"Art\particles\monster_particles\necro_cast.bundle.bin"
"Art\particles\monster_particles\nemesis_mods.bundle.bin"
"Art\particles\monster_particles\nemesis_mods_1.bundle.bin"
"Art\particles\monster_particles\nemesis_mods_2.bundle.bin"
"Art\particles\monster_particles\nemesis_mods_3.bundle.bin"
"Art\particles\monster_particles\nemesis_mods_4.bundle.bin"
"Art\particles\monster_particles\nemesis_mods_5.bundle.bin"
"Art\particles\monster_particles\Ondar.bundle.bin"
"Art\particles\monster_particles\OriathBlackguard.bundle.bin"
"Art\particles\monster_particles\oriathcivilians_spectral.bundle.bin"
"Art\particles\monster_particles\oriathcivilians_spectral_1.bundle.bin"
"Art\particles\monster_particles\oriathcivilians_spectral_2.bundle.bin"
"Art\particles\monster_particles\Oriath_zombie.bundle.bin"
"Art\particles\monster_particles\Oriath_zombie_1.bundle.bin"
"Art\particles\monster_particles\Oriath_zombie_2.bundle.bin"
"Art\particles\monster_particles\Parasite.bundle.bin"
"Art\particles\monster_particles\Parasite_1.bundle.bin"
"Art\particles\monster_particles\parasite_ranged.bundle.bin"
"Art\particles\monster_particles\ParasiticSquid.bundle.bin"
"Art\particles\monster_particles\Perandus.bundle.bin"
"Art\particles\monster_particles\Perandus_1.bundle.bin"
"Art\particles\monster_particles\Phoenix.bundle.bin"
"Art\particles\monster_particles\Phoenix_1.bundle.bin"
"Art\particles\monster_particles\physicalstorm_call.bundle.bin"
"Art\particles\monster_particles\prophecy_league.bundle.bin"
"Art\particles\monster_particles\prophecy_league_1.bundle.bin"
"Art\particles\monster_particles\prophecy_league_2.bundle.bin"
"Art\particles\monster_particles\pulses.bundle.bin"
"Art\particles\monster_particles\rare_explode.bundle.bin"
"Art\particles\monster_particles\reflect_mortars.bundle.bin"
"Art\particles\monster_particles\reflect_mortars_1.bundle.bin"
"Art\particles\monster_particles\ReliquaryMonster.bundle.bin"
"Art\particles\monster_particles\revenant_chaos.bundle.bin"
"Art\particles\monster_particles\RockGolem.bundle.bin"
"Art\particles\monster_particles\RockGolem_1.bundle.bin"
"Art\particles\monster_particles\RockGolem_2.bundle.bin"
"Art\particles\monster_particles\rootspider.bundle.bin"
"Art\particles\monster_particles\RunicGolem.bundle.bin"
"Art\particles\monster_particles\sand_spitters.bundle.bin"
"Art\particles\monster_particles\sand_spitters_1.bundle.bin"
"Art\particles\monster_particles\sand_storm.bundle.bin"
"Art\particles\monster_particles\scav_bosses.bundle.bin"
"Art\particles\monster_particles\sca_mortarThrow.bundle.bin"
"Art\particles\monster_particles\sca_mortarThrow_1.bundle.bin"
"Art\particles\monster_particles\seawitch.bundle.bin"
"Art\particles\monster_particles\seawitchboss_aura.bundle.bin"
"Art\particles\monster_particles\seawitchillusion_aura.bundle.bin"
"Art\particles\monster_particles\seawitch_amarissa_aura.bundle.bin"
"Art\particles\monster_particles\seawitch_ambrosia_aura.bundle.bin"
"Art\particles\monster_particles\secretpolice_teleport_strike.bundle.bin"
"Art\particles\monster_particles\secretpolice_teleport_strike_1.bundle.bin"
"Art\particles\monster_particles\secretpolice_teleport_strike_3.bundle.bin"
"Art\particles\monster_particles\self_explosion.bundle.bin"
"Art\particles\monster_particles\self_explosion_1.bundle.bin"
"Art\particles\monster_particles\self_explosion_3.bundle.bin"
"Art\particles\monster_particles\siege_summon.bundle.bin"
"Art\particles\monster_particles\skeleton.bundle.bin"
"Art\particles\monster_particles\SkeletonBossCrossroads.bundle.bin"
"Art\particles\monster_particles\SkeletonOssuary.bundle.bin"
"Art\particles\monster_particles\skeletonship_raise.bundle.bin"
"Art\particles\monster_particles\skeleton_1.bundle.bin"
"Art\particles\monster_particles\skeleton_2.bundle.bin"
"Art\particles\monster_particles\skeleton_carpetbomb.bundle.bin"
"Art\particles\monster_particles\skele_hands.bundle.bin"
"Art\particles\monster_particles\skele_hands_1.bundle.bin"
"Art\particles\monster_particles\SkullMinion.bundle.bin"
"Art\particles\monster_particles\SkullMinion_1.bundle.bin"
"Art\particles\monster_particles\SlaveCatcher.bundle.bin"
"Art\particles\monster_particles\snake_monster.bundle.bin"
"Art\particles\monster_particles\snake_monster_1.bundle.bin"
"Art\particles\monster_particles\snake_monster_2.bundle.bin"
"Art\particles\monster_particles\snake_spit.bundle.bin"
"Art\particles\monster_particles\Solaris_and_Lunaris.bundle.bin"
"Art\particles\monster_particles\Solaris_and_Lunaris_1.bundle.bin"
"Art\particles\monster_particles\Solaris_and_Lunaris_2.bundle.bin"
"Art\particles\monster_particles\Solaris_and_Lunaris_4.bundle.bin"
"Art\particles\monster_particles\SpiderPlated.bundle.bin"
"Art\particles\monster_particles\SpiderPlated_1.bundle.bin"
"Art\particles\monster_particles\storm_call.bundle.bin"
"Art\particles\monster_particles\strongbox_explode.bundle.bin"
"Art\particles\monster_particles\strongbox_explode_1.bundle.bin"
"Art\particles\monster_particles\SummonedWolf.bundle.bin"
"Art\particles\monster_particles\SummonedWolf_1.bundle.bin"
"Art\particles\monster_particles\summon_storms.bundle.bin"
"Art\particles\monster_particles\talisman.bundle.bin"
"Art\particles\monster_particles\talisman_1.bundle.bin"
"Art\particles\monster_particles\talisman_2.bundle.bin"
"Art\particles\monster_particles\talisman_3.bundle.bin"
"Art\particles\monster_particles\talisman_4.bundle.bin"
"Art\particles\monster_particles\talisman_5.bundle.bin"
"Art\particles\monster_particles\talisman_6.bundle.bin"
"Art\particles\monster_particles\talisman_7.bundle.bin"
"Art\particles\monster_particles\talisman_8.bundle.bin"
"Art\particles\monster_particles\talisman_9.bundle.bin"
"Art\particles\monster_particles\Taster.bundle.bin"
"Art\particles\monster_particles\TemplarTorturerSawblade.bundle.bin"
"Art\particles\monster_particles\ThronSpider1.bundle.bin"
"Art\particles\monster_particles\ThronSpider1_1.bundle.bin"
"Art\particles\monster_particles\TormentedSpirits.bundle.bin"
"Art\particles\monster_particles\totems.bundle.bin"
"Art\particles\monster_particles\totems_1.bundle.bin"
"Art\particles\monster_particles\totems_2.bundle.bin"
"Art\particles\monster_particles\totems_3.bundle.bin"
"Art\particles\monster_particles\totems_4.bundle.bin"
"Art\particles\monster_particles\totems_5.bundle.bin"
"Art\particles\monster_particles\totems_6.bundle.bin"
"Art\particles\monster_particles\totems_7.bundle.bin"
"Art\particles\monster_particles\totems_8.bundle.bin"
"Art\particles\monster_particles\Tukohama.bundle.bin"
"Art\particles\monster_particles\Tukohama_1.bundle.bin"
"Art\particles\monster_particles\undying.bundle.bin"
"Art\particles\monster_particles\undying_spin.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_1.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_2.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_3.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_4.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_5.bundle.bin"
"Art\particles\monster_particles\vaalspiderboss_p_6.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice_1.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice_2.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice_3.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice_4.bundle.bin"
"Art\particles\monster_particles\vaal_sacrifice_5.bundle.bin"
"Art\particles\monster_particles\vendigo.bundle.bin"
"Art\particles\monster_particles\Viking_Vinktars_Square.bundle.bin"
"Art\particles\monster_particles\Viking_Vinktars_Square_1.bundle.bin"
"Art\particles\monster_particles\Viking_Vinktars_Square_2.bundle.bin"
"Art\particles\monster_particles\water_elemental.bundle.bin"
"Art\particles\monster_particles\water_elemental_1.bundle.bin"
"Art\particles\monster_particles\zombie_bosses.bundle.bin"
"Art\particles\monster_particles\zombie_grasp.bundle.bin"
"Art\particles\smite\monster_hit.bundle.bin"
"Art\Textures\Monsters\incashadowmonster.bundle.bin"
"Art\Textures\Monsters\incashadowmonster_1.bundle.bin"
"Art\Textures\Monsters\incashadowmonster_2.bundle.bin"
"Art\Textures\Monsters\incashadowmonster_3.bundle.bin"
"Art\Textures\Monsters\incashadowmonster_4.bundle.bin"
"Art\Textures\Monsters\incashadowmonster_5.bundle.bin"
"Art\Textures\Monsters\snakemonster.bundle.bin"
"Art\Textures\Monsters\snakemonster_1.bundle.bin"
"Art\Textures\Monsters\snakemonster_2.bundle.bin"
"Art\Textures\Monsters\snakemonster_3.bundle.bin"
"Art\Textures\Monsters\snakemonster_4.bundle.bin"
"Art\Textures\Monsters\Urchinmonster.bundle.bin"
"Art\Textures\Monsters\Urchinmonster_1.bundle.bin"
"Art\Textures\Monsters\watermonster.bundle.bin"
"Art\Textures\Monsters\watermonster_1.bundle.bin"
"Art\Textures\Monsters\watermonster_2.bundle.bin"
"Art\Textures\Monsters\watermonster_3.bundle.bin"
"Art\Textures\Monsters\watermonster_4.bundle.bin"
"Art\Textures\Monsters\watermonster\blood.bundle.bin"
"Art\Textures\Monsters\watermonster\bloodlines_congealing.bundle.bin"
"Art\Textures\Monsters\watermonster\boilinglakes.bundle.bin"
"Art\Textures\Monsters\watermonster\lightning.bundle.bin"
"Art\Textures\Monsters\watermonster\molten.bundle.bin"
"Art\Textures\Monsters\watermonster\riptide.bundle.bin"
"Art\Textures\Monsters\watermonster\riptide_1.bundle.bin"
) do call :accel %%i, %BUNDLES2%
goto:eof
:accel
if not exist "%~2\%~1" (
echo Accelerate %~1
xcopy "%~1" "%~2\%~1*"
del "%~1"
mklink "%~1" "%~2\%~1"
) else (
echo Skip because file is accelerated: %~1
)
goto:eof
:deaccel
if exist "%~2\%~1" (
echo Deaccelerate %~1
del "%~1"
move "%~2\%~1" "%~1"
) else (
echo Skip because file is not accelerated: %~1
)
goto:eof
@bostelk
Copy link
Author

bostelk commented Mar 20, 2022

This is a small script to relocate monster bundles to a faster drive (like, ssd) than the drive PoE has been installed to. I do not quite have enough space for the full install (27GB) so I decided to create this quick hack so I will stop dying when a lot of monsters spawn. The script will copy 2.19GB over to the other location.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment